forked from delvedor/find-my-way
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 981 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": "find-my-way",
"version": "1.12.0",
"description": "Crazy fast http radix based router",
"main": "index.js",
"scripts": {
"bench": "node bench.js",
"test": "standard && tap -j4 test/*.test.js",
"coveralls": "tap -j4 test/*.test.js --cov --coverage-report=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/delvedor/find-my-way.git"
},
"keywords": [
"http",
"router",
"radix",
"fast",
"speed"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/delvedor/find-my-way/issues"
},
"homepage": "https://github.com/delvedor/find-my-way#readme",
"devDependencies": {
"benchmark": "^2.1.4",
"coveralls": "^3.0.0",
"pre-commit": "^1.2.2",
"request": "^2.83.0",
"standard": "^10.0.3",
"tap": "^11.0.0"
},
"dependencies": {
"fast-decode-uri-component": "^1.0.0"
}
}