-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 895 Bytes
/
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
{
"name": "auto-route-loader",
"version": "1.2.0",
"description": "Automatically traverse an Express project and load routes.",
"main": "index.js",
"scripts": {
"lint": "eslint --debug index.js test/index.spec.js",
"test": "./node_modules/.bin/mocha --reporter spec"
},
"keywords": [
"express",
"route"
],
"author": "Matt DeLuco <[email protected]>",
"license": "ISC",
"repository": "github:mattdeluco/auto-route-loader",
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"express-list-endpoints": "^4.0.1",
"lodash": "^4.17.15",
"mocha": "^6.2.2",
"mock-fs": "^4.10.4",
"mock-require": "^3.0.3",
"prettier": "^1.19.1"
},
"dependencies": {
"express": "^4.17.1"
}
}