-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
55 lines (55 loc) · 1.55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "http-hash",
"version": "2.0.1",
"description": "HTTP router based on a strict path tree structure",
"keywords": [
"router",
"http",
"path",
"hash"
],
"author": "Matt Esch <[email protected]>",
"repository": "git://github.com/Matt-Esch/http-hash.git",
"main": "index",
"homepage": "https://github.com/Matt-Esch/http-hash",
"bugs": {
"url": "https://github.com/Matt-Esch/http-hash/issues",
"email": "[email protected]"
},
"contributors": [
{
"name": "Matt Esch"
}
],
"dependencies": {},
"devDependencies": {
"coveralls": "^2.10.0",
"istanbul": "^0.2.7",
"jshint": "^2.5.0",
"opn": "^1.0.0",
"pre-commit": "0.0.5",
"run-browser": "^1.3.0",
"tap-spec": "^0.1.8",
"tape": "^2.12.3"
},
"license": "MIT",
"scripts": {
"test": "npm run jshint -s && NODE_ENV=test node test/index.js | tap-spec",
"unit-test": "NODE_ENV=test node test/index.js | tap-spec",
"jshint-pre-commit": "jshint --verbose $(git diff --cached --name-only | grep '\\.js$')",
"jshint": "jshint --verbose .",
"cover": "istanbul cover --report html --print detail test/index.js",
"view-cover": "istanbul report html && opn ./coverage/index.html",
"travis": "npm run cover -s && istanbul report lcov && ((cat coverage/lcov.info | coveralls) || exit 0)",
"phantom": "run-browser test/index.js -b",
"browser": "run-browser test/index.js"
},
"engine": {
"node": ">= 0.8.x"
},
"pre-commit": [
"jshint-pre-commit",
"unit-test"
],
"ngen-version": "4.0.3"
}