From bba383e9d26b0e78f7cde6139bf291c8976e1925 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Fri, 1 May 2020 10:19:19 +0300 Subject: [PATCH] fix: scripts/release-manager/package.json & scripts/release-manager/.snyk to reduce vulnerabilities The following vulnerabilities are fixed with a Snyk patch: - https://snyk.io/vuln/SNYK-JS-LODASH-567746 --- scripts/release-manager/package.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/scripts/release-manager/package.json b/scripts/release-manager/package.json index dd67d48..a56bcd6 100644 --- a/scripts/release-manager/package.json +++ b/scripts/release-manager/package.json @@ -13,12 +13,16 @@ "pify": "^2.3.0", "semver": "^5.3.0", "untildify": "^3.0.2", - "vorpal": "^1.10.10" + "vorpal": "^1.10.10", + "snyk": "^1.316.1" }, "devDependencies": {}, "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "test": "echo \"Error: no test specified\" && exit 1", + "snyk-protect": "snyk protect", + "prepublish": "npm run snyk-protect" }, "author": "Paul O'Shannessy ", - "license": "MIT" + "license": "MIT", + "snyk": true }