-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.2 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
{
"name": "stepfunctions",
"description": "AWS Step Functions implementation in Node, so you can run your Node.js lambda handlers in your test environments. Made to support Serverless JS testing.",
"version": "0.1.0",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/jamoy/stepfunctions.git"
},
"files": [
"lib",
"LICENSE",
"index.js",
"package.json"
],
"scripts": {
"test": "jest",
"lint": "eslint --fix"
},
"dependencies": {
"asl-validator": "^1.7.0",
"jsonpath": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.8",
"babel-eslint": "^10.1.0",
"codecov": "^3.7.2",
"eslint": "^7.4.0",
"husky": "^4.2.5",
"jest-cli": "^26.1.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"peerDependencies": {
"serverless": "^1.74.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && pretty-quick --staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"keywords": [
"aws",
"step-functions",
"serverless",
"asl",
"test"
]
}