-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
35 lines (35 loc) · 939 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
34
35
{
"name": "express-autoroute",
"version": "2.1.1",
"description": "Express Auto Route automatically load routes from a structured routes/ folder",
"main": "index.js",
"readmeFilename": "README.md",
"scripts": {
"lint:js": "eslint .",
"test": "node_modules/mocha/bin/mocha",
"test-watch": "npm run test -- --watch",
"test-watch-mac": "node_modules/mocha/bin/mocha --watch --reporter mocha-osx-reporter"
},
"repository": {
"type": "git",
"url": "[email protected]:stonecircle/express-autoroute.git"
},
"keywords": [
"express",
"routing",
"automation"
],
"author": "Chris Manson <[email protected]>",
"license": "MIT",
"dependencies": {
"winston": "^2.1.1"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"express": "^4.16.4",
"mocha": "^5.2.0",
"supertest": "^3.3.0"
}
}