From 08e1e6b68fce6cf7bb347b31f4c3eaddd69d0a7c Mon Sep 17 00:00:00 2001 From: snyk-test Date: Thu, 4 Jul 2019 00:35:44 +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..25860be --- /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-04T00:35:42.310Z' diff --git a/package.json b/package.json index d07d92e..92548d2 100644 --- a/package.json +++ b/package.json @@ -17,14 +17,17 @@ }, "license": "MIT", "scripts": { - "test": "./node_modules/jshint/bin/jshint index.js && ./node_modules/jscs/bin/jscs index.js && ./node_modules/mocha/bin/mocha" + "test": "./node_modules/jshint/bin/jshint index.js && ./node_modules/jscs/bin/jscs index.js && ./node_modules/mocha/bin/mocha", + "snyk-protect": "snyk protect", + "prepublish": "npm run snyk-protect" }, "dependencies": { "extend": "^2.0.1", "lodash": "^4.17.2", "request": "^2.56.0", "vow": "^0.4.9", - "ws": "^1.0.1" + "ws": "^1.0.1", + "snyk": "^1.189.0" }, "devDependencies": { "chai": "^2.3.0", @@ -33,5 +36,6 @@ "mocha": "^2.2.5", "sinon": "^1.14.1", "sinon-chai": "^2.8.0" - } + }, + "snyk": true }