1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-09 00:22:08 +03:00

Merge pull request #758 from bcoe/coverage

adds coverage reporting using nyc bin
This commit is contained in:
Raymond Myers
2015-07-10 17:46:43 -07:00
2 changed files with 6 additions and 2 deletions

2
.gitignore vendored
View File

@@ -1,2 +1,4 @@
node_modules
.tern-port
.nyc_output
coverage

View File

@@ -10,11 +10,13 @@
"license": "MIT",
"main": "./index.js",
"scripts": {
"test": "node ./test.js"
"test": "node ./test.js",
"coverage": "nyc npm test && nyc report"
},
"devDependencies": {
"metrics": ">=0.1.5",
"colors": "~0.6.0-1",
"metrics": ">=0.1.5",
"nyc": "^2.2.0",
"underscore": "~1.4.4"
},
"repository": {