-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
39 lines (39 loc) · 941 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
39
{
"name": "routington",
"description": "Trie-based URL Routing",
"version": "1.0.3",
"dependencies": {
"flatten": "~0.0.1",
"http-assert": "1"
},
"devDependencies": {
"mocha": "1",
"should": "4",
"matcha": "0",
"istanbul": "0"
},
"scripts": {
"bench": "matcha benchmark",
"test": "mocha --reporter spec --require should",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --require should",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot --require should"
},
"author": {
"name": "Jonathan Ong",
"email": "[email protected]",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"repository": "pillarjs/routington",
"license": "MIT",
"main": "lib",
"files": [
"lib"
],
"keywords": [
"router",
"routes",
"routing",
"trie"
]
}