We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28b2f06 commit 930b5ecCopy full SHA for 930b5ec
package.json
@@ -5,6 +5,9 @@
5
"main": "index.js",
6
"scripts": {
7
"test": "mocha",
8
+ "posttest": "npm run coverage && npm run coverage:check",
9
+ "coverage": "node ./node_modules/istanbul/lib/cli.js cover --preserve-comments ./node_modules/mocha/bin/_mocha -- -R spec",
10
+ "coverage:check": "node ./node_modules/istanbul/lib/cli.js check-coverage --branch 100 --statement 100",
11
"build": "node tools/build"
12
},
13
"repository": {
@@ -24,8 +27,9 @@
24
27
"homepage": "https://github.com/NodeRedis/redis-commonds",
25
28
"devDependencies": {
26
29
"chai": "^3.4.0",
- "ioredis": "^1.0.8",
30
+ "ioredis": "^2.0.0-rc2",
31
"json-stable-stringify": "^1.0.0",
- "mocha": "^2.2.1"
32
+ "mocha": "^2.2.1",
33
+ "istanbul": "^0.4.3"
34
}
35
0 commit comments