{
  "name": "jest-runner-tslint",
  "version": "2.0.23",
  "description": "TSLint runner for Jest",
  "main": "dist/index.js",
  "repository": "https://github.com/keplersj/jest-runner-tslint",
  "author": "Kepler Sticka-Jones <kepler@stickajones.org>",
  "license": "MIT",
  "private": false,
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc",
    "test": "jest",
    "prerelease": "tsc"
  },
  "lint-staged": {
    "*": [
      "jest --bail --findRelatedTests"
    ]
  },
  "devDependencies": {
    "@commitlint/cli": "^13.1.0",
    "@commitlint/config-conventional": "^13.1.0",
    "@types/jest": "^26.0.0",
    "@types/node": "^16.0.0",
    "eslint": "^7.25.0",
    "eslint-config-starstuff": "^1.4.42",
    "husky": "^7.0.0",
    "jest": "^25.4.0",
    "jest-runner-eslint": "^0.10.0",
    "jest-runner-prettier": "^0.3.6",
    "lint-staged": "^11.0.0",
    "prettier": "^2.0.5",
    "semantic-release": "^17.0.7",
    "ts-jest": "^25.4.0",
    "tslint": "^6.0.0",
    "tslint-config-prettier": "^1.18.0",
    "tslint-plugin-prettier": "^2.3.0",
    "typescript": "^3.8.3"
  },
  "dependencies": {
    "cosmiconfig": "^7.0.0",
    "create-jest-runner": "^0.7.0"
  },
  "peerDependencies": {
    "tslint": "*"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
      "pre-commit": "lint-staged"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "jest": {
    "collectCoverage": true,
    "projects": [
      {
        "displayName": "test",
        "preset": "ts-jest",
        "testPathIgnorePatterns": [
          "/node_modules/",
          "/dist/"
        ]
      },
      {
        "displayName": "lint:eslint",
        "runner": "eslint",
        "testMatch": [
          "<rootDir>/**/*.jsx",
          "<rootDir>/**/*.js",
          "<rootDir>/**/*.tsx",
          "<rootDir>/**/*.ts"
        ],
        "testPathIgnorePatterns": [
          "/node_modules/",
          "/dist/",
          "/coverage/"
        ]
      },
      {
        "displayName": "lint:prettier",
        "preset": "jest-runner-prettier",
        "testPathIgnorePatterns": [
          "/node_modules/",
          "/dist/",
          "/coverage/"
        ]
      }
    ]
  },
  "eslintConfig": {
    "extends": "starstuff/auto",
    "env": {
      "node": true
    }
  }
}
