-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.71 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
79
80
81
{
"name": "sam-local-express",
"version": "0.1.3",
"description": "SAM Template to local Express server",
"main": "lib/index.js",
"bin": {
"sam-local-express": "lib/index.js"
},
"directories": {
"lib": "lib"
},
"files": [
"lib/**"
],
"scripts": {
"lint": "standard \"**/*.js\"",
"pack": "npm pack",
"start": "node ./lib/index.js --template template.yaml --singleport --baseport 4000",
"start-multiple": "node ./lib/index.js --template template.yaml --baseport 4000",
"start-single-noauth": "node ./lib/index.js --template template.yaml --singleport --baseport 4000 --noauth",
"test": "jest --verbose"
},
"author": {
"name": "Nick Heap",
"email": "[email protected]",
"url": "https://github.com/NickHeap2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NickHeap2/sam-local-express.git"
},
"keywords": [
"api",
"api testing",
"aws",
"aws sam",
"express",
"local",
"sam",
"testing"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"standard": "^16.0.4"
},
"dependencies": {
"body-parser": "^1.19.1",
"colors": "^1.4.0",
"commander": "^8.3.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"lambda-local": "^2.0.0",
"nodemon": "^2.0.15",
"yaml-cfn": "^0.3.1"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"lib/*.js",
"!tests/**"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
},
"standard": {
"env": [
"jest"
],
"ignore": [
"dist/**/*"
]
}
}