-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.18 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": "cerebral-module-recorder",
"version": "0.6.1",
"description": "A state recorder for Cerebral",
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "nodeunit tests",
"coverage": "nyc --reporter=lcov --reporter=text npm test",
"postcoverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/cerebral-legacy/cerebral-module-recorder.git"
},
"keywords": [
"cerebral",
"record",
"state"
],
"author": "Christian Alfoni <christianalfoni@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cerebral-legacy/cerebral-module-recorder/issues"
},
"homepage": "https://github.com/cerebral-legacy/cerebral-module-recorder#readme",
"devDependencies": {
"cerebral": "^0.35.0-0",
"commitizen": "^2.5.0",
"coveralls": "^2.11.11",
"cz-customizable": "^2.7.0",
"nodeunit": "^0.9.1",
"nyc": "^7.0.0",
"standard": "^7.1.2"
},
"peerDependencies": {
"cerebral": "^0.35.0-0 || ^1.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"nyc": {
"exclude": [
"tests/*"
]
}
}