0.2.0 • Published 3 years ago

npm-audit-plus v0.2.0

Weekly downloads
102
License
AGPL-3.0-only
Repository
github
Last release
3 years ago

NPM Audit+

NPM Audit+ is a wrapper around NPM's built-in audit tool. It adds the following functionality:

  • Ignore particular advisories
  • Specify a project to audit
  • Output audit result as JUnit XML, compatible with many CI systems

Installation

Install globally:

npm install -g npm-audit-plus

or install locally:

npm install npm-audit-plus

Either works!

Usage

npm-audit-plus --ignore=123,456 --xml             # If installed globally
$(npm bin)/npm-audit-plus --ignore=123,456 --xml  # If installed locally

For more documentation on NPM Audit+'s flags, run

npm-audit-plus --help             # If installed globally
$(npm bin)/npm-audit-plus --help  # If installed locally