forked from ds300/patch-package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.86 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
{
"name": "patch-package",
"version": "6.0.0-11",
"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",
"prepublish": "yarn run clean && yarn run build",
"build": "tsc",
"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"
},
"lint-staged": {
"*.ts": [
"tslint -c tslint.json -p tsconfig.json",
"prettier --no-semi --trailing-comma=all --list-different"
]
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"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": "^20.0.6",
"@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": "^20.0.4",
"lint-staged": "^3.4.1",
"np": "^2.15.0",
"prettier": "^1.11.1",
"randomstring": "^1.1.5",
"ts-jest": "^20.0.10",
"ts-node": "^6.0.3",
"tslint": "^5.2.0",
"typescript": "^2.7.2"
},
"dependencies": {
"chalk": "^1.1.3",
"cross-spawn": "^5.1.0",
"fs-extra": "^4.0.1",
"klaw-sync": "^4.0.0",
"minimist": "^1.2.0",
"rimraf": "^2.6.2",
"slash": "^1.0.0",
"tmp": "^0.0.31"
}
}