Compare commits

...

1 Commits

Author SHA1 Message Date
snyk-test daa5f0af6e fix: .snyk, package.json & package-lock.json to reduce vulnerabilities
The following vulnerabilities are fixed with a Snyk patch:
- https://snyk.io/vuln/npm:debug:20170905
- https://snyk.io/vuln/npm:ms:20170412
2019-06-26 01:02:47 +00:00
3 changed files with 2192 additions and 1235 deletions

15
.snyk Normal file
View File

@ -0,0 +1,15 @@
# 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:
'npm:debug:20170905':
- Arsenal > ioredis > debug:
patched: '2019-06-26T01:02:26.963Z'
- vaultclient > Arsenal > ioredis > debug:
patched: '2019-06-26T01:02:26.963Z'
'npm:ms:20170412':
- Arsenal > ioredis > debug > ms:
patched: '2019-06-26T01:02:26.963Z'
- vaultclient > Arsenal > ioredis > debug > ms:
patched: '2019-06-26T01:02:26.963Z'

3386
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -22,7 +22,8 @@
"ioredis": "^4.9.5",
"node-schedule": "1.2.0",
"vaultclient": "scality/vaultclient#fbd9988d",
"werelogs": "scality/werelogs#0ff7ec82"
"werelogs": "scality/werelogs#0ff7ec82",
"snyk": "^1.184.0"
},
"devDependencies": {
"aws4": "^1.8.0",
@ -38,6 +39,9 @@
"lint": "eslint $(git ls-files '*.js')",
"lint_md": "mdlint $(git ls-files '*.md')",
"start": "node server.js",
"test": "mocha --recursive tests/unit"
}
"test": "mocha --recursive tests/unit",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"snyk": true
}