From 75ce1d5c49a6591dd13422016c07f8f9cae13371 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Mon, 18 Sep 2023 11:04:42 -0700 Subject: [PATCH] [Tests] always run coverage; downgrade `nyc` --- package.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 72114bd..7f8bdc1 100644 --- a/package.json +++ b/package.json @@ -17,9 +17,8 @@ "url": "https://github.com/crypto-browserify/browserify-sign.git" }, "scripts": { - "coverage": "nyc npm run tests-only", "lint": "eslint --ext=js,mjs .", - "tests-only": "tape 'test/**/*.js'", + "tests-only": "nyc tape 'test/**/*.js'", "pretest": "npm run lint", "test": "npm run tests-only" }, @@ -37,7 +36,7 @@ "devDependencies": { "@ljharb/eslint-config": "^21.1.0", "eslint": "^8.8.0", - "nyc": "^15.1.0", + "nyc": "^10.3.2", "tape": "^5.6.6" }, "browser": "browser/index.js"