diff --git a/.snyk b/.snyk new file mode 100644 index 0000000..5e2ba30 --- /dev/null +++ b/.snyk @@ -0,0 +1,14 @@ +# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. +version: v1.22.1 +ignore: {} +# patches apply the minimum changes required to fix a vulnerability +patch: + SNYK-JS-LODASH-567746: + - tc-core-library-js > lodash: + patched: '2022-03-26T02:37:30.980Z' + - no-kafka > bin-protocol > lodash: + patched: '2022-03-26T02:37:30.980Z' + - no-kafka > nice-simple-logger > lodash: + patched: '2022-03-26T02:37:30.980Z' + - no-kafka > wrr-pool > lodash: + patched: '2022-03-26T02:37:30.980Z' diff --git a/package-lock.json b/package-lock.json index 877bafe..f1bcaa8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -38,6 +38,11 @@ "@hapi/hoek": "^8.3.0" } }, + "@snyk/protect": { + "version": "1.883.0", + "resolved": "https://registry.npmjs.org/@snyk/protect/-/protect-1.883.0.tgz", + "integrity": "sha512-N/EqG6P/qNYWOfuZAfGS1d7yGwGY4zV7AvKtgTzdhazDt7G/mRLG6czLSWNWGEFYBiMsYRVPHdc5It3bjhmIGw==" + }, "@types/bluebird": { "version": "3.5.0", "resolved": "https://registry.npmjs.org/@types/bluebird/-/bluebird-3.5.0.tgz", @@ -1935,9 +1940,9 @@ } }, "lodash": { - "version": "4.17.19", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.19.tgz", - "integrity": "sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==" + "version": "4.17.20", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz", + "integrity": "sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==" }, "lodash.clonedeep": { "version": "4.5.0", diff --git a/package.json b/package.json index c373d0e..12d4c5e 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,9 @@ "start": "node src/app.js", "lint": "standard", "lint:fix": "standard --fix", - "mockServer": "node mock/main.js" + "mockServer": "node mock/main.js", + "prepare": "npm run snyk-protect", + "snyk-protect": "snyk-protect" }, "author": "TCSCODER", "license": "none", @@ -21,14 +23,16 @@ "bluebird": "^3.5.5", "config": "^3.1.0", "get-parameter-names": "^0.3.0", - "lodash": "^4.17.19", + "lodash": "^4.17.20", "no-kafka": "^3.4.3", "tc-core-library-js": "appirio-tech/tc-core-library-js.git#v2.6", "topcoder-healthcheck-dropin": "^1.0.3", "winston": "^3.2.1", - "xlsx": "^0.16.0" + "xlsx": "^0.16.0", + "@snyk/protect": "latest" }, "engines": { "node": "12.x" - } + }, + "snyk": true }