From 1ad9a4159a290b4bc5a23ccd5cb7f7e067c93680 Mon Sep 17 00:00:00 2001 From: Artur Klajnerok Date: Sun, 2 Apr 2023 20:46:16 +0200 Subject: [PATCH 1/2] chore: update ms, mocha, nyc --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 4f1e4e9..a8f8f40 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ }, "scripts": { "lint": "eslint .", - "coverage": "nyc mocha --use_strict", + "coverage": "nyc mocha", "test": "npm run lint && npm run coverage && cost-of-modules" }, "repository": { @@ -38,7 +38,7 @@ "dependencies": { "jws": "^3.2.2", "lodash": "^4.17.21", - "ms": "^2.1.1", + "ms": "^2.1.3", "semver": "^7.3.8" }, "devDependencies": { @@ -47,9 +47,9 @@ "conventional-changelog": "~1.1.0", "cost-of-modules": "^1.0.1", "eslint": "^4.19.1", - "mocha": "^5.2.0", + "mocha": "^6.2.3", "nsp": "^2.6.2", - "nyc": "^11.9.0", + "nyc": "^15.1.0", "sinon": "^6.0.0" }, "engines": { From 9313c33259ffb40feeed968e2b61d632bb5bb9ac Mon Sep 17 00:00:00 2001 From: Artur Klajnerok Date: Sun, 2 Apr 2023 20:47:24 +0200 Subject: [PATCH 2/2] revert use of: nyc mocha --use_strict --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a8f8f40..61f4c10 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ }, "scripts": { "lint": "eslint .", - "coverage": "nyc mocha", + "coverage": "nyc mocha --use_strict", "test": "npm run lint && npm run coverage && cost-of-modules" }, "repository": {