{
  "name": "danger-plugin-istanbul-coverage",
  "description": "Danger.js plugin for monitoring istanbul code coverage on changed files.",
  "author": {
    "name": "Darcy Rayner",
    "email": "darcy.rayner@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/darcy-rayner/danger-plugin-istanbul-coverage.git"
  },
  "bugs": {
    "url": "https://github.com/darcy-rayner/danger-plugin-istanbul-coverage/issues"
  },
  "homepage": "https://github.com/darcy-rayner/danger-plugin-istanbul-coverage#readme",
  "keywords": [
    "danger",
    "danger-plugin",
    "istanbul",
    "coverage",
    "testing"
  ],
  "version": "1.6.2",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "commit": "git-cz",
    "build": "tsc",
    "test": "jest --collectCoverage",
    "prepublish": "npm run build",
    "semantic-release": "semantic-release",
    "prettier": "prettier",
    "prettier-write": "npm run prettier -- --parser typescript --no-semi --trailing-comma es5 --write --print-width 120",
    "prettier-project": "npm run prettier-write -- 'src/**/*.{ts,tsx}'",
    "lint": "tslint \"src/**/*.ts\""
  },
  "license": "MIT",
  "engines": {
    "node": ">=4.0.0"
  },
  "devDependencies": {
    "@types/jest": "^24.0.15",
    "@types/lodash": "^4.14.135",
    "@types/node": "^12.0.10",
    "commitizen": "^3.1.1",
    "cz-conventional-changelog": "^2.0.0",
    "danger": "9.1.4",
    "husky": "3.0.2",
    "jest": "^24.8.0",
    "lint-staged": "^9.1.0",
    "prettier": "^1.18.2",
    "semantic-release": "^15.13.18",
    "ts-jest": "^24.0.2",
    "tslint": "^5.18.0",
    "typescript": "^3.5.2",
    "validate-commit-msg": "^2.12.1"
  },
  "husky": {
    "hooks": {
      "precommit": "lint-staged",
      "commitmsg": "validate-commit-msg"
    }
  },
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "lint-staged": {
    "*.@(ts|tsx)": [
      "tslint --fix",
      "npm run prettier-write --",
      "git add"
    ]
  },
  "jest": {
    "verbose": true,
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "coverageReporters": [
      "json-summary",
      "json",
      "lcov"
    ],
    "transform": {
      ".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testRegex": "(.test)\\.(ts|tsx)$",
    "testPathIgnorePatterns": [
      "\\.snap$",
      "<rootDir>/node_modules/",
      "src/filesystem.service.ts"
    ]
  },
  "dependencies": {
    "lodash": "^4.17.5"
  }
}
