{
  "name": "eslint-config-moxy",
  "description": "MOXY eslint configuration to be used across several JavaScript projects",
  "version": "9.1.1",
  "keywords": [
    "eslint-config",
    "eslintconfig",
    "eslint",
    "lint",
    "linter",
    "style"
  ],
  "author": "André Cruz <andre@moxy.studio>",
  "homepage": "https://github.com/moxystudio/eslint-config",
  "repository": {
    "type": "git",
    "url": "git@github.com:moxystudio/eslint-config.git"
  },
  "license": "MIT",
  "files": [
    "es*.js",
    "rules",
    "addons"
  ],
  "scripts": {
    "lint": "eslint . --ignore-pattern test/fixtures",
    "test": "jest --env node --coverage",
    "prerelease": "npm t && npm run lint",
    "release": "standard-version",
    "postrelease": "git push --follow-tags origin master && npm publish"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix --ignore-pattern test/fixtures",
      "git add"
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "peerDependencies": {
    "eslint": "^6.0.0"
  },
  "dependencies": {
    "babel-eslint": "^10.0.3",
    "eslint-plugin-babel": "^5.3.0",
    "eslint-plugin-jest": "^23.0.4",
    "eslint-plugin-jsdoc": "^18.0.1",
    "eslint-plugin-prefer-import": "0.0.1",
    "eslint-plugin-react": "^7.16.0",
    "eslint-plugin-react-hooks": "^2.3.0"
  },
  "devDependencies": {
    "@babel/core": "^7.7.2",
    "@commitlint/cli": "^8.2.0",
    "@commitlint/config-conventional": "^8.2.0",
    "babel-preset-moxy": "^3.0.4",
    "create-react-class": "^15.6.3",
    "eslint": "^6.6.0",
    "husky": "^3.0.9",
    "jest": "^24.5.0",
    "lint-staged": "^9.4.3",
    "prop-types": "^15.6.2",
    "react": "^16.12.0",
    "standard-version": "^7.0.0"
  },
  "engines": {
    "node": ">=8",
    "npm": ">=3"
  }
}
