diff --git a/.snyk b/.snyk new file mode 100644 index 0000000..82d2b33 --- /dev/null +++ b/.snyk @@ -0,0 +1,10 @@ +# 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: + - lowdb > lodash: + patched: '2019-07-04T02:41:31.861Z' + - bitly > request-promise > request-promise-core > lodash: + patched: '2019-07-04T02:41:31.861Z' diff --git a/package.json b/package.json index 2611cbf..64147e0 100644 --- a/package.json +++ b/package.json @@ -1,50 +1,54 @@ { - "name": "bitly-cli-client", - "version": "1.1.3", - "description": "🔪 Shorten links with Bitly in your terminal!", - "license": "MIT", - "repository": "xxczaki/bitly-cli-client", - "author": { - "name": "Antoni Kepinski", - "email": "a@kepinski.me", - "url": "https://kepinski.me" - }, - "bin": { - "bitly": "cli.js" - }, - "scripts": { - "test": "xo && ava" - }, - "keywords": [ - "bitly", - "url", - "shortener", - "link", - "urls", - "short", - "long", - "shortify", - "cli", - "nodejs", - "npm", - "app" - ], - "dependencies": { - "bitly": "^6.0.8", - "chalk": "^2.4.2", - "clipboardy": "^1.2.3", - "conf": "^3.0.0", - "first-run": "^1.2.0", - "is-url-superb": "^2.0.0", - "lowdb": "^1.0.0", - "meow": "^5.0.0", - "normalize-url": "^4.2.0", - "prompts": "^2.0.4", - "qrcode-terminal": "^0.12.0" - }, - "devDependencies": { - "ava": "*", - "execa": "*", - "xo": "*" - } + "name": "bitly-cli-client", + "version": "1.1.3", + "description": "🔪 Shorten links with Bitly in your terminal!", + "license": "MIT", + "repository": "xxczaki/bitly-cli-client", + "author": { + "name": "Antoni Kepinski", + "email": "a@kepinski.me", + "url": "https://kepinski.me" + }, + "bin": { + "bitly": "cli.js" + }, + "scripts": { + "test": "xo && ava", + "snyk-protect": "snyk protect", + "prepublish": "npm run snyk-protect" + }, + "keywords": [ + "bitly", + "url", + "shortener", + "link", + "urls", + "short", + "long", + "shortify", + "cli", + "nodejs", + "npm", + "app" + ], + "dependencies": { + "bitly": "^6.0.8", + "chalk": "^2.4.2", + "clipboardy": "^1.2.3", + "conf": "^3.0.0", + "first-run": "^1.2.0", + "is-url-superb": "^2.0.0", + "lowdb": "^1.0.0", + "meow": "^5.0.0", + "normalize-url": "^4.2.0", + "prompts": "^2.0.4", + "qrcode-terminal": "^0.12.0", + "snyk": "^1.189.0" + }, + "devDependencies": { + "ava": "*", + "execa": "*", + "xo": "*" + }, + "snyk": true }