-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.08 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
{
"name": "jscoverage-reporter",
"version": "0.1.0",
"description": "JSCoverage reporter for Jasmine",
"homepage": "https://github.com/NeoPhi/jscoverage-reporter",
"keywords": ["testing", "jasmine", "jscoverage"],
"licenses": [{
"type": "MIT",
"url": "http://github.com/NeoPhi/jscoverage-reporter/raw/master/LICENSE"
}],
"author": {
"name": "Daniel Rinehart",
"email": "[email protected]",
"url": "http://danielr.neophi.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/NeoPhi/jscoverage-reporter.git"
},
"bugs": {
"url": "https://github.com/NeoPhi/jscoverage-reporter/issues"
},
"main": "src/jasmine.jscoverage_reporter.js",
"devDependencies": {
"jshint": "0.5.8",
"jasmine-node": "1.0.21",
"wrench": "1.3.5"
},
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"pretest": "jshint src tools --config config/jshint.config.json && jshint test --config config/spec.jshint.config.json",
"test": "node tools/coverage --junitreport build/test",
"report": "node tools/report.js reports/"
}
}