forked from pillarjs/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "router",
"description": "Simple middleware-style router",
"version": "1.1.3",
"author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
"license": "MIT",
"repository": "pillarjs/router",
"dependencies": {
"array-flatten": "1.1.1",
"debug": "~2.2.0",
"methods": "~1.1.1",
"parseurl": "~1.3.0",
"path-to-regexp": "0.1.7",
"setprototypeof": "1.0.0",
"utils-merge": "1.0.0"
},
"devDependencies": {
"after": "0.8.1",
"finalhandler": "0.4.0",
"istanbul": "0.3.17",
"mocha": "2.2.5",
"supertest": "1.0.1"
},
"files": [
"lib/",
"LICENSE",
"HISTORY.md",
"README.md",
"index.js"
],
"engines": {
"node": ">= 0.8"
},
"scripts": {
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
}
}