forked from mansona/express-autoroute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 840 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
{
"name": "express-autoroute",
"version": "1.2.4",
"description": "Express Auto Route automatically load routes from a structured routes/ folder",
"main": "index.js",
"readmeFilename": "README.md",
"scripts": {
"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": {
"express": "^4.11.2",
"mocha": "^2.1.0",
"mocha-osx-reporter": "~0.1.2",
"supertest": "^1.1.0"
}
}