Skip to content
This repository was archived by the owner on Dec 2, 2024. It is now read-only.

[Snyk] Fix for 1 vulnerabilities #41

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
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
24 changes: 24 additions & 0 deletions .snyk
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.14.1
ignore: {}
# patches apply the minimum changes required to fix a vulnerability
patch:
SNYK-JS-LODASH-567746:
- eslint-config-skyscanner-with-prettier > eslint > lodash:
patched: '2020-05-07T01:53:30.709Z'
- eslint-config-skyscanner-with-prettier > eslint-plugin-backpack > lodash:
patched: '2020-05-07T01:53:30.709Z'
- eslint-config-skyscanner-with-prettier > eslint-plugin-import > lodash:
patched: '2020-05-07T01:53:30.709Z'
- eslint-config-skyscanner-with-prettier > babel-eslint > @babel/traverse > lodash:
patched: '2020-05-07T01:53:30.709Z'
- eslint-config-skyscanner-with-prettier > eslint > inquirer > lodash:
patched: '2020-05-07T01:53:30.709Z'
- eslint-config-skyscanner-with-prettier > eslint > table > lodash:
patched: '2020-05-07T01:53:30.709Z'
- eslint-config-skyscanner-with-prettier > babel-eslint > @babel/traverse > @babel/generator > lodash:
patched: '2020-05-07T01:53:30.709Z'
- eslint-config-skyscanner-with-prettier > babel-eslint > @babel/traverse > @babel/helper-split-export-declaration > @babel/types > lodash:
patched: '2020-05-07T01:53:30.709Z'
- eslint-config-skyscanner-with-prettier > babel-eslint > @babel/traverse > @babel/helper-function-name > @babel/template > @babel/types > lodash:
patched: '2020-05-07T01:53:30.709Z'
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -43,7 +43,9 @@
"test": "npm run lint && npm run test:verify",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,jsx}\""
"prettier": "prettier --config .prettierrc --write \"**/*.{js,jsx}\"",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"dependencies": {
"bpk-mixins": "^19.0.18",
@@ -53,9 +55,11 @@
"node-sass": "^4.12.0",
"node-sass-tilde-importer": "^1.0.2",
"ora": "^4.0.0",
"yargs": "^15.0.1"
"yargs": "^15.0.1",
"snyk": "^1.319.1"
},
"devDependencies": {
"eslint-config-skyscanner-with-prettier": "^0.8.0"
}
},
"snyk": true
}