Skip to content
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

[Snyk] Fix for 1 vulnerabilities #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions services/test-suite/.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:
- request-promise-native > request-promise-core > lodash:
patched: '2020-05-01T05:13:04.975Z'
10 changes: 7 additions & 3 deletions services/test-suite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,18 @@
"mocha": "5.2.0",
"request-promise-native": "1.0.5",
"request": "2.87.0",
"socket.io-client": "2.1.1"
"socket.io-client": "2.1.1",
"snyk": "^1.316.1"
},
"scripts": {
"test": "LOCAL=true REGION=us-east-1 ENV_NAME=test REDIS_ENDPOINT=localhost DYNAMODB_ENDPOINT=http://localhost:8000 AWS_ACCESS_KEY_ID=test AWS_SECRET_ACCESS_KEY=test mocha -b"
"test": "LOCAL=true REGION=us-east-1 ENV_NAME=test REDIS_ENDPOINT=localhost DYNAMODB_ENDPOINT=http://localhost:8000 AWS_ACCESS_KEY_ID=test AWS_SECRET_ACCESS_KEY=test mocha -b",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"eslintConfig": {
"globals": {
"Vue": true
}
}
},
"snyk": true
}