Skip to content

Commit

Permalink
Merge pull request #13 from gokulkrishh/snyk-fix-6b2e1d586339d57d228d…
Browse files Browse the repository at this point in the history
…57b41f6ceaa2

[Snyk] Fix for 1 vulnerable dependencies
  • Loading branch information
gokulkrishh authored Apr 25, 2020
2 parents 893ab98 + 5199c5c commit 42c4099
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 21 deletions.
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:
- node-gcm > lodash:
patched: '2019-07-04T08:43:53.939Z'
46 changes: 25 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
{
"name": "demo-pwa",
"description": "Demo progressive web application",
"version": "1.0.2",
"author": "https://github.com/gokulkrishh",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"node-gcm": "^1.0.2"
},
"scripts": {
"start": "npm run css && node server.js",
"css": "postcss -u autoprefixer -r css/*"
},
"devDependencies": {
"autoprefixer": "^9.4.3",
"postcss-cli": "^6.1.0"
},
"engines": {
"node": ">=8.11.2"
},
"license": "MIT"
"name": "demo-pwa",
"description": "Demo progressive web application",
"version": "1.0.2",
"author": "https://github.com/gokulkrishh",
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"node-gcm": "^1.0.2",
"snyk": "^1.190.0"
},
"scripts": {
"start": "npm run css && node server.js",
"css": "postcss -u autoprefixer -r css/*",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"devDependencies": {
"autoprefixer": "^9.4.3",
"postcss-cli": "^6.1.0"
},
"engines": {
"node": ">=8.11.2"
},
"license": "MIT",
"snyk": true
}

0 comments on commit 42c4099

Please sign in to comment.