UNPKG

npm-audit-ci-wrapper

Version:

A wrapper for 'npm audit' which can be configurable for use in a CI/CD tool like Jenkins

53 lines (52 loc) 1.44 kB
{ "name": "npm-audit-ci-wrapper", "version": "3.0.2", "description": "A wrapper for 'npm audit' which can be configurable for use in a CI/CD tool like Jenkins", "keywords": [ "npm", "audit", "ci", "security", "dependencies", "jenkins", "travis" ], "files": [ "bin", "lib" ], "main": "index.js", "scripts": { "audit": "node bin/index.js -t low", "test": "jest --collect-coverage", "sonar": "sonar-scanner -Dsonar.host.url=https://sonarcloud.io/ -Dsonar.login=$(cat ~/.sonar_token) -Dsonar.projectVersion=$npm_package_version", "stryker": "node_modules/stryker-cli/bin/stryker-cli run" }, "author": "Deven Phillips <deven.phillips@redhat.com>", "repository": { "type": "git", "url": "https://github.com/InfoSec812/npm-audit-ci-wrapper.git" }, "license": "Apache-2.0", "dependencies": { "JSONStream": "^1.3.5", "argv": "^0.0.2", "cli-table": "^0.3.1", "event-stream": "^4.0.1" }, "bin": { "npm-audit-ci-wrapper": "./bin/index.js" }, "devDependencies": { "@stryker-mutator/core": "^2.1.0", "@stryker-mutator/html-reporter": "^2.1.0", "@stryker-mutator/javascript-mutator": "^2.1.0", "@stryker-mutator/jest-runner": "^2.1.0", "capture-stdout": "^1.0.0", "jest": "^24.9.0", "jest-cli": "^24.9.0", "jest-html-reporter": "^2.6.2", "sonar-scanner": "^3.1.0", "stryker-cli": "^1.0.0" } }