Skip to content

Commit

Permalink
Publish on npm
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio Crisci committed Sep 14, 2012
1 parent 1a53b5d commit ca7d871
Showing 1 changed file with 44 additions and 35 deletions.
79 changes: 44 additions & 35 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,46 @@
{
"author" : "Fabio Crisci <[email protected]>",
"contributors" : [{
"name" : "David-Emmanuel Divernois",
"email" : "[email protected]"
}],
"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"
"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" : "1.0.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"
},
"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",
"mkdirp" : "~0.3.0"
},
"devDependencies" : {
"nodeunit" : "~0.6.4"
},
"scripts" : {
"test" : "node instrument.js -t"
},
"license" : "MIT",
"engines" : {
"node" : ">=0.6.0"
}
}

0 comments on commit ca7d871

Please sign in to comment.