{
  "name": "eslint-find-rules",
  "version": "1.14.3",
  "description": "Find built-in ESLint rules you don't have in your custom config.",
  "main": "src/lib/rule-finder.js",
  "scripts": {
    "cover": "nyc --reporter=lcov --reporter=text npm test",
    "test": "mocha --recursive",
    "lint": "eslint --ignore-pattern test/fixtures .",
    "update-contributors": "all-contributors generate",
    "commit": "git-cz",
    "validate": "npm-run-all --parallel lint cover --sequential check-coverage",
    "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",
    "travis-after-all": "travis-after-all && npm run report-coverage && npm run semantic-release"
  },
  "bin": {
    "eslint-find-rules": "src/bin/find.js",
    "eslint-diff-rules": "src/bin/diff.js"
  },
  "keywords": [],
  "author": "Michał Gołębiowski <m.goleb@gmail.com>",
  "contributors": [
    "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
    "Sarbbottam Bandyopadhyay <sarbbottam@gmail.com>",
    "Andreas Windt <email@andreaswindt.com>"
  ],
  "license": "MIT",
  "dependencies": {
    "cliui": "^3.2.0",
    "eslint-rule-documentation": "^1.0.0",
    "path-is-absolute": "1.0.0",
    "which": "^1.2.8",
    "window-size": "^0.2.0",
    "yargs": "^5.0.0"
  },
  "devDependencies": {
    "all-contributors-cli": "3.0.6",
    "codecov": "1.0.1",
    "commitizen": "2.8.6",
    "cz-conventional-changelog": "1.2.0",
    "eslint": "3.5.0",
    "eslint-config-kentcdodds": "6.2.0",
    "ghooks": "1.3.2",
    "mocha": "^3.0.1",
    "npm-run-all": "3.1.0",
    "nyc": "6.6.1",
    "opt-cli": "^1.1.1",
    "proxyquire": "1.7.10",
    "semantic-release": "4.3.5",
    "sinon": "^1.17.3",
    "travis-after-all": "^1.4.4",
    "validate-commit-msg": "2.8.0"
  },
  "peerDependencies": {
    "eslint": "^2.0.0 || ^3.0.0"
  },
  "eslintConfig": {
    "extends": "kentcdodds",
    "parserOptions": {
      "ecmaVersion": 5
    },
    "env": {
      "mocha": true
    },
    "rules": {
      "no-var": 0,
      "func-names": 0,
      "object-shorthand": 0
    }
  },
  "nyc": {
    "exclude": [
      "test/**/*"
    ]
  },
  "config": {
    "ghooks": {
      "commit-msg": "validate-commit-msg",
      "pre-commit": "opt --in pre-commit --exec \"npm run validate\""
    },
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/sarbbottam/eslint-find-rules.git"
  },
  "bugs": {
    "url": "https://github.com/sarbbottam/eslint-find-rules/issues"
  },
  "homepage": "https://github.com/sarbbottam/eslint-find-rules#readme"
}