diff --git a/.snyk b/.snyk new file mode 100644 index 0000000..217a0d5 --- /dev/null +++ b/.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: + - winston > async > lodash: + patched: '2019-07-03T22:04:29.494Z' diff --git a/package.json b/package.json index fe8b477..cd3b907 100644 --- a/package.json +++ b/package.json @@ -3,15 +3,19 @@ "description": "Game On! node.js room", "main": "server.js", "scripts": { - "start": "node server.js" + "start": "node server.js", + "snyk-protect": "snyk protect", + "prepublish": "npm run snyk-protect" }, "dependencies": { "serve-static": "^1.11.2", "finalhandler": "1.0.6", "websocket": "^1.0.24", - "winston": "*" + "winston": "*", + "snyk": "^1.189.0" }, "author": "", "license": "ISC", - "repository": {} + "repository": {}, + "snyk": true }