Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .snyk
Original file line number Diff line number Diff line change
@@ -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:
- lodash:
patched: '2020-04-30T23:44:46.027Z'
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,15 @@
"test": "npm run lint && npm run spec && npm run coverage",
"spec": "NODE_PATH=lib NODE_ENV=test istanbul cover node_modules/.bin/_mocha -- -r test/helpers/chai -r test/helpers/sinon -R spec test/spec",
"lint": "eslint --ignore-path .gitignore .",
"coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100"
"coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"lodash": "^4.17.5",
"readable-stream": "^2.0.0",
"bluebird": "^2.9.27"
"bluebird": "^2.9.27",
"snyk": "^1.316.1"
},
"peerDependencies": {
"aws-sdk": "^2.1.34"
Expand All @@ -43,5 +46,6 @@
"engines": {
"node": "^0.8 || ^0.10 || >= 0.12",
"iojs": ">= 1.2.0"
}
},
"snyk": true
}