-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
77 lines (77 loc) · 1.73 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
{
"name": "claudia-local-api",
"description": "Command line utility to launch Express local API for claudia-api-builder. Test drive your lambda functions before deployment",
"version": "3.0.5",
"homepage": "https://github.com/suddi/claudia-local-api",
"author": {
"name": "Sudharshan Ravindran",
"email": "mail@suddi.io",
"url": "https://suddi.io"
},
"repository": {
"type": "git",
"url": "https://github.com/suddi/claudia-local-api"
},
"bugs": {
"url": "https://github.com/suddi/claudia-local-api/issues"
},
"files": [
"bin",
"lib"
],
"main": "lib/index.js",
"license": "MIT",
"keywords": [
"claudia",
"lambda",
"claudia-api-builder",
"claudia-local",
"claudia-dev",
"lambda-local",
"lambda-dev",
"local-server",
"dev-server",
"local-api",
"dev-api"
],
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
},
"bin": {
"claudia-local-api": "bin/claudia-local-api"
},
"scripts": {
"coverage": "nyc mocha",
"lint": "eslint .",
"security-check": "npm audit --audit-level high || true",
"test": "npm run lint && npm run security-check && npm run coverage"
},
"dependencies": {
"body-parser": "^1.19.0",
"bunyan": "^1.8.13",
"commander": "^5.1.0",
"express": "^4.17.1",
"path-parser": "^6.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"claudia-api-builder": "^4.1.2",
"eslint": "^6.8.0",
"eslint-config-suddi": "^5.0.2",
"husky": "^4.2.3",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"request": "^2.88.2",
"rewire": "^5.0.0",
"sinon": "^9.0.1"
},
"eslintConfig": {
"extends": "suddi/backend"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}