Skip to content

Commit

Permalink
fix: .snyk & package.json to reduce vulnerabilities
Browse files Browse the repository at this point in the history
The following vulnerabilities are fixed with a Snyk patch:
- https://snyk.io/vuln/SNYK-JS-LODASH-567746
  • Loading branch information
snyk-bot authored and lgaticaq committed May 6, 2020
1 parent 26d4d6b commit 9c97142
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish"
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"engines": {
"node": ">=4"
Expand All @@ -35,7 +37,8 @@
"dependencies": {
"geo.what3words": "^2.0.0",
"iso-639-1": "^1.3.0",
"node-geocoder": "^3.15.2"
"node-geocoder": "^3.15.2",
"snyk": "^1.319.0"
},
"devDependencies": {
"chai": "4.2.0",
Expand All @@ -49,5 +52,6 @@
"istanbul": "0.4.5",
"mocha": "5.2.0",
"proxyquire": "1.8.0"
}
},
"snyk": true
}

0 comments on commit 9c97142

Please sign in to comment.