-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
157 lines (157 loc) · 3.72 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "ts-patch",
"version": "3.3.0",
"description": "Patch typescript to support custom transformers in tsconfig.json",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"compile": "yarn run compile:core && yarn run compile:patch",
"build": "yarn run clean && yarn run compile:patch && yarn run compile:core",
"compile:core": "tsc -p projects/core",
"compile:patch": "tsc -p projects/patch",
"------------ ": "-------------",
"clean": "npx -y rimraf -g dist coverage *.tsbuildinfo test/.tmp",
"clean:global": "yarn run clean && npx -y rimraf -g ./**/node_modules ./**/yarn.lock",
"reset": "yarn run clean:global && yarn install && yarn build",
"------------ ": "-------------",
"test": "jest",
"perf": "cd test && yarn run perf",
"------------": "-------------",
"prepare": "ts-patch install -s && yarn prepare:test",
"prepare:test": "cd test && yarn install",
"postbuild": "node scripts/postbuild.js"
},
"private": true,
"keywords": [
"typescript",
"transform",
"transformer",
"plugin",
"config",
"ast"
],
"author": {
"name": "Ron S.",
"url": "http://twitter.com/ron"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nonara/ts-patch.git"
},
"bugs": {
"url": "https://github.com/nonara/ts-patch/issues"
},
"homepage": "https://github.com/nonara/ts-patch#readme",
"dependencies": {
"chalk": "^4.1.2",
"global-prefix": "^4.0.0",
"minimist": "^1.2.8",
"resolve": "^1.22.2",
"semver": "^7.6.3",
"strip-ansi": "^6.0.1"
},
"bin": {
"ts-patch": "./dist/bin/ts-patch.js",
"tspc": "./dist/bin/tspc.js"
},
"devDependencies": {
"@types/esm": "^3.2.2",
"@types/jest": "^29.5.10",
"@types/minimist": "^1.2.2",
"@types/mock-fs": "^4.13.1",
"@types/node": "^16.11.5",
"@types/resolve": "^1.20.1",
"@types/semver": "^7.3.13",
"@types/shelljs": "^0.8.9",
"esm": "^3.2.25",
"jest": "^29.7.0",
"rimraf": "^5.0.7",
"shelljs": "^0.8.5",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-patch": "^3.3.0",
"tsconfig-paths": "^4.2.0",
"typescript": "5.7.2",
"ts-next": "npm:typescript@beta",
"ts-expose-internals": "npm:[email protected]"
},
"workspaces": {
"packages": [
"projects/path",
"projects/core"
],
"nohoist": [
"jest",
"ts-jest",
"typescript"
]
},
"directories": {
"resources": "./dist/resources"
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "feature",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation",
"hidden": true
},
{
"type": "style",
"section": "Styles",
"hidden": true
},
{
"type": "chore",
"section": "Miscellaneous Chores",
"hidden": true
},
{
"type": "refactor",
"section": "Code Refactoring",
"hidden": true
},
{
"type": "test",
"section": "Tests",
"hidden": true
},
{
"type": "build",
"section": "Build System",
"hidden": true
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": true
},
{
"type": "change",
"section": "Changes"
}
]
}
}