-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
67 lines (67 loc) · 1.63 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
{
"name": "stepfunctions-local",
"version": "1.3.1",
"description": "A local AWS Step Functions server",
"main": "./src/server.js",
"bin": {
"stepfunctions-local": "./bin/stepfunctions-local.js"
},
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js src --max-warnings 0",
"test": "./node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/airware/stepfunctions-local.git"
},
"keywords": [
"aws",
"local development",
"ci",
"continuous integration",
"step functions",
"state machine",
"serverless"
],
"author": "Christophe Bougère",
"contributors": [
{
"name": "Tristan Bénier"
},
{
"name": "Hervé Nivon"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/airware/stepfunctions-local/issues"
},
"homepage": "https://github.com/airware/stepfunctions-local#readme",
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.test\\.jsx?$"
},
"dependencies": {
"asl-validator": "^1.3.0",
"aws-sdk": "^2.488.0",
"body-parser": "^1.19.0",
"commander": "^2.20.0",
"debug": "^3.2.6",
"express": "^4.17.1",
"jsonpath": "^1.0.2",
"lodash": "^4.17.11",
"redux": "^4.0.1",
"shelljs": "^0.8.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"aws-sdk-mock": "^4.5.0",
"codecov": "^3.5.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^21.27.2",
"jest": "^23.6.0",
"jest-junit": "^5.2.0",
"request-promise-native": "^1.0.7"
}
}