{
  "name": "patch-package",
  "version": "6.4.7",
  "description": "Fix broken node modules with no fuss",
  "main": "dist/index.js",
  "repository": "github:ds300/patch-package",
  "author": "David Sheldrick",
  "license": "MIT",
  "engines": {
    "npm": ">5"
  },
  "bin": {
    "patch-package": "./index.js"
  },
  "scripts": {
    "prepublishOnly": "yarn run clean && yarn run build",
    "build": "tsc --project tsconfig.build.json",
    "new-integration-test": "ts-node integration-tests/newIntegrationTest.ts",
    "clean": "rimraf dist patch-package.test*.tgz",
    "format": "prettier --no-semi --write --trailing-comma=all src{/**,}/*.ts integration-tests{/**,}/*.ts property-based-tests{/**,}/*.ts",
    "prepack": "rimraf dist/**/*.test.js",
    "test": "./run-tests.sh --runInBand"
  },
  "husky": {
    "hooks": {
      "pre-commit": "tsc --noEmit && lint-staged"
    }
  },
  "lint-staged": {
    "*.ts": [
      "tslint -c tslint.json -p tsconfig.json",
      "prettier --no-semi --trailing-comma=all --list-different"
    ]
  },
  "jest": {
    "globals": {
      "ts-jest": {
        "diagnostics": false
      }
    },
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "testRegex": "/(src|integration-tests|property-based-tests)/.+\\.test\\.ts$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ]
  },
  "devDependencies": {
    "@types/app-root-path": "^1.2.4",
    "@types/cross-spawn": "^6.0.0",
    "@types/fs-extra": "^5.0.5",
    "@types/is-ci": "^1.1.0",
    "@types/jest": "^24.0.11",
    "@types/minimist": "^1.2.0",
    "@types/node": "^11.11.6",
    "@types/rimraf": "^2.0.2",
    "@types/semver": "^5.5.0",
    "@types/tmp": "^0.0.34",
    "husky": "^1.3.1",
    "jest": "^24.5.0",
    "lint-staged": "^8.1.5",
    "np": "^7.4.0",
    "prettier": "^2.2.1",
    "randomstring": "^1.1.5",
    "ts-jest": "^24.0.0",
    "ts-node": "8.0.3",
    "tslint": "^5.14.0",
    "typescript": "^4.2.2"
  },
  "dependencies": {
    "@yarnpkg/lockfile": "^1.1.0",
    "chalk": "^2.4.2",
    "cross-spawn": "^6.0.5",
    "find-yarn-workspace-root": "^2.0.0",
    "fs-extra": "^7.0.1",
    "is-ci": "^2.0.0",
    "klaw-sync": "^6.0.0",
    "minimist": "^1.2.0",
    "open": "^7.4.2",
    "rimraf": "^2.6.3",
    "semver": "^5.6.0",
    "slash": "^2.0.0",
    "tmp": "^0.0.33"
  },
  "files": [
    "index.js",
    "dist/**/*.js",
    "CHANGELOG.md",
    "LICENSE",
    "patch-package-banner.png",
    "README.md"
  ]
}
