source: node_modules/patch-package/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 2.5 KB
Line 
1{
2 "name": "patch-package",
3 "version": "8.0.0",
4 "description": "Fix broken node modules with no fuss",
5 "main": "dist/index.js",
6 "repository": "github:ds300/patch-package",
7 "author": "David Sheldrick",
8 "license": "MIT",
9 "engines": {
10 "node": ">=14",
11 "npm": ">5"
12 },
13 "bin": "./index.js",
14 "scripts": {
15 "prepublishOnly": "yarn run clean && yarn run build",
16 "build": "tsc --project tsconfig.build.json",
17 "new-integration-test": "ts-node integration-tests/newIntegrationTest.ts",
18 "clean": "rimraf dist patch-package.test*.tgz",
19 "format": "prettier --no-semi --write --trailing-comma=all src{/**,}/*.ts integration-tests{/**,}/*.ts property-based-tests{/**,}/*.ts",
20 "prepack": "rimraf dist/**/*.test.js",
21 "test": "./run-tests.sh --runInBand"
22 },
23 "husky": {
24 "hooks": {
25 "pre-commit": "tsc --noEmit && lint-staged"
26 }
27 },
28 "lint-staged": {
29 "*.ts": [
30 "tslint -c tslint.json -p tsconfig.json",
31 "prettier --no-semi --trailing-comma=all --list-different"
32 ]
33 },
34 "jest": {
35 "globals": {
36 "ts-jest": {
37 "diagnostics": false
38 }
39 },
40 "transform": {
41 ".(ts|tsx)": "ts-jest"
42 },
43 "testRegex": "/(src|integration-tests|property-based-tests)/.+\\.test\\.ts$",
44 "moduleFileExtensions": [
45 "ts",
46 "tsx",
47 "js"
48 ]
49 },
50 "devDependencies": {
51 "@types/app-root-path": "^1.2.4",
52 "@types/cross-spawn": "^6.0.0",
53 "@types/fs-extra": "^9.0.0",
54 "@types/jest": "^24.0.11",
55 "@types/json-stable-stringify": "^1.0.34",
56 "@types/minimist": "^1.2.2",
57 "@types/node": "^12.0.0",
58 "@types/rimraf": "^2.0.2",
59 "@types/semver": "^7.5.0",
60 "@types/tmp": "^0.0.34",
61 "husky": "^1.3.1",
62 "jest": "^24.5.0",
63 "lint-staged": "^8.1.5",
64 "np": "^7.4.0",
65 "prettier": "^2.2.1",
66 "randomstring": "^1.1.5",
67 "ts-jest": "^24.0.0",
68 "ts-node": "8.0.3",
69 "tslint": "^5.14.0",
70 "typescript": "^4.2.2"
71 },
72 "dependencies": {
73 "@yarnpkg/lockfile": "^1.1.0",
74 "chalk": "^4.1.2",
75 "ci-info": "^3.7.0",
76 "cross-spawn": "^7.0.3",
77 "find-yarn-workspace-root": "^2.0.0",
78 "fs-extra": "^9.0.0",
79 "json-stable-stringify": "^1.0.2",
80 "klaw-sync": "^6.0.0",
81 "minimist": "^1.2.6",
82 "open": "^7.4.2",
83 "rimraf": "^2.6.3",
84 "semver": "^7.5.3",
85 "slash": "^2.0.0",
86 "tmp": "^0.0.33",
87 "yaml": "^2.2.2"
88 },
89 "files": [
90 "index.js",
91 "dist/**/*.js",
92 "CHANGELOG.md",
93 "LICENSE",
94 "patch-package-banner.png",
95 "README.md"
96 ],
97 "packageManager": "yarn@1.22.19"
98}
Note: See TracBrowser for help on using the repository browser.