Skip to content

[Snyk] Fix for 1 vulnerable dependencies #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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.13.5
ignore: {}
# patches apply the minimum changes required to fix a vulnerability
patch:
SNYK-JS-LODASH-450202:
- rsmq > lodash:
patched: '2019-07-04T04:21:32.920Z'
2,240 changes: 2,084 additions & 156 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -4,7 +4,8 @@
"description": "A high-level library for interacting with DADI Queue.",
"main": "index.js",
"dependencies": {
"rsmq": "^0.7.1"
"rsmq": "^0.7.1",
"snyk": "^1.189.0"
},
"devDependencies": {
"coveralls": "^3.0.3",
@@ -21,12 +22,15 @@
"scripts": {
"test": "snazzy index.js && env NODE_ENV=test ./node_modules/.bin/nyc --reporter=lcov ./node_modules/mocha/bin/_mocha test && ./node_modules/.bin/nyc report",
"posttest": "./scripts/coverage.js",
"start": "node ./main.js --node-env=development"
"start": "node ./main.js --node-env=development",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "https://github.com/dadi/queue-wrapper.git"
},
"author": "Robert Stanford <rs@dadi.co>",
"license": "MIT"
"license": "MIT",
"snyk": true
}