{
  "name": "opt-cli",
  "version": "1.6.0",
  "description": "Execute CLI Statements based upon Opt-In / Opt-Out Rules.",
  "main": "lib/index.js",
  "bin": {
    "opt": "bin/index.js"
  },
  "engines": {
    "node": ">=4"
  },
  "scripts": {
    "commit": "git-cz",
    "update-contributors": "all-contributors generate",
    "validate": "npm-run-all --parallel lint cover --sequential check-coverage",
    "lint": "eslint .",
    "cover": "nyc --all --reporter=lcov --reporter=text ava",
    "test": "ava",
    "check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
    "report-coverage": "cat ./coverage/lcov.info | node_modules/.bin/codecov",
    "semantic-release": "semantic-release pre && npm publish && semantic-release post"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ta2edchimp/opt-cli.git"
  },
  "keywords": [
    "executer",
    "cli",
    "opt-in",
    "opt-out"
  ],
  "author": "Andreas Windt <email@andreaswindt.com> (http://andreaswindt.com)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ta2edchimp/opt-cli/issues"
  },
  "homepage": "https://github.com/ta2edchimp/opt-cli#readme",
  "dependencies": {
    "commander": "2.11.0",
    "lodash.clone": "4.5.0",
    "manage-path": "2.0.0",
    "spawn-command": "0.0.2-1"
  },
  "devDependencies": {
    "all-contributors-cli": "4.4.0",
    "ava": "0.21.0",
    "codecov": "2.3.0",
    "commitizen": "2.9.6",
    "cz-conventional-changelog": "2.0.0",
    "eslint": "4.4.1",
    "eslint-config-idiomatic": "2.1.2",
    "eslint-config-ta2edchimp": "1.1.2",
    "ghooks": "2.0.0",
    "npm-run-all": "4.0.2",
    "nyc": "11.1.0",
    "proxyquire": "1.8.0",
    "semantic-release": "6.3.6",
    "validate-commit-msg": "2.14.0"
  },
  "config": {
    "ghooks": {
      "commit-msg": "validate-commit-msg",
      "pre-commit": "npm run validate"
    },
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "nyc": {
    "include": [
      "bin/**/*",
      "lib/**/*"
    ]
  }
}
