forked from piuccio/node-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 KB
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
{
"author" : "Fabio Crisci <fabio.crisci@gmail.com>",
"contributors" : [{
"name" : "David-Emmanuel Divernois",
"email" : "david-emmanuel.divernois@amadeus.com"
}],
"name" : "node-coverage",
"description" : "node-coverage is a tool that measures code coverage of JavaScript application.",
"version" : "1.0.0",
"homepage" : "https://github.com/piuccio/node-coverage",
"repository" : {
"type" : "git",
"url" : "git://github.com/piuccio/node-coverage.git"
},
"bin" : {
"node-coverage-instrument" : "./instrument.js",
"node-coverage-proxy" : "./server.js"
},
"private" : true,
"dependencies" : {
"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.3",
"mkdirp" : ">=0.3.0"
},
"devDependencies" : {
"nodeunit" : ">=0.6.4"
},
"scripts" : {
"test" : "node instrument.js -t"
},
"license" : "MIT"
}