From e966f4e6ec1ac662f5a0977cf49f153a9b0540d8 Mon Sep 17 00:00:00 2001 From: Eric Norris Date: Tue, 21 Apr 2015 23:56:00 -0400 Subject: [PATCH] v2.0.2 mocha and blanket are now pinned to their respective minor versions, using ^ vs ~ resulted in test coverage output breaking. --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 763e4f2..81422ea 100644 --- a/package.json +++ b/package.json @@ -9,10 +9,10 @@ }, "homepage": "https://github.com/ericnorris/striptags", "bugs": "https://github.com/ericnorris/striptags/issues", - "version": "2.0.1", + "version": "2.0.2", "devDependencies": { - "blanket": "^1.1.6", - "mocha": "^2.1.0" + "blanket": "~1.1.6", + "mocha": "~2.1.0" }, "keywords": [ "striptags", @@ -23,7 +23,7 @@ ], "scripts": { "test": "node ./node_modules/mocha/bin/mocha", - "test-coverage": "mocha --require blanket -R html-cov > coverage.html" + "test-coverage": "node ./node_modules/mocha/bin/mocha --require blanket -R html-cov > coverage.html" }, "jshintConfig": { "node": true