Files
cloudron-box/package.json
T
Johannes Zellner 9eac6e79fd Add istanbul code coverage tool
Can be used via:
$ npm test --coverage

The result are then in the coverage subfolder:
$ chromium coverage/lcov-report/index.html
2013-08-29 14:07:54 -07:00

37 lines
736 B
JSON

{
"name": "yellowtent",
"description": "Yellow tent",
"version": "0.0.1",
"author": {
"name": "Yellow tent authors",
"email": "doesntexist@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/gramakri/yellowtent.git"
},
"engines": [
"node >= 0.8.0"
],
"dependencies": {
"readdirp": "*",
"mkdirp": "*",
"async": "*",
"optimist": "*",
"express": "*",
"superagent": "*",
"rimraf": "*",
"debug": "*",
"mime": "*",
"encfs": "*"
},
"devDependencies": {
"mocha": "*",
"istanbul": "*",
"expect.js": "*"
},
"scripts": {
"test": "./node_modules/istanbul/lib/cli.js test ./node_modules/mocha/bin/_mocha -- ./src/test"
}
}