forked from RetireJS/retire.js
-
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.
Fixing problems with using reqireignore.json with array identifiers l…
…ike CVE
- Loading branch information
Showing
4 changed files
with
22 additions
and
11 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 |
---|---|---|
@@ -1,14 +1,17 @@ | ||
[ | ||
{ | ||
"component": "jquery", | ||
"identifiers" : { "issue": "2432"} | ||
"identifiers" : { "issue": "2432"}, | ||
"justification" : "We dont call external resources with jQuery" | ||
}, | ||
{ | ||
"component": "jquery", | ||
"version" : "2.1.4" | ||
"version" : "2.1.4", | ||
"justification" : "We dont call external resources with jQuery" | ||
}, | ||
{ | ||
"path" : "node_modules" | ||
"path" : "node_modules", | ||
"justification" : "The node modules are only used for building - client side dependencies are using bower" | ||
} | ||
|
||
] |
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
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
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"author": "Erlend Oftedal <[email protected]>", | ||
"name": "retire", | ||
"description": "Retire is a tool for detecting use of vulnerable libraries", | ||
"version": "1.2.2", | ||
"version": "1.2.3", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/RetireJS/retire.js.git" | ||
|