-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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
{
"author": "Fabio Crisci <[email protected]>",
"contributors": [
{
"name": "David-Emmanuel Divernois",
"email": "[email protected]"
},
{
"name": "Francesco Longo",
"email": "[email protected]"
},
{
"name": "Fabiano Bernardo",
"email": "[email protected]"
}
],
"name": "node-coverage",
"description": "node-coverage is a tool that measures code coverage of JavaScript application.",
"version": "2.1.0",
"homepage": "https://github.com/piuccio/node-coverage",
"repository": {
"type": "git",
"url": "git://github.com/piuccio/node-coverage.git"
},
"main": "./index",
"bin": {
"node-coverage-instrument": "./instrument.js",
"node-coverage": "./server.js",
"node-coverage-merge": "./merge.js"
},
"dependencies": {
"mime": "1.x",
"optimist": "~0.3.1",
"uglify-js": "~1.2.5",
"connect": "1.x",
"connect-restreamer": "~1.0.0",
"express": "2.x",
"http-proxy": "~0.8.0",
"jade": "~0.20",
"mkdirp": "~0.3.0"
},
"devDependencies": {
"nodeunit": "~0.11.3"
},
"scripts": {
"test": "nodeunit test"
},
"license": "MIT",
"engines": {
"node": ">=0.6.0"
}
}