-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Fabio Crisci
committed
Sep 21, 2012
1 parent
ae12415
commit ae5e06f
Showing
1 changed file
with
50 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,50 @@ | ||
{ | ||
"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" | ||
} | ||
} | ||
{ | ||
"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.1", | ||
"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" | ||
} | ||
} |