UNPKG

patch-package

Version:

When forking just won't work, patch it.

80 lines (79 loc) 2.07 kB
{ "name": "patch-package", "version": "6.0.0", "description": "When forking just won't work, patch it.", "main": "dist/index.js", "repository": "https://github.com/ds300/patch-package", "author": "David Sheldrick", "license": "MIT", "engines": { "npm": ">5" }, "bin": { "patch-package": "./index.js" }, "scripts": { "precommit": "tsc --noEmit && lint-staged", "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", "test": "./run-tests.sh --runInBand" }, "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/chalk": "^0.4.31", "@types/fs-extra": "^4.0.0", "@types/jest": "^23.3.12", "@types/minimist": "^1.2.0", "@types/node": "^7.0.18", "@types/rimraf": "^0.0.28", "@types/tmp": "^0.0.33", "husky": "^0.13.3", "jest": "^23.6.0", "lint-staged": "^3.4.1", "np": "^2.15.0", "prettier": "^1.15.3", "randomstring": "^1.1.5", "ts-jest": "^23.10.5", "ts-node": "6", "tslint": "^5.2.0", "typescript": "^3.2.2" }, "dependencies": { "@types/is-ci": "^1.1.0", "chalk": "^1.1.3", "cross-spawn": "^5.1.0", "fs-extra": "^4.0.1", "is-ci": "^2.0.0", "klaw-sync": "^4.0.0", "minimist": "^1.2.0", "rimraf": "^2.6.2", "slash": "^1.0.0", "tmp": "^0.0.31", "update-notifier": "^2.4.0" } }