From 98784db1a8128a68609d418a4ec0f539f919e71a Mon Sep 17 00:00:00 2001 From: snyk-test Date: Sat, 6 Jul 2019 04:57:04 +0000 Subject: [PATCH] fix: .snyk & package.json to reduce vulnerabilities The following vulnerabilities are fixed with a Snyk patch: - https://snyk.io/vuln/SNYK-JS-LODASH-450202 --- .snyk | 8 ++++++++ package.json | 10 +++++++--- 2 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 .snyk diff --git a/.snyk b/.snyk new file mode 100644 index 0000000..673795c --- /dev/null +++ b/.snyk @@ -0,0 +1,8 @@ +# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. +version: v1.13.5 +ignore: {} +# patches apply the minimum changes required to fix a vulnerability +patch: + SNYK-JS-LODASH-450202: + - lodash: + patched: '2019-07-06T04:57:03.073Z' diff --git a/package.json b/package.json index a567031..ffef115 100644 --- a/package.json +++ b/package.json @@ -11,11 +11,14 @@ }, "scripts": { "lint": "eslint index.js", - "test": "npm run lint && mocha tests" + "test": "npm run lint && mocha tests", + "snyk-protect": "snyk protect", + "prepublish": "npm run snyk-protect" }, "dependencies": { "lodash": "^4.17.4", - "request": "^2.81.0" + "request": "^2.81.0", + "snyk": "^1.192.3" }, "devDependencies": { "chai": "^3.5.0", @@ -27,5 +30,6 @@ "injectr": "^0.5.1", "mocha": "^6.1.4", "sinon": "^1.17.7" - } + }, + "snyk": true }