npm-audit-plus-uis

0.2.93 • Public • Published

NPM Audit+ UIS

Forked from https://github.com/freedomofpress/npm-audit-plus

NPM Audit+ UIS 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-uis

or install locally:

npm install npm-audit-plus-uis

Either works!

Usage

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

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

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

Other usage

npx npm-audit-plus-uis --production --xml # Ignore vulnerabilities in devDependencies
npx npm-audit-plus-uis --auditLevel critical --xml # Only exit with code non-zero on high and critical

Gitlab example

audit-npm:
  script:
    - npm ci
    - npx npm-audit-plus-uis --xml > npm-audit.junit.xml
  allow_failure: true
  artifacts:
    when: always
    paths:
      - '*.junit.xml'
    reports:
      junit: npm-audit.junit.xml
    expire_in: 1 day

Package Sidebar

Install

npm i npm-audit-plus-uis

Weekly Downloads

0

Version

0.2.93

License

AGPL-3.0-only

Unpacked Size

11.8 kB

Total Files

9

Last publish

Collaborators

  • ee345