From a2d6a1f9c6580c315cd818da88c73d77de83e294 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 1 May 2020 04:44:56 +0200 Subject: [PATCH 1/2] fix: .snyk & package.json to reduce vulnerabilities The following vulnerabilities are fixed with a Snyk patch: - https://snyk.io/vuln/SNYK-JS-LODASH-567746 --- .snyk | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .snyk diff --git a/.snyk b/.snyk new file mode 100644 index 0000000..4d84918 --- /dev/null +++ b/.snyk @@ -0,0 +1,22 @@ +# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. +version: v1.14.1 +ignore: {} +# patches apply the minimum changes required to fix a vulnerability +patch: + SNYK-JS-LODASH-567746: + - lodash: + patched: '2020-05-01T02:44:53.095Z' + - '@google-cloud/vision > async > lodash': + patched: '2020-05-01T02:44:53.095Z' + - '@google-cloud/vision > google-gax > lodash': + patched: '2020-05-01T02:44:53.095Z' + - '@google-cloud/vision > @google-cloud/common-grpc > grpc > lodash': + patched: '2020-05-01T02:44:53.095Z' + - '@google-cloud/vision > google-gax > grpc > lodash': + patched: '2020-05-01T02:44:53.095Z' + - '@google-cloud/vision > @google-cloud/common > google-auto-auth > async > lodash': + patched: '2020-05-01T02:44:53.095Z' + - '@google-cloud/vision > google-gax > google-auto-auth > async > lodash': + patched: '2020-05-01T02:44:53.095Z' + - '@google-cloud/vision > @google-cloud/common-grpc > @google-cloud/common > google-auto-auth > async > lodash': + patched: '2020-05-01T02:44:53.095Z' From 8a2518ba76016874fedaff45c5543ef23237fc98 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 1 May 2020 04:44:57 +0200 Subject: [PATCH 2/2] fix: .snyk & package.json to reduce vulnerabilities The following vulnerabilities are fixed with a Snyk patch: - https://snyk.io/vuln/SNYK-JS-LODASH-567746 --- package.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 7a90ccc..2ffb3ec 100644 --- a/package.json +++ b/package.json @@ -15,14 +15,18 @@ "serve-favicon": "^2.4.0", "swig": "^1.4.2", "uuid": "^3.0.1", - "yes-https": "^0.0.3" + "yes-https": "^0.0.3", + "snyk": "^1.316.1" }, "devDependencies": {}, "scripts": { "test": "echo \"Error: no test specified\" && exit 1", - "start": "node server.js" + "start": "node server.js", + "snyk-protect": "snyk protect", + "prepare": "yarn run snyk-protect" }, "keywords": [], "author": "", - "license": "ISC" + "license": "ISC", + "snyk": true }