-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.29 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
{
"name": "lazy-router",
"version": "1.0.1",
"description": "a lazy-loading router for client applications",
"main": "router.js",
"scripts": {
"dep": "dependency-check . && dependency-check . --no-dev --unused",
"test": "standard && npm run dep && node test/harness.js test",
"gen-cover": "node test/harness.js cover",
"cover": "standard && npm run dep && npm run gen-cover && istanbul report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scriptoLLC/lazy-router.git"
},
"keywords": [
"router",
"history",
"client",
"client-router",
"react",
"react-router"
],
"author": "Todd Kennedy <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scriptoLLC/lazy-router/issues"
},
"homepage": "https://github.com/scriptoLLC/lazy-router#readme",
"dependencies": {
"global": "^4.3.1",
"load-script": "^1.0.0",
"pathname-match": "^1.2.0",
"wayfarer": "^6.3.0"
},
"devDependencies": {
"browserify": "^14.4.0",
"browserify-istanbul": "^2.0.0",
"dependency-check": "^2.7.0",
"istanbul": "^0.4.5",
"standard": "^10.0.2",
"tape": "^4.6.3",
"tape-istanbul": "^1.0.4",
"tape-run": "^3.0.0",
"uglifyify": "^4.0.1",
"uglifyjs": "^2.4.10"
}
}