-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.03 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
{
"name": "express-route-audit",
"version": "2.0.0",
"description": "Audit declared Express routes with usage data",
"main": "index.js",
"scripts": {
"test": "nyc ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fluxsauce/express-route-audit.git"
},
"keywords": [
"express",
"route",
"routes",
"routing",
"audit",
"report"
],
"author": "Jon Peck <[email protected]>",
"contributors": [],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/fluxsauce/express-route-audit/issues"
},
"homepage": "https://github.com/fluxsauce/express-route-audit#readme",
"engines": {
"node": ">=6"
},
"dependencies": {
"express-list-endpoints": "^4.0.0"
},
"devDependencies": {
"ava": "^1.3.1",
"body-parser": "^1.18.3",
"eslint": "^5.15.3",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"express": "^4.16.4",
"nyc": "^13.3.0"
},
"peerDependencies": {
"express": "4.x"
}
}