-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 911 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
36
37
38
{
"name": "route-label",
"version": "1.2.3",
"description": "Named router and URL generator, compatible with Express 4 modular routing",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 10000 $(find tests -name *.spec.js)"
},
"bugs": {
"url": "https://github.com/cermati/route-label"
},
"homepage": "https://github.com/cermati/route-label",
"repository": "cermati/route-label",
"keywords": [
"named",
"router",
"named router",
"named routes",
"url generator",
"express 4 router",
"express router",
"router module",
"module"
],
"author": "William Gozali <[email protected]>",
"license": "MIT",
"dependencies": {
"path-to-regexp": "~1.5.3"
},
"devDependencies": {
"chai": "~3.5.0",
"express": "~4.14.0",
"mocha": "~2.5.3",
"rewire": "~2.5.1",
"sinon": "~1.17.4",
"sinon-chai": "~2.8.0"
}
}