forked from scolladon/sfdx-git-delta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
222 lines (222 loc) · 5.62 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
{
"name": "sfdx-git-delta",
"version": "5.36.0",
"description": "Generate the sfdx content in source format and destructive change from two git commits",
"keyword": [
"salesforce",
"package",
"git",
"sfdx",
"sfdx-plugin"
],
"engines": {
"node": ">=16.20.0"
},
"files": [
"/bin",
"/lib",
"/messages",
"/oclif.manifest.json"
],
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/scolladon/sfdx-git-delta.git"
},
"author": "Sebastien Colladon <[email protected]>",
"dependencies": {
"@salesforce/command": "^5.3.9",
"async": "^3.2.5",
"fast-xml-parser": "^4.3.4",
"fs-extra": "^11.2.0",
"ignore": "^5.3.1",
"isomorphic-git": "^1.25.6",
"lodash": "^4.17.21",
"simple-git": "^3.22.0",
"xmlbuilder2": "^3.1.1"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/scolladon/sfdx-git-delta/issues"
},
"homepage": "https://github.com/scolladon/sfdx-git-delta#readme",
"scripts": {
"build": "wireit",
"clean": "wireit",
"dependencies:reinstall": "git diff HEAD^ HEAD --exit-code --quiet -- ./yarn.lock || yarn",
"dependencies:upgrade": "shx rm -rf yarn.lock ; shx touch yarn.lock ; yarn-upgrade-all ; yarn-audit-fix",
"increment:apiversion": "bash ./tooling/incrementApiVersion.sh",
"lint": "wireit",
"lint:dependencies": "wireit",
"test": "wireit",
"test:build": "yarn clean ; shx rm -rf .yarn/cache node_modules ; yarn && yarn pack && yarn test",
"test:mutation": "wireit",
"test:nut": "wireit",
"test:perf": "node __tests__/perf/bench.mjs | tee perf-result.txt",
"test:unit": "wireit",
"test:unit:debug": "node --inspect node_modules/.bin/jest",
"test:unit:debug:break": "node --inspect-brk node_modules/.bin/jest",
"postpack": "shx rm -f oclif.manifest.json && prettier --write README.md",
"prepack": "yarn build && oclif-dev manifest && oclif-dev readme",
"prepare": "husky install"
},
"wireit": {
"build": {
"dependencies": [
"compile",
"lint"
]
},
"clean": {
"command": "shx rm -rf lib 'reports/*' .nyc_output oclif.manifest.json package.tgz 'sfdx-git-delta-v*.tgz' 'stderr*.txt' 'stdout*.txt' '.stryker-tmp/*' perf-result.txt",
"files": [
"lib",
"reports/*",
".nyc_output",
"oclif.manifest.json",
"package.tgz",
"sfdx-git-delta-v*.tgz",
"stderr*.txt",
"stdout*.txt",
".stryker-tmp/*",
"perf-result.txt"
]
},
"compile": {
"command": "tsc -p . --incremental",
"files": [
"src/**/*.ts",
"**/tsconfig.json",
"messages/**"
],
"output": [
"lib/**",
"*.tsbuildinfo"
],
"clean": "if-file-deleted"
},
"lint": {
"command": "eslint src __tests__ --cache --cache-location .eslintcache",
"files": [
"src/**/*.ts",
"test/**/*.ts",
"messages/**",
"**/.eslint*",
"**/tsconfig.json"
],
"output": []
},
"lint:dependencies": {
"command": "depcheck",
"files": [
"src/**/*.ts",
"test/**/*.ts",
"messages/**",
"**/tsconfig.json",
".depcheckrc"
],
"output": []
},
"test": {
"dependencies": [
"test:unit",
"test:nut"
]
},
"test:mutation": {
"command": "stryker run",
"files": [
"src/**/*.ts",
"test/**/*.ts",
"messages/**",
"**/tsconfig.json"
],
"output": [
".stryker-tmp/**"
],
"dependencies": [
"lint"
]
},
"test:nut": {
"command": "nyc mocha **/*.nut.ts",
"files": [
"src/**/*.ts",
"test/**/*.ts",
"messages/**",
"**/tsconfig.json"
],
"output": [
".nyc_output/**"
],
"dependencies": [
"build"
]
},
"test:unit": {
"command": "jest --coverage",
"files": [
"src/**/*.ts",
"test/**/*.ts",
"messages/**",
"**/tsconfig.json"
],
"output": [
"reports/coverage/**"
],
"dependencies": [
"lint"
]
}
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@jest/globals": "^29.7.0",
"@oclif/dev-cli": "^1.26.10",
"@salesforce/cli-plugins-testkit": "^5.1.9",
"@salesforce/dev-config": "^4.1.0",
"@salesforce/ts-sinon": "^1.4.19",
"@stryker-mutator/core": "^8.2.5",
"@stryker-mutator/jest-runner": "^8.2.5",
"@swc/core": "^1.4.2",
"@types/async": "^3.2.24",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"benchmark": "^2.1.4",
"chai": "^4.3.10",
"depcheck": "^1.4.7",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"prettier": "^3.2.5",
"shx": "^0.3.4",
"sinon": "^17.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"wireit": "^0.14.4",
"yarn-audit-fix": "^10.0.7",
"yarn-upgrade-all": "^0.7.2"
},
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"devPlugins": [
"@oclif/plugin-help"
]
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}