From 17197b71b5780371e6af17262077ebb7ac0781fe Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Fri, 16 Jun 2017 12:32:46 +0200 Subject: [PATCH] Replace istanbul with nyc --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index c54142f..78efba3 100644 --- a/package.json +++ b/package.json @@ -10,6 +10,7 @@ "scripts": { "lint": "eslint index.js tests", "test": "painless -r spec tests/*.js", + "coverage": "nyc npm test", "coverage": "istanbul cover ./node_modules/painless/bin/painless -- tests/*.js", "prepush": "npm run lint && npm test" }, @@ -29,7 +30,7 @@ "devDependencies": { "eslint": "2.10.2", "husky": "0.13.4", - "istanbul": "0.4.3", + "nyc": "11.0.2", "painless": "0.9.5", "typescript": "2.1.6", "typescript-definition-tester": "0.0.5"