Skip to content

Commit

Permalink
add blanked coverage tool and configuration for coveralls.io
Browse files Browse the repository at this point in the history
  • Loading branch information
yannickcr committed Jun 7, 2013
1 parent 9c83220 commit c4a95e9
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -4,3 +4,4 @@ node_js:
- 0.8
- 0.10
- 0.11
script: "./node_modules/mocha/bin/mocha --require blanket -R mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js"
29 changes: 22 additions & 7 deletions package.json
Expand Up @@ -2,16 +2,29 @@
"name": "chromelogger",
"version": "1.0.2",
"description": "Log and inspect your server-side code in the Chrome console using Chrome Logger",
"keywords": ["chrome", "logger", "logging", "debugging", "express","middleware"],
"keywords": [
"chrome",
"logger",
"logging",
"debugging",
"express",
"middleware"
],
"main": "./lib/chromelogger.js",
"scripts": {
"test": "mocha ./test/test.js"
"test": "./node_modules/mocha/bin/mocha ./test/test.js",
"blanket": {
"pattern": [ "/lib/chromelogger.js" ]
}
},
"dependencies": {
"json-stringify-safe": "4.0.x"
},
"devDependencies": {
"mocha": "1.9.x"
"mocha": "1.9.x",
"mocha-lcov-reporter": "0.0.x",
"blanket": "1.1.x",
"coveralls": "2.0.x"
},
"engines": {
"node": ">=0.4.0"
Expand All @@ -21,9 +34,11 @@
"url": "git://github.com/yannickcr/node-chromelogger.git"
},
"author": "Yannick Croissant (https://github.com/yannickcr)",
"licenses": [ {
"type": "MIT",
"url" : "https://raw.github.com/yannickcr/node-chromelogger/master/LICENSE"
}],
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/yannickcr/node-chromelogger/master/LICENSE"
}
],
"readmeFilename": "README.md"
}

0 comments on commit c4a95e9

Please sign in to comment.