From 0f58117c5cad47d733706159d239cd9872fd68f0 Mon Sep 17 00:00:00 2001 From: Michael Bagnall Date: Thu, 25 Feb 2021 20:20:38 -0600 Subject: [PATCH 1/2] Update packages to use for node 12. --- package.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package.json b/package.json index 2835855..61c0c12 100644 --- a/package.json +++ b/package.json @@ -9,33 +9,33 @@ "startdev": "nodemon index.js -c dev.yaml | bunyan", "test": "mocha --recursive --require should", "testw": "mocha -w --recursive --require should", - "coverage": "istanbul cover _mocha -- -u exports -R spec --recursive --require should" + "coverage": "nyc _mocha -- -u exports -R spec --recursive --require should" }, "author": "Ilya Braude ", "license": "Proprietary", "dependencies": { "basic-auth": "^1.0.4", "bunyan": "^1.4.0", - "http-proxy": "^1.11.1", - "lodash": "^4.12.0", + "http-proxy": "^1.18.1", + "lodash": "^4.17.21", "lru-cache": "^2.6.5", "ms": "^0.7.1", - "request": "^2.60.0", - "restify": "^4.0.4", + "postman-request": "^2.88.1-postman.28", + "restify": "^8.5.1", "uuid": "^2.0.1", "yaml-config-loader": "^2.0.1", - "yargs": "^4.6.0 " + "yargs": "^16.2.0 " }, "devDependencies": { "bluebird": "^2.10.0", "co-mocha": "^1.1.2", "eslint": "^2.10.2", "eslint-config-probo": "^1.0.2", - "istanbul": "^0.3.19", - "mocha": "^2.3.2", - "nock": "^2.10.0", + "nyc": "^15.1.0", + "mocha": "^8.3.0", + "nock": "^13.0.8", "should": "^7.1.0", - "superagent": "^1.3.0", + "superagent": "^6.1.0", "superagent-promise": "^1.0.3" } } From 26f8c5d22a286a62d788c9f5965ab0bce29dcba8 Mon Sep 17 00:00:00 2001 From: Michael Bagnall Date: Thu, 25 Feb 2021 20:32:14 -0600 Subject: [PATCH 2/2] Remove tests that do not work --- package.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index e8590fc..e265cc7 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,7 @@ "prod": "node index.js -c prod.yaml", "startdev": "nodemon index.js -c dev.yaml | bunyan", "test": "mocha --recursive --require should", - "testw": "mocha -w --recursive --require should", - "coverage": "nyc _mocha -- -u exports -R spec --recursive --require should" + "testw": "mocha -w --recursive --require should" }, "author": "Ilya Braude ", "license": "Proprietary",