-
Notifications
You must be signed in to change notification settings - Fork 207
/
package.json
78 lines (78 loc) · 1.95 KB
/
package.json
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
78
{
"name": "serverless-step-functions",
"version": "3.11.1",
"description": "The module is AWS Step Functions plugin for Serverless Framework",
"main": "lib/index.js",
"scripts": {
"test": "mocha \"!(node_modules)/**/*.test.js\"",
"coverage": "nyc npm test",
"lint": "eslint .",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/horike37/serverless-step-functions.git"
},
"keywords": [
"serverless"
],
"author": "horike37",
"license": "MIT",
"bugs": {
"url": "https://github.com/horike37/serverless-step-functions/issues"
},
"homepage": "https://github.com/horike37/serverless-step-functions#readme",
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^15.0.0",
"chai": "^3.5.0",
"coveralls": "^3.0.2",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"husky": "^1.3.1",
"lint-staged": "^13.2.1",
"mocha": "^9.1.3",
"mocha-lcov-reporter": "^1.2.0",
"mocha-param": "^2.0.0",
"nyc": "^15.0.0",
"semantic-release": "^21.0.1",
"serverless": "^2.69.1",
"sinon": "^12.0.1"
},
"dependencies": {
"joi": "^17.7.0",
"@serverless/utils": "^6.7.0",
"asl-validator": "^3.8.0",
"bluebird": "^3.4.0",
"chalk": "^4.1.2",
"lodash": "^4.17.11"
},
"peerDependencies": {
"serverless": ">=2.32.0"
},
"overrides": {
"file-type": "17.1.3",
"ansi-regex": "5.0.1",
"simple-git": "3.5.0",
"ramda": "0.27.2",
"got": "11.8.5",
"serverless": {
"@serverless/utils": "$@serverless/utils"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}