From 683c93921d15039608a035f2358eef94a37426d4 Mon Sep 17 00:00:00 2001 From: snyk-test Date: Thu, 4 Jul 2019 08:37:00 +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..71c4a53 --- /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: + - node-sass > sass-graph > lodash: + patched: '2019-07-04T08:36:58.419Z' diff --git a/package.json b/package.json index 7ef45ae..68290de 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,8 @@ "history": "1.12.0", "envify": "3.4.0", "express-http-proxy": "0.6.0", - "transform-loader": "0.2.3" + "transform-loader": "0.2.3", + "snyk": "^1.190.0" }, "devDependencies": { "autoprefixer-core": "~5.2.0", @@ -100,6 +101,9 @@ "coverage": "jest --coverage", "build": "gulp build", "serve": "gulp serve", - "sync": "gulp sync" - } + "sync": "gulp sync", + "snyk-protect": "snyk protect", + "prepublish": "npm run snyk-protect" + }, + "snyk": true }