-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "thataway",
"version": "4.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run test-build && npm start && npm run open",
"open": "open http://localhost:6661",
"test-build": "browserify ./test.js -o ./public/test.bundle.js",
"watch-test": "watchify ./test.js -o ./public/test.bundle.js",
"start": "node server.js",
"umd": "browserify ./index.js --standalone thataway | uglifyjs --compress --mangle > thataway.umd.js"
},
"keywords": [
"router",
"browser",
"universal",
"minimal"
],
"author": "@dam",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kristoferjoseph/thataway/issues"
},
"homepage": "https://github.com/kristoferjoseph/thataway#readme",
"dependencies": {
"in-window": "^2.0.0",
"query-string": "^4.2.2",
"router-params": "^2.0.2"
},
"devDependencies": {
"browserify": "^13.1.0",
"ejs": "^2.5.1",
"express": "^4.14.0",
"tape": "^4.6.0",
"uglifyify": "^4.0.5",
"watchify": "^3.7.0"
}
}