-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "nighthawk",
"version": "2.2.0",
"description": "A client-side wrapper for the Express router",
"main": "index.js",
"keywords": [
"router",
"express",
"browser"
],
"directories": {
"example": "example"
},
"scripts": {
"build": "./scripts/build.sh",
"size": "./scripts/size.sh",
"check": "npm-check",
"test": "happiness && mochify --grep 'BROWSER: ' --invert",
"test-cover": "mochify --cover",
"test-browser": "happiness && mochify --wd",
"example-basic": "cd example/basic && npm install && npm run browserify && npm run start",
"example-basedir": "cd example/base-dir && npm install && npm run browserify && npm run start",
"example-redirect": "cd example/redirect && npm install && npm run browserify && npm run start",
"prepublish": "npm run build && npm t",
"postpublish": "git push && git push --tags"
},
"author": "Wes Todd",
"license": "ISC",
"dependencies": {
"inherits": "^2.0.3",
"intercept-link-clicks": "^1.0.2",
"router": "^1.1.4"
},
"repository": {
"type": "git",
"url": "git://github.com/wesleytodd/nighthawk.git"
},
"devDependencies": {
"browserify": "^14.4.0",
"disc": "^1.3.2",
"envify": "^4.0.0",
"happiness": "^10.0.2",
"mochify": "^3.1.1",
"npm-check": "^5.4.4",
"qs": "^6.4.0",
"uglify-js": "^3.0.17",
"uglifyify": "^4.0.1"
}
}