forked from serverless-operations/serverless-step-functions
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "serverless-step-functions",
"version": "1.2.0",
"description": "The module is AWS Step Functions plugin for Serverless Framework",
"main": "lib/index.js",
"scripts": {
"test": "istanbul cover -x '**/*.test.js' node_modules/mocha/bin/_mocha '!(node_modules)/**/*.test.js' -- -R spec --recursive",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+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": {
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.1",
"serverless": "^1.4.0",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.2.0",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"sinon": "^1.17.5"
},
"dependencies": {
"lodash": "^4.13.1",
"aws-sdk": "^2.7.19",
"bluebird": "^3.4.0",
"chalk": "^1.1.1"
}
}