-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
220 lines (220 loc) · 5.54 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
{
"name": "@provartesting/provardx-cli",
"description": "A plugin for the Salesforce CLI to orchestrate testing activities and report quality metrics to Provar Manager",
"version": "1.4.7",
"license": "BSD-3-Clause",
"plugins": [
"@provartesting/provardx-plugins-automation",
"@provartesting/provardx-plugins-manager"
],
"dependencies": {
"@oclif/core": "^3.26.2",
"@salesforce/core": "^6.5.1",
"@salesforce/kit": "^3.0.15",
"@salesforce/sf-plugins-core": "^7.1.4",
"@salesforce/ts-types": "^2.0.9",
"axios": "^1.6.7",
"cli-ux": "^6.0.9",
"fast-xml-parser": "^4.3.6",
"jsonschema": "^1.4.1",
"node-stream-zip": "^1.15.0",
"@provartesting/provardx-plugins-utils": "1.3.1",
"@provartesting/provardx-plugins-automation": "1.2.1",
"@provartesting/provardx-plugins-manager": "1.3.1",
"sync-request": "^6.1.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@oclif/plugin-command-snapshot": "^5.0.2",
"@salesforce/cli-plugins-testkit": "^5.1.7",
"@salesforce/dev-scripts": "^8.3.0",
"@types/unzipper": "^0.10.9",
"eslint-plugin-sf-plugin": "^1.17.2",
"mochawesome": "^7.1.3",
"oclif": "^4.3.4",
"shx": "0.3.4",
"sinon": "10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"wireit": "^0.14.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/lib",
"/messages",
"/oclif.manifest.json"
],
"keywords": [
"force",
"salesforce",
"salesforcedx",
"sf",
"sf-plugin",
"sfdx",
"sfdx-plugin"
],
"oclif": {
"commands": "./lib/commands",
"bin": "sf",
"topicSeparator": " ",
"devPlugins": [
"@oclif/plugin-help"
],
"plugins": [
"@provartesting/provardx-plugins-automation",
"@provartesting/provardx-plugins-manager"
],
"topics": {
"provar": {
"description": "CLI commands to interact with Provar.",
"subtopics": {
"automation": {
"description": "These commands are used to interact with Provar Automation.",
"subtopics": {
"config": {
"description": "commands to generate and manipulate provardx-properties file."
},
"subtopics": {
"metadata": {
"description": "commands to download metadata for required connections."
}
},
"test": {
"description": "Operations related to test run."
},
"project": {
"description": "Compile the project."
}
}
}
}
}
},
"flexibleTaxonomy": true
},
"scripts": {
"build": "wireit",
"clean": "sf-clean",
"clean-all": "sf-clean all",
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json",
"compile": "wireit",
"docs": "sf-docs",
"format": "wireit",
"lint": "wireit",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "sf-prepack",
"test": "wireit",
"test:nuts": "nyc mocha \"**/*generate.nut.ts\" \"**/*permission.nut.ts\" \"**/*load.nut.ts\" \"**/*validate.nut.ts\" \"**/*set.nut.ts\" \"**/*get.nut.ts\" --slow 4500 --timeout 600000 --reporter mochawesome",
"test:only": "wireit",
"version": "oclif readme"
},
"publishConfig": {
"access": "public"
},
"wireit": {
"build": {
"dependencies": [
"compile",
"lint"
]
},
"compile": {
"command": "tsc -p . --pretty --incremental",
"files": [
"src/**/*.ts",
"**/tsconfig.json",
"messages/**"
],
"output": [
"lib/**",
"*.tsbuildinfo"
],
"clean": "if-file-deleted"
},
"format": {
"command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"",
"files": [
"src/**/*.ts",
"test/**/*.ts",
"schemas/**/*.json",
"command-snapshot.json",
".prettier*"
],
"output": []
},
"lint": {
"command": "eslint src test --color --cache --cache-location .eslintcache",
"files": [
"src/**/*.ts",
"test/**/*.ts",
"messages/**",
"**/.eslint*",
"**/tsconfig.json"
],
"output": []
},
"test:compile": {
"command": "tsc -p \"./test\" --pretty",
"files": [
"test/**/*.ts",
"**/tsconfig.json"
],
"output": []
},
"test": {
"dependencies": [
"test:compile",
"test:only",
"lint"
]
},
"test:only": {
"command": "nyc mocha \"test/**/*.test.ts\"",
"env": {
"FORCE_COLOR": "2"
},
"files": [
"test/**/*.ts",
"src/**/*.ts",
"**/tsconfig.json",
".mocha*",
"!*.nut.ts",
".nycrc"
],
"output": []
},
"test:command-reference": {
"command": "\"./bin/dev\" commandreference:generate --erroronwarnings",
"files": [
"src/**/*.ts",
"messages/**",
"package.json"
],
"output": [
"tmp/root"
]
},
"test:deprecation-policy": {
"command": "\"./bin/dev\" snapshot:compare",
"files": [
"src/**/*.ts"
],
"output": [],
"dependencies": [
"compile"
]
},
"test:json-schema": {
"command": "\"./bin/dev\" schema:compare",
"files": [
"src/**/*.ts",
"schemas"
],
"output": []
}
},
"exports": "./lib/index.js",
"type": "module"
}