[Snyk] Fix for 1 vulnerabilities (#218)

* fix: build/package.json, build/package-lock.json & build/.snyk to reduce vulnerabilities


The following vulnerabilities are fixed with a Snyk patch:
- https://snyk.io/vuln/SNYK-JS-LODASH-567746

* fix: build/package.json, build/package-lock.json & build/.snyk to reduce vulnerabilities


The following vulnerabilities are fixed with a Snyk patch:
- https://snyk.io/vuln/SNYK-JS-LODASH-567746

* fix: build/package.json, build/package-lock.json & build/.snyk to reduce vulnerabilities


The following vulnerabilities are fixed with a Snyk patch:
- https://snyk.io/vuln/SNYK-JS-LODASH-567746
This commit is contained in:
Snyk bot
2020-05-01 09:09:11 +03:00
committed by GitHub
parent c699b06f86
commit 4bd965e298
3 changed files with 2212 additions and 122 deletions

8
build/.snyk Normal file
View File

@@ -0,0 +1,8 @@
# 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:
- termcolors > lodash:
patched: '2020-05-01T01:18:01.288Z'

2316
build/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -5,7 +5,9 @@
"main": "build.js", "main": "build.js",
"scripts": { "scripts": {
"build": "node build.js", "build": "node build.js",
"test": "eslint build.js && node build.js check" "test": "eslint build.js && node build.js check",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
}, },
"author": { "author": {
"name": "Josh Dick", "name": "Josh Dick",
@@ -22,11 +24,13 @@
"husky": "^4.2.3" "husky": "^4.2.3"
}, },
"dependencies": { "dependencies": {
"termcolors": "latest" "termcolors": "latest",
"snyk": "^1.316.1"
}, },
"husky": { "husky": {
"hooks": { "hooks": {
"pre-commit": "npm test" "pre-commit": "npm test"
} }
} },
"snyk": true
} }