From 3737e82d9118c7b333eaef9f16dcd6159d1ec8e6 Mon Sep 17 00:00:00 2001 From: snyk-test Date: Fri, 5 Jul 2019 06:40:18 +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 | 10 ++++++++++ package.json | 10 +++++++--- 2 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 .snyk diff --git a/.snyk b/.snyk new file mode 100644 index 0000000..f1b0231 --- /dev/null +++ b/.snyk @@ -0,0 +1,10 @@ +# 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: + - googleapis > request > form-data > async > lodash: + patched: '2019-07-05T06:40:16.262Z' + - googleapis > google-auth-library > request > form-data > async > lodash: + patched: '2019-07-05T06:40:16.262Z' diff --git a/package.json b/package.json index 2c11ce1..5767563 100644 --- a/package.json +++ b/package.json @@ -11,10 +11,13 @@ }, "dependencies": { "googleapis": "^4.0.0", - "soap": "^0.13.0" + "soap": "^0.13.0", + "snyk": "^1.192.0" }, "scripts": { - "test": "grunt all" + "test": "grunt all", + "snyk-protect": "snyk protect", + "prepublish": "npm run snyk-protect" }, "author": "ShinyAds", "contributors": [ @@ -37,5 +40,6 @@ "DFP", "DoubleClick", "adserver" - ] + ], + "snyk": true }