npm install -g audit-check
Options | Description | Type | Default |
---|---|---|---|
severity |
Severity to ignore, will filter from the result and return the correct exit code | String |
info |
json |
Weither to return a JSON or Table | Boolean |
false |
ignore-dev |
Weither to ignore dev-dependencies | Boolean |
false |
output |
Path to save output to | String |
|
whitelist |
List of module names to ignore, comma-separated | String |
Outputs a JSON but excluding debug
audit-check --json --whitelist debug
Outputs a JSON but only showing high or greater severity
audit-check --severity high --json
Outputs a json to file with only low and higher severity, excludes debug and only from production dependencies
audit-check --severity low --whitelist debug --ignore-dev --output ./result.json
Outputs a table with only low and higher severity, excludes debug and only from production dependencies
audit-check --severity low --whitelist debug --ignore-dev