Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.
Open
Changes from 1 commit
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
Next Next commit
fix: package.json, package-lock.json & .snyk to reduce vulnerabilities
The following vulnerabilities are fixed with a Snyk patch:
- https://snyk.io/vuln/SNYK-JS-LODASH-567746
  • Loading branch information
snyk-bot authored and hegdeashwin committed Apr 30, 2020
commit 80e58fff68755d941cb1e13369d7facd5de3e5cf
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
"description": "A cli program to manage grc components",
"main": "./bin/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"repository": {
"type": "git",
Expand All @@ -27,10 +29,12 @@
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"lodash": "^4.17.11"
"lodash": "^4.17.11",
"snyk": "^1.316.1"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.1.0"
}
},
"snyk": true
}