frankthelen/npmaudit2slack

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "npmaudit2slack",
  "version": "1.0.0-beta.5",
  "description": "Post results from npm audit to a Slack channel",
  "main": "src/audit.js",
  "bin": {
    "npmaudit2slack": "src/cli.js"
  },
  "preferGlobal": "true",
  "scripts": {
    "lint": "eslint . --ignore-path ./.eslintignore",
    "test": "NODE_ENV=test mocha --recursive --timeout 5000 test",
    "cover": "NODE_ENV=test nyc --reporter=lcov --reporter=text-summary mocha --exit --recursive --timeout 5000 test",
    "coveralls": "npm run cover && nyc report --reporter=lcovonly && cat ./coverage/lcov.info | coveralls",
    "preversion": "npm run lint && npm test"
  },
  "engines": {
    "node": ">=8.9.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/frankthelen/npmaudit2slack.git"
  },
  "keywords": [
    "npm",
    "audit",
    "slack",
    "security",
    "vulnerabilities"
  ],
  "author": "Frank Thelen",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/frankthelen/npmaudit2slack/issues"
  },
  "homepage": "https://github.com/frankthelen/npmaudit2slack#readme",
  "dependencies": {
    "bluebird": "^3.5.1",
    "commander": "^2.17.1",
    "intercept-stdout": "^0.1.2",
    "npm": "^6.4.0",
    "slack-node": "^0.1.8"
  },
  "devDependencies": {
    "chai": "^4.1.2",
    "chai-as-promised": "^7.1.1",
    "coveralls": "^3.0.2",
    "eslint": "^5.4.0",
    "eslint-config-airbnb-base": "^13.0.0",
    "eslint-plugin-import": "^2.13.0",
    "eslint-plugin-promise": "^4.0.0",
    "eslint-plugin-should-promised": "^2.0.0",
    "mocha": "^5.2.0",
    "nyc": "^12.0.2",
    "sinon": "^6.1.5",
    "sinon-chai": "^3.2.0"
  }
}