{
  "name": "eslint-plugin-jest",
  "version": "22.7.0",
  "description": "Eslint rules for Jest",
  "repository": "jest-community/eslint-plugin-jest",
  "license": "MIT",
  "keywords": [
    "eslint",
    "eslintplugin",
    "eslint-plugin"
  ],
  "author": {
    "name": "Jonathan Kim",
    "email": "hello@jkimbo.com",
    "url": "jkimbo.com"
  },
  "files": [
    "docs/",
    "src/",
    "lib/"
  ],
  "main": "lib/",
  "engines": {
    "node": ">=6"
  },
  "peerDependencies": {
    "eslint": ">=5"
  },
  "scripts": {
    "prepare": "yarn build",
    "lint": "eslint . --ignore-pattern '!.eslintrc.js'",
    "prettylint": "prettylint docs/**/*.md README.md package.json",
    "prepublishOnly": "yarn build",
    "test": "jest",
    "build": "babel src --out-dir lib"
  },
  "devDependencies": {
    "@babel/cli": "^7.4.4",
    "@babel/core": "^7.4.4",
    "@babel/preset-env": "^7.4.4",
    "@commitlint/cli": "^8.0.0",
    "@commitlint/config-conventional": "^8.0.0",
    "babel-jest": "^24.8.0",
    "eslint": "^5.1.0",
    "eslint-config-prettier": "^4.1.0",
    "eslint-plugin-eslint-plugin": "^2.0.0",
    "eslint-plugin-node": "^8.0.0",
    "eslint-plugin-prettier": "^3.0.0",
    "husky": "^1.0.1",
    "jest": "^24.0.0",
    "jest-runner-eslint": "^0.7.1",
    "lint-staged": "^8.0.4",
    "prettier": "^1.10.2",
    "prettylint": "^1.0.0"
  },
  "prettier": {
    "proseWrap": "always",
    "singleQuote": true,
    "trailingComma": "all"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ],
    "*.{md,json}": [
      "prettier --write",
      "git add"
    ]
  },
  "jest": {
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    },
    "projects": [
      {
        "displayName": "test",
        "testEnvironment": "node",
        "testPathIgnorePatterns": [
          "<rootDir>/lib/.*"
        ]
      },
      {
        "displayName": "lint",
        "runner": "jest-runner-eslint",
        "testMatch": [
          "<rootDir>/**/*.js"
        ],
        "testPathIgnorePatterns": [
          "<rootDir>/lib/.*"
        ]
      }
    ]
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
      "pre-commit": "lint-staged"
    }
  }
}
