-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.94 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "lambda-std",
"description": "Lambda Simple Toolkit based on Decorators",
"version": "1.0.2",
"private": false,
"license": "MIT",
"author": "Denis Zatsepin <denis@zatsepin.me>",
"files": [
"dist"
],
"scripts": {
"build": "tsc -d",
"test": "jest",
"lint": "eslint --cache --fix",
"prepublish": "npm run lint && npm run build"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/gameobsessed/lambda-std.git"
},
"keywords": [
"aws",
"lambda",
"decorators",
"typescript",
"framework",
"std",
"aws-sdk-v3"
],
"dependencies": {
"class-transformer": "0.5.1",
"ix": "4.5.2",
"source-map-support": "0.5.21",
"uuid": "8.3.2"
},
"devDependencies": {
"@commitlint/cli": "16.1.0",
"@commitlint/config-conventional": "16.0.0",
"@commitlint/top-level": "16.0.0",
"@types/aws-lambda": "8.10.92",
"@types/jest": "27.4.0",
"@types/node": "16.11.21",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"eslint": "8.8.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "26.1.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-standard": "5.0.0",
"husky": "7.0.4",
"jest": "27.5.1",
"joi": "17.6.0",
"lint-staged": "12.3.2",
"prettier": "2.5.1",
"reflect-metadata": "0.1.13",
"ts-jest": "27.1.3",
"ts-node": "10.4.0",
"typescript": "4.5.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,md,html,json}": "yarn prettier --write",
"src/**/*.{ts}": "yarn eslint --cache --fix"
}
}