{
  "name": "jest-ratchet",
  "version": "2.0.3",
  "description": "Ratchet up code coverage - keep test coverage going only one direction -- up",
  "keywords": [
    "jest",
    "coverage",
    "test",
    "test-coverage",
    "jest-ratchet"
  ],
  "author": {
    "name": "Markis Taylor",
    "email": "m@rkis.cc"
  },
  "main": "index.js",
  "engines": {
    "node": ">=6"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/markis/jest-ratchet.git"
  },
  "bugs": {
    "url": "https://github.com/markis/jest-ratchet/issues",
    "email": "m@rkis.cc"
  },
  "license": "MIT",
  "jest": {
    "collectCoverage": true,
    "coverageReporters": [
      "json-summary",
      "lcovonly",
      "html"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    },
    "testPathIgnorePatterns": [
      "/node_modules/",
      "/test-setup/"
    ],
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "testRegex": "test\\.ts$",
    "testURL": "http://localhost/",
    "moduleFileExtensions": [
      "js",
      "ts",
      "tsx"
    ],
    "verbose": true
  },
  "scripts": {
    "build": "rollup -c rollup.config.ts",
    "prepublishOnly": "tslint src/*.ts && jest && rollup -c rollup.config.ts",
    "jest": "jest",
    "test": "tslint src/*.ts && tsc --noemit && jest --no-cache"
  },
  "devDependencies": {
    "@types/jest": "24.0.14",
    "@types/node": "12.0.8",
    "jest": "24.8.0",
    "rollup": "1.15.4",
    "rollup-plugin-typescript": "1.0.1",
    "ts-jest": "24.0.2",
    "tslib": "1.10.0",
    "tslint": "5.17.0",
    "typescript": "3.5.2"
  },
  "dependencies": {
    "json-in-place": "1.0.1",
    "yargs-parser": "13.1.1"
  }
}
