forked from milahu/patch-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) Β· 2.36 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "patch-package",
"version": "6.2.2",
"description": "Fix broken node modules with no fuss",
"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 integration-tests{/**,}/*.ts property-based-tests{/**,}/*.ts",
"prepack": "rimraf dist/**/*.test.js",
"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/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": "^6.2.0",
"prettier": "^1.18.2",
"randomstring": "^1.1.5",
"ts-jest": "^24.0.0",
"ts-node": "8.0.3",
"tslint": "^5.14.0",
"typescript": "^3.6.3"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"chalk": "^2.4.2",
"cross-spawn": "^6.0.5",
"find-yarn-workspace-root": "^1.2.1",
"fs-extra": "^7.0.1",
"is-ci": "^2.0.0",
"klaw-sync": "^6.0.0",
"minimist": "^1.2.0",
"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"
]
}