Compare commits

...

1 Commits

Author SHA1 Message Date
snyk-test 1cd7ac5dc6 fix: .snyk, package.json & package-lock.json to reduce vulnerabilities
The following vulnerabilities are fixed with a Snyk patch:
- https://snyk.io/vuln/SNYK-JS-LODASH-450202
2019-07-04 05:39:27 +00:00
3 changed files with 2143 additions and 440 deletions

12
.snyk Normal file
View File

@ -0,0 +1,12 @@
# 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:
- async > lodash:
patched: '2019-07-04T05:38:06.526Z'
- aws-sdk > xmlbuilder > lodash:
patched: '2019-07-04T05:38:06.526Z'
- aws-sdk > xml2js > xmlbuilder > lodash:
patched: '2019-07-04T05:38:06.526Z'

2561
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -44,7 +44,8 @@
"utf8": "3.0.0", "utf8": "3.0.0",
"uuid": "^3.0.1", "uuid": "^3.0.1",
"werelogs": "scality/werelogs#0ff7ec82", "werelogs": "scality/werelogs#0ff7ec82",
"xml2js": "~0.4.16" "xml2js": "~0.4.16",
"snyk": "^1.189.0"
}, },
"optionalDependencies": { "optionalDependencies": {
"ioctl": "2.0.1" "ioctl": "2.0.1"
@ -63,7 +64,10 @@
"lint_md": "mdlint $(git ls-files '*.md')", "lint_md": "mdlint $(git ls-files '*.md')",
"lint_yml": "yamllint $(git ls-files '*.yml')", "lint_yml": "yamllint $(git ls-files '*.yml')",
"test": "mocha --recursive --timeout 5500 --exit tests/unit", "test": "mocha --recursive --timeout 5500 --exit tests/unit",
"ft_test": "find tests/functional -name \"*.js\" | grep -v \"utils/\" | xargs mocha --timeout 120000 --exit" "ft_test": "find tests/functional -name \"*.js\" | grep -v \"utils/\" | xargs mocha --timeout 120000 --exit",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
}, },
"private": true "private": true,
"snyk": true
} }