-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.42 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
56
57
58
59
{
"name": "cerebral-module-router",
"version": "0.17.1",
"description": "An opinionated URL change handler for Cerebral",
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "nodeunit tests",
"coverage": "nyc --reporter=lcov --reporter=text npm run test",
"postcoverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/cerebral-legacy/cerebral-module-router.git"
},
"keywords": [
"router",
"cerebral",
"mvc"
],
"author": "Christian Alfoni <[email protected]>",
"contributors": [
"Aleksey Guryanov <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cerebral-legacy/cerebral-module-router/issues"
},
"homepage": "https://github.com/cerebral-legacy/cerebral-module-router#readme",
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "node_modules/cz-customizable/cz-config-EXAMPLE.js"
}
},
"dependencies": {
"addressbar": "^1.0.2",
"url-mapper": "^1.1.1"
},
"devDependencies": {
"cerebral": "^1.0.0",
"commitizen": "^2.7.6",
"coveralls": "^2.11.9",
"cz-customizable": "^3.1.0",
"nodeunit": "^0.9.1",
"nyc": "^6.4.0",
"standard": "^7.1.2"
},
"peerDependencies": {
"cerebral": "^1.0.0"
},
"nyc": {
"exclude": [
"tests/*"
]
}
}