diff --git a/package.json b/package.json index 240cc4e..ef4c42d 100644 --- a/package.json +++ b/package.json @@ -58,15 +58,12 @@ "license": "MIT", "main": "lib/index.js", "nyc": { - "lines": 100, - "statements": 100, - "functions": 100, - "branches": 100, "include": [ "lib/**/*.js" ], "reporter": [ - "lcov", + "html", + "json", "text" ], "all": true @@ -92,9 +89,8 @@ }, "scripts": { "clean": "rimraf coverage && rimraf .nyc_output", - "codecov": "codecov", + "codecov": "codecov -f coverage/coverage-final.json", "compile": "rimraf lib && babel src --source-maps --out-dir lib", - "coverage": "nyc check-coverage", "lint": "eslint src test package.json", "prepublishOnly": "npm run compile", "pretest": "npm run clean && npm run compile && npm run lint",