npm-auditor-ci
Version:
A wrapper for 'npm audit' which can be used in CI.
69 lines (68 loc) • 1.82 kB
JSON
{
"name": "npm-auditor-ci",
"version": "0.1.4",
"author": "willywos",
"license": "MIT",
"description": "A wrapper for 'npm audit' which can be used in CI.",
"main": "dist/index.js",
"scripts": {
"build": "babel src/ --out-dir dist --copy-files --ignore __tests__",
"dev": "babel -w src/ --out-dir dist --copy-files --ignore __tests__",
"format": "prettier --write --ignore-path .gitignore {src,.}/*.js",
"lint": "eslint --fix src/",
"test": "cross-env NODE_ENV=test mocha --require @babel/register test/unit",
"test:watch": "cross-env NODE_ENV=test mocha --require @babel/register test/unit --watch",
"ci": "npm run format && npm run lint && npm run test"
},
"release": {
"branch": "master"
},
"keywords": [
"npm",
"yarn",
"nsp",
"security",
"audit",
"npm audit",
"auditor"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/willywos/npm-auditor-ci.git"
},
"bugs": {
"url": "https://github.com/willywos/npm-auditor-ci/issues/"
},
"homepage": "https://github.com/willywos/npm-auditor-ci",
"bin": {
"npm-auditor-ci": "./dist/index.js"
},
"engines": {
"node": ">=8.0"
},
"dependencies": {
"babel-polyfill": "6.26.0",
"console.table": "0.10.0",
"lodash": "4.17.20",
"meow": "7.1.0"
},
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.11.4",
"@babel/plugin-proposal-class-properties": "7.10.4",
"@babel/preset-env": "7.11.0",
"@babel/register": "7.10.5",
"babel-eslint": "10.1.0",
"chai": "4.2.0",
"cross-env": "7.0.2",
"eslint": "7.7.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-plugin-import": "2.22.0",
"mocha": "8.1.3",
"prettier": "2.1.1",
"sinon": "9.0.3"
}
}