forked from serverless-operations/serverless-step-functions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.68 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
{
"name": "serverless-step-functions",
"version": "2.17.0",
"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": "^8.3.5",
"@commitlint/config-conventional": "^7.5.0",
"chai": "^3.5.0",
"coveralls": "^3.0.2",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.2.0",
"mocha-param": "^2.0.0",
"nyc": "^15.0.0",
"semantic-release": "^15.14.0",
"sinon": "^1.17.5"
},
"dependencies": {
"@hapi/joi": "^15.0.2",
"asl-validator": "^1.5.0",
"aws-sdk": "^2.282.1",
"bluebird": "^3.4.0",
"chalk": "^1.1.1",
"lodash": "^4.17.11",
"serverless": "^1.64.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint"
]
}
}