-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
51 lines (51 loc) · 1.09 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
{
"name": "covershot",
"description": "Multi-format, test framework agnostic, code coverage report generator.",
"author": "Jeff Kunkle <[email protected]>",
"keywords": [
"test",
"coverage",
"reporter"
],
"version": "0.2.0",
"engines": {
"node": ">=0.6.0"
},
"main": "./lib/covershot.js",
"maintainers": [
{
"name": "Jeff Kunkle",
"email": "[email protected]"
},
{
"name": "Sean Pilkenton",
"email": "[email protected]"
},
{
"name": "Joe Ferner",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/nearinfinity/node-covershot/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nearinfinity/node-covershot.git"
},
"dependencies": {
"ejs": "~0.6.1",
"optimist": "~0.3.1",
"async": "0.1.18",
"mkdirp": "~0.3.2",
"data2xml": "~0.4.0"
},
"devDependencies": {
"mocha": "~1.0.3",
"chai": "~0.5.3"
},
"scripts": {
"test": "mocha --globals '_$jscoverage'"
}
}