Skip to content
Open
Show file tree
Hide file tree
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
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.14.1
ignore: {}
# patches apply the minimum changes required to fix a vulnerability
patch:
SNYK-JS-LODASH-567746:
- '@types/winston > winston > async > lodash':
patched: '2020-05-01T01:44:39.973Z'
16 changes: 12 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,19 @@
"tsc": "node_modules/.bin/tsc --project tsconfig.json",
"post-compile": "cp package.json README.md ./build/common",
"build": "npm run clean && npm run test && npm run tsc && npm run post-compile",
"coverage": "npm run clean && node_modules/.bin/nyc --reporter=lcov node_modules/.bin/mocha"
"coverage": "npm run clean && node_modules/.bin/nyc --reporter=lcov node_modules/.bin/mocha",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orchejs/common.git"
},
"keywords": ["Orchejs", "Common", "Shared Functionalities"],
"keywords": [
"Orchejs",
"Common",
"Shared Functionalities"
],
"author": {
"name": "Mauricio Gemelli Vigolo",
"email": "@mauriciovigolo"
Expand Down Expand Up @@ -52,6 +58,8 @@
"file-matcher": "^1.1.0",
"moment": "^2.18.1",
"ramda": "^0.25.0",
"winston": "^2.4.0"
}
"winston": "^2.4.0",
"snyk": "^1.316.1"
},
"snyk": true
}