-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(security): ✨ Adding security and vulnerabilities tool to analyze…
… the project Snyk was added and configured, using its free layer to analyze the project in order to look for security and vulnerability issues
- Loading branch information
Showing
3 changed files
with
1,196 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. | ||
version: v1.13.5 | ||
ignore: {} | ||
patch: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "bismarck-cs", | ||
"version": "0.0.20", | ||
"version": "0.0.21", | ||
"description": "Computer Science Repository", | ||
"main": "src/index.js", | ||
"repository": "[email protected]:Oscarz90/bismarck-cs.git", | ||
|
@@ -30,6 +30,11 @@ | |
"premonitor": "yarn run clean:dist && yarn run build", | ||
"pretest": "yarn run clean:coverage && yarn run clean:reports", | ||
"release": "standard-version --no-verify", | ||
"security:auth": "snyk auth", | ||
"security:test": "snyk test", | ||
"security:wizard": "snyk wizard", | ||
"security:protect": "snyk protect", | ||
"security:monitor": "snyk monitor", | ||
"serve": "node dist", | ||
"start": "nodemon --exec babel-node src/index.js", | ||
"tasks": "ntl", | ||
|
@@ -80,6 +85,7 @@ | |
"nyc": "^15.0.0", | ||
"prettier": "^2.0.2", | ||
"shx": "^0.3.2", | ||
"snyk": "^1.305.1", | ||
"standard-changelog": "^2.0.21", | ||
"standard-version": "^7.1.0" | ||
} | ||
|
Oops, something went wrong.