-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "hash-brown-router",
"version": "3.4.1",
"description": "A client-side router that only cares about the bits after the #",
"main": "index.js",
"scripts": {
"test": "npm run localtest && npm run browser",
"localtest": "node test/automated-test.js",
"watch": "watchify test/browser-test.js -o browser-test.js -d",
"browser": "browserify test/browser-test.js | tape-run"
},
"repository": {
"type": "git",
"url": "https://github.com/TehShrike/hash-brown-router.git"
},
"keywords": [
"route",
"routing",
"router",
"browserify",
"browser"
],
"author": "TehShrike",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/TehShrike/hash-brown-router/issues"
},
"homepage": "https://github.com/TehShrike/hash-brown-router",
"devDependencies": {
"browserify": "^16.2.3",
"tap-browser-color": "^0.1.2",
"tape": "~4.1.0",
"tape-catch": "1.0.4",
"tape-run": "^5.0.0"
},
"dependencies": {
"eventemitter3": "2.0.3",
"path-to-regexp-with-reversible-keys": "~1.0.3",
"query-string": "4.3.4",
"xtend": "~4.0.0"
}
}