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 vulnerable dependencies #18

Open
wants to merge 1 commit 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 .snyk
@@ -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:
- lodash:
patched: '2019-07-04T08:08:10.585Z'
10 changes: 7 additions & 3 deletions package.json
Expand Up @@ -9,7 +9,9 @@
"build": "node build/build.js && echo 'map.aq.sensors.africa' > ./dist/CNAME",
"ghpages": "node build/ghpages.js",
"deploy": "node build/ghpages.js",
"lint": "node_modules/eslint/bin/eslint.js --fix src"
"lint": "node_modules/eslint/bin/eslint.js --fix src",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"author": "",
"license": "ISC",
Expand Down Expand Up @@ -97,6 +99,8 @@
"lodash": "^4.11.1",
"promise-polyfill": "^6.0.2",
"vue": "2.1.x",
"whatwg-fetch": "^2.0.1"
}
"whatwg-fetch": "^2.0.1",
"snyk": "^1.189.0"
},
"snyk": true
}