appium-uiautomator2-driver 2.4.6 → 2.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.js +2 -4
- package/build/lib/commands/actions.js +2 -4
- package/build/lib/commands/alert.js +2 -4
- package/build/lib/commands/battery.js +2 -4
- package/build/lib/commands/element.js +2 -4
- package/build/lib/commands/find.js +2 -4
- package/build/lib/commands/general.js +2 -4
- package/build/lib/commands/gestures.js +2 -4
- package/build/lib/commands/index.js +2 -4
- package/build/lib/commands/screenshot.js +2 -4
- package/build/lib/commands/touch.js +2 -4
- package/build/lib/commands/viewport.js +2 -4
- package/build/lib/css-converter.js +2 -4
- package/build/lib/desired-caps.js +2 -4
- package/build/lib/driver.js +7 -4
- package/build/lib/extensions.js +2 -4
- package/build/lib/helpers.js +2 -4
- package/build/lib/logger.js +2 -4
- package/build/lib/uiautomator2.js +2 -4
- package/lib/driver.js +4 -0
- package/npm-shrinkwrap.json +752 -476
- package/package.json +39 -35
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,22 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "appium-uiautomator2-driver",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.9",
|
|
4
4
|
"lockfileVersion": 2,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "appium-uiautomator2-driver",
|
|
9
|
-
"version": "2.4.
|
|
10
|
-
"engines": [
|
|
11
|
-
"node"
|
|
12
|
-
],
|
|
9
|
+
"version": "2.4.9",
|
|
13
10
|
"license": "Apache-2.0",
|
|
14
11
|
"dependencies": {
|
|
15
12
|
"@babel/runtime": "^7.0.0",
|
|
16
|
-
"appium-adb": "^9.10.
|
|
17
|
-
"appium-android-driver": "^5.2.
|
|
18
|
-
"appium-chromedriver": "^5.
|
|
19
|
-
"appium-uiautomator2-server": "^5.
|
|
13
|
+
"appium-adb": "^9.10.9",
|
|
14
|
+
"appium-android-driver": "^5.2.12",
|
|
15
|
+
"appium-chromedriver": "^5.2.1",
|
|
16
|
+
"appium-uiautomator2-server": "^5.7.0",
|
|
20
17
|
"asyncbox": "^2.3.1",
|
|
21
18
|
"axios": "^0.x",
|
|
22
19
|
"bluebird": "^3.5.1",
|
|
@@ -24,24 +21,26 @@
|
|
|
24
21
|
"lodash": "^4.17.4",
|
|
25
22
|
"portscanner": "^2.2.0",
|
|
26
23
|
"source-map-support": "^0.x",
|
|
27
|
-
"teen_process": "^
|
|
24
|
+
"teen_process": "^2.0.0"
|
|
28
25
|
},
|
|
29
26
|
"devDependencies": {
|
|
30
27
|
"@appium/eslint-config-appium": "^6.0.0",
|
|
31
|
-
"@appium/gulp-plugins": "^7.0.0",
|
|
32
28
|
"@appium/test-support": "^1.0.0",
|
|
33
|
-
"@babel/
|
|
29
|
+
"@babel/cli": "^7.18.10",
|
|
30
|
+
"@babel/core": "^7.18.10",
|
|
31
|
+
"@babel/eslint-parser": "^7.18.9",
|
|
32
|
+
"@babel/plugin-transform-runtime": "^7.18.10",
|
|
33
|
+
"@babel/preset-env": "^7.18.10",
|
|
34
|
+
"@babel/register": "^7.18.9",
|
|
34
35
|
"@semantic-release/git": "^10.0.1",
|
|
35
36
|
"@xmldom/xmldom": "^0.x",
|
|
36
|
-
"android-apidemos": "^4.
|
|
37
|
+
"android-apidemos": "^4.1.1",
|
|
38
|
+
"babel-plugin-source-map-support": "^2.2.0",
|
|
37
39
|
"chai": "^4.1.0",
|
|
38
40
|
"chai-as-promised": "^7.1.1",
|
|
39
41
|
"eslint-config-prettier": "^8.5.0",
|
|
40
|
-
"
|
|
41
|
-
"gulp": "^4.0.0",
|
|
42
|
+
"lint-staged": "^13.0.3",
|
|
42
43
|
"mocha": "^10.0.0",
|
|
43
|
-
"mocha-junit-reporter": "^2.0.0",
|
|
44
|
-
"mocha-multi-reporters": "^1.1.7",
|
|
45
44
|
"pngjs": "^6.0.0",
|
|
46
45
|
"pre-commit": "^1.2.2",
|
|
47
46
|
"rimraf": "^3.0.0",
|
|
@@ -51,16 +50,20 @@
|
|
|
51
50
|
"webdriverio": "^7.0.0",
|
|
52
51
|
"xpath": "^0.x"
|
|
53
52
|
},
|
|
53
|
+
"engines": {
|
|
54
|
+
"node": ">=14",
|
|
55
|
+
"npm": ">=8"
|
|
56
|
+
},
|
|
54
57
|
"peerDependencies": {
|
|
55
58
|
"appium": "^2.0.0-beta.40"
|
|
56
59
|
}
|
|
57
60
|
},
|
|
58
61
|
"node_modules/@appium/base-driver": {
|
|
59
|
-
"version": "8.
|
|
62
|
+
"version": "8.7.0",
|
|
60
63
|
"extraneous": true,
|
|
61
64
|
"license": "Apache-2.0",
|
|
62
65
|
"dependencies": {
|
|
63
|
-
"@appium/support": "^2.59.
|
|
66
|
+
"@appium/support": "^2.59.5",
|
|
64
67
|
"@babel/runtime": "7.18.9",
|
|
65
68
|
"@colors/colors": "1.5.0",
|
|
66
69
|
"@types/async-lock": "1.1.5",
|
|
@@ -77,66 +80,83 @@
|
|
|
77
80
|
"express": "4.18.1",
|
|
78
81
|
"http-status-codes": "2.2.0",
|
|
79
82
|
"lodash": "4.17.21",
|
|
80
|
-
"lru-cache": "7.13.
|
|
83
|
+
"lru-cache": "7.13.2",
|
|
81
84
|
"method-override": "3.0.0",
|
|
82
85
|
"morgan": "1.10.0",
|
|
83
86
|
"serve-favicon": "2.5.0",
|
|
84
87
|
"source-map-support": "0.5.21",
|
|
85
|
-
"type-fest": "2.
|
|
88
|
+
"type-fest": "2.18.0",
|
|
86
89
|
"validate.js": "0.13.1"
|
|
87
90
|
},
|
|
88
91
|
"engines": {
|
|
89
92
|
"node": ">=14",
|
|
90
|
-
"npm": ">=
|
|
93
|
+
"npm": ">=8"
|
|
91
94
|
}
|
|
92
95
|
},
|
|
93
96
|
"node_modules/@appium/base-plugin": {
|
|
94
|
-
"version": "1.10.
|
|
97
|
+
"version": "1.10.2",
|
|
95
98
|
"extraneous": true,
|
|
96
99
|
"license": "Apache-2.0",
|
|
97
100
|
"dependencies": {
|
|
98
|
-
"@appium/support": "^2.59.
|
|
101
|
+
"@appium/support": "^2.59.5"
|
|
99
102
|
},
|
|
100
103
|
"engines": {
|
|
101
104
|
"node": ">=14",
|
|
102
|
-
"npm": ">=
|
|
105
|
+
"npm": ">=8"
|
|
103
106
|
}
|
|
104
107
|
},
|
|
105
108
|
"node_modules/@appium/docutils": {
|
|
106
|
-
"version": "0.0.
|
|
109
|
+
"version": "0.0.10",
|
|
107
110
|
"extraneous": true,
|
|
108
111
|
"license": "Apache-2.0",
|
|
109
112
|
"dependencies": {
|
|
110
|
-
"@appium/support": "^2.59.
|
|
113
|
+
"@appium/support": "^2.59.5",
|
|
111
114
|
"@babel/runtime": "7.18.9",
|
|
112
115
|
"docdash": "1.2.0",
|
|
113
116
|
"jsdoc": "3.6.11",
|
|
114
|
-
"jsdoc-plugin-typescript": "2.1.
|
|
117
|
+
"jsdoc-plugin-typescript": "2.1.1",
|
|
115
118
|
"source-map-support": "0.5.21",
|
|
116
119
|
"teen_process": "1.16.0"
|
|
117
120
|
},
|
|
118
121
|
"engines": {
|
|
119
122
|
"node": ">=14",
|
|
120
|
-
"npm": ">=
|
|
123
|
+
"npm": ">=8"
|
|
121
124
|
}
|
|
122
125
|
},
|
|
123
|
-
"node_modules/@appium/
|
|
124
|
-
"version": "
|
|
126
|
+
"node_modules/@appium/docutils/node_modules/teen_process": {
|
|
127
|
+
"version": "1.16.0",
|
|
128
|
+
"engines": [
|
|
129
|
+
"node"
|
|
130
|
+
],
|
|
125
131
|
"extraneous": true,
|
|
126
132
|
"license": "Apache-2.0",
|
|
133
|
+
"dependencies": {
|
|
134
|
+
"@babel/runtime": "^7.0.0",
|
|
135
|
+
"bluebird": "^3.5.1",
|
|
136
|
+
"lodash": "^4.17.4",
|
|
137
|
+
"shell-quote": "^1.4.3",
|
|
138
|
+
"source-map-support": "^0.5.3",
|
|
139
|
+
"which": "^2.0.2"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"node_modules/@appium/schema": {
|
|
143
|
+
"version": "0.0.9",
|
|
144
|
+
"license": "Apache-2.0",
|
|
127
145
|
"dependencies": {
|
|
128
146
|
"@types/json-schema": "7.0.11",
|
|
129
|
-
"json-schema": "0.4.0"
|
|
147
|
+
"json-schema": "0.4.0",
|
|
148
|
+
"source-map-support": "0.5.21"
|
|
130
149
|
},
|
|
131
150
|
"engines": {
|
|
132
151
|
"node": ">=14",
|
|
133
|
-
"npm": ">=
|
|
152
|
+
"npm": ">=8"
|
|
134
153
|
}
|
|
135
154
|
},
|
|
136
155
|
"node_modules/@appium/support": {
|
|
137
|
-
"version": "2.59.
|
|
156
|
+
"version": "2.59.5",
|
|
138
157
|
"license": "Apache-2.0",
|
|
139
158
|
"dependencies": {
|
|
159
|
+
"@appium/types": "^0.4.0",
|
|
140
160
|
"@babel/runtime": "7.18.9",
|
|
141
161
|
"@colors/colors": "1.5.0",
|
|
142
162
|
"@types/archiver": "5.3.1",
|
|
@@ -190,18 +210,90 @@
|
|
|
190
210
|
"source-map-support": "0.5.21",
|
|
191
211
|
"supports-color": "8.1.1",
|
|
192
212
|
"teen_process": "1.16.0",
|
|
193
|
-
"type-fest": "2.
|
|
213
|
+
"type-fest": "2.18.0",
|
|
194
214
|
"uuid": "8.3.2",
|
|
195
215
|
"which": "2.0.2",
|
|
196
216
|
"yauzl": "2.10.0"
|
|
197
217
|
},
|
|
198
218
|
"engines": {
|
|
199
219
|
"node": ">=14",
|
|
200
|
-
"npm": ">=
|
|
220
|
+
"npm": ">=8"
|
|
221
|
+
}
|
|
222
|
+
},
|
|
223
|
+
"node_modules/@appium/support/node_modules/brace-expansion": {
|
|
224
|
+
"version": "2.0.1",
|
|
225
|
+
"license": "MIT",
|
|
226
|
+
"dependencies": {
|
|
227
|
+
"balanced-match": "^1.0.0"
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"node_modules/@appium/support/node_modules/glob": {
|
|
231
|
+
"version": "8.0.3",
|
|
232
|
+
"license": "ISC",
|
|
233
|
+
"dependencies": {
|
|
234
|
+
"fs.realpath": "^1.0.0",
|
|
235
|
+
"inflight": "^1.0.4",
|
|
236
|
+
"inherits": "2",
|
|
237
|
+
"minimatch": "^5.0.1",
|
|
238
|
+
"once": "^1.3.0"
|
|
239
|
+
},
|
|
240
|
+
"engines": {
|
|
241
|
+
"node": ">=12"
|
|
242
|
+
},
|
|
243
|
+
"funding": {
|
|
244
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
"node_modules/@appium/support/node_modules/lru-cache": {
|
|
248
|
+
"version": "6.0.0",
|
|
249
|
+
"license": "ISC",
|
|
250
|
+
"dependencies": {
|
|
251
|
+
"yallist": "^4.0.0"
|
|
252
|
+
},
|
|
253
|
+
"engines": {
|
|
254
|
+
"node": ">=10"
|
|
255
|
+
}
|
|
256
|
+
},
|
|
257
|
+
"node_modules/@appium/support/node_modules/minimatch": {
|
|
258
|
+
"version": "5.1.0",
|
|
259
|
+
"license": "ISC",
|
|
260
|
+
"dependencies": {
|
|
261
|
+
"brace-expansion": "^2.0.1"
|
|
262
|
+
},
|
|
263
|
+
"engines": {
|
|
264
|
+
"node": ">=10"
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
"node_modules/@appium/support/node_modules/semver": {
|
|
268
|
+
"version": "7.3.7",
|
|
269
|
+
"license": "ISC",
|
|
270
|
+
"dependencies": {
|
|
271
|
+
"lru-cache": "^6.0.0"
|
|
272
|
+
},
|
|
273
|
+
"bin": {
|
|
274
|
+
"semver": "bin/semver.js"
|
|
275
|
+
},
|
|
276
|
+
"engines": {
|
|
277
|
+
"node": ">=10"
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"node_modules/@appium/support/node_modules/teen_process": {
|
|
281
|
+
"version": "1.16.0",
|
|
282
|
+
"engines": [
|
|
283
|
+
"node"
|
|
284
|
+
],
|
|
285
|
+
"license": "Apache-2.0",
|
|
286
|
+
"dependencies": {
|
|
287
|
+
"@babel/runtime": "^7.0.0",
|
|
288
|
+
"bluebird": "^3.5.1",
|
|
289
|
+
"lodash": "^4.17.4",
|
|
290
|
+
"shell-quote": "^1.4.3",
|
|
291
|
+
"source-map-support": "^0.5.3",
|
|
292
|
+
"which": "^2.0.2"
|
|
201
293
|
}
|
|
202
294
|
},
|
|
203
295
|
"node_modules/@appium/test-support": {
|
|
204
|
-
"version": "1.
|
|
296
|
+
"version": "1.5.0",
|
|
205
297
|
"dev": true,
|
|
206
298
|
"license": "Apache-2.0",
|
|
207
299
|
"dependencies": {
|
|
@@ -223,26 +315,41 @@
|
|
|
223
315
|
},
|
|
224
316
|
"engines": {
|
|
225
317
|
"node": ">=14",
|
|
226
|
-
"npm": ">=
|
|
318
|
+
"npm": ">=8"
|
|
227
319
|
},
|
|
228
320
|
"peerDependencies": {
|
|
229
321
|
"appium": "^2.0.0-beta.35"
|
|
230
322
|
}
|
|
231
323
|
},
|
|
324
|
+
"node_modules/@appium/test-support/node_modules/teen_process": {
|
|
325
|
+
"version": "1.16.0",
|
|
326
|
+
"dev": true,
|
|
327
|
+
"engines": [
|
|
328
|
+
"node"
|
|
329
|
+
],
|
|
330
|
+
"license": "Apache-2.0",
|
|
331
|
+
"dependencies": {
|
|
332
|
+
"@babel/runtime": "^7.0.0",
|
|
333
|
+
"bluebird": "^3.5.1",
|
|
334
|
+
"lodash": "^4.17.4",
|
|
335
|
+
"shell-quote": "^1.4.3",
|
|
336
|
+
"source-map-support": "^0.5.3",
|
|
337
|
+
"which": "^2.0.2"
|
|
338
|
+
}
|
|
339
|
+
},
|
|
232
340
|
"node_modules/@appium/types": {
|
|
233
|
-
"version": "0.
|
|
234
|
-
"extraneous": true,
|
|
341
|
+
"version": "0.4.0",
|
|
235
342
|
"license": "Apache-2.0",
|
|
236
343
|
"dependencies": {
|
|
237
|
-
"@appium/schema": "^0.0.
|
|
344
|
+
"@appium/schema": "^0.0.9",
|
|
238
345
|
"@types/express": "4.17.13",
|
|
239
346
|
"@types/npmlog": "4.1.4",
|
|
240
347
|
"@wdio/types": "7.20.7",
|
|
241
|
-
"type-fest": "2.
|
|
348
|
+
"type-fest": "2.18.0"
|
|
242
349
|
},
|
|
243
350
|
"engines": {
|
|
244
351
|
"node": ">=14",
|
|
245
|
-
"npm": ">=
|
|
352
|
+
"npm": ">=8"
|
|
246
353
|
}
|
|
247
354
|
},
|
|
248
355
|
"node_modules/@babel/code-frame": {
|
|
@@ -275,7 +382,7 @@
|
|
|
275
382
|
}
|
|
276
383
|
},
|
|
277
384
|
"node_modules/@babel/parser": {
|
|
278
|
-
"version": "7.18.
|
|
385
|
+
"version": "7.18.13",
|
|
279
386
|
"extraneous": true,
|
|
280
387
|
"license": "MIT",
|
|
281
388
|
"bin": {
|
|
@@ -782,7 +889,6 @@
|
|
|
782
889
|
},
|
|
783
890
|
"node_modules/@sindresorhus/is": {
|
|
784
891
|
"version": "4.6.0",
|
|
785
|
-
"extraneous": true,
|
|
786
892
|
"license": "MIT",
|
|
787
893
|
"engines": {
|
|
788
894
|
"node": ">=10"
|
|
@@ -824,7 +930,6 @@
|
|
|
824
930
|
},
|
|
825
931
|
"node_modules/@szmarczak/http-timer": {
|
|
826
932
|
"version": "4.0.6",
|
|
827
|
-
"extraneous": true,
|
|
828
933
|
"license": "MIT",
|
|
829
934
|
"dependencies": {
|
|
830
935
|
"defer-to-connect": "^2.0.0"
|
|
@@ -864,7 +969,6 @@
|
|
|
864
969
|
},
|
|
865
970
|
"node_modules/@types/body-parser": {
|
|
866
971
|
"version": "1.19.2",
|
|
867
|
-
"extraneous": true,
|
|
868
972
|
"license": "MIT",
|
|
869
973
|
"dependencies": {
|
|
870
974
|
"@types/connect": "*",
|
|
@@ -873,7 +977,6 @@
|
|
|
873
977
|
},
|
|
874
978
|
"node_modules/@types/cacheable-request": {
|
|
875
979
|
"version": "6.0.2",
|
|
876
|
-
"extraneous": true,
|
|
877
980
|
"license": "MIT",
|
|
878
981
|
"dependencies": {
|
|
879
982
|
"@types/http-cache-semantics": "*",
|
|
@@ -884,7 +987,6 @@
|
|
|
884
987
|
},
|
|
885
988
|
"node_modules/@types/connect": {
|
|
886
989
|
"version": "3.4.35",
|
|
887
|
-
"extraneous": true,
|
|
888
990
|
"license": "MIT",
|
|
889
991
|
"dependencies": {
|
|
890
992
|
"@types/node": "*"
|
|
@@ -892,7 +994,6 @@
|
|
|
892
994
|
},
|
|
893
995
|
"node_modules/@types/express": {
|
|
894
996
|
"version": "4.17.13",
|
|
895
|
-
"extraneous": true,
|
|
896
997
|
"license": "MIT",
|
|
897
998
|
"dependencies": {
|
|
898
999
|
"@types/body-parser": "*",
|
|
@@ -903,7 +1004,6 @@
|
|
|
903
1004
|
},
|
|
904
1005
|
"node_modules/@types/express-serve-static-core": {
|
|
905
1006
|
"version": "4.17.30",
|
|
906
|
-
"extraneous": true,
|
|
907
1007
|
"license": "MIT",
|
|
908
1008
|
"dependencies": {
|
|
909
1009
|
"@types/node": "*",
|
|
@@ -930,7 +1030,6 @@
|
|
|
930
1030
|
},
|
|
931
1031
|
"node_modules/@types/http-cache-semantics": {
|
|
932
1032
|
"version": "4.0.1",
|
|
933
|
-
"extraneous": true,
|
|
934
1033
|
"license": "MIT"
|
|
935
1034
|
},
|
|
936
1035
|
"node_modules/@types/jsftp": {
|
|
@@ -942,17 +1041,14 @@
|
|
|
942
1041
|
},
|
|
943
1042
|
"node_modules/@types/json-buffer": {
|
|
944
1043
|
"version": "3.0.0",
|
|
945
|
-
"extraneous": true,
|
|
946
1044
|
"license": "MIT"
|
|
947
1045
|
},
|
|
948
1046
|
"node_modules/@types/json-schema": {
|
|
949
1047
|
"version": "7.0.11",
|
|
950
|
-
"extraneous": true,
|
|
951
1048
|
"license": "MIT"
|
|
952
1049
|
},
|
|
953
1050
|
"node_modules/@types/keyv": {
|
|
954
1051
|
"version": "3.1.4",
|
|
955
|
-
"extraneous": true,
|
|
956
1052
|
"license": "MIT",
|
|
957
1053
|
"dependencies": {
|
|
958
1054
|
"@types/node": "*"
|
|
@@ -997,12 +1093,11 @@
|
|
|
997
1093
|
}
|
|
998
1094
|
},
|
|
999
1095
|
"node_modules/@types/mime": {
|
|
1000
|
-
"version": "
|
|
1001
|
-
"extraneous": true,
|
|
1096
|
+
"version": "3.0.1",
|
|
1002
1097
|
"license": "MIT"
|
|
1003
1098
|
},
|
|
1004
1099
|
"node_modules/@types/minimatch": {
|
|
1005
|
-
"version": "
|
|
1100
|
+
"version": "5.1.2",
|
|
1006
1101
|
"license": "MIT"
|
|
1007
1102
|
},
|
|
1008
1103
|
"node_modules/@types/mv": {
|
|
@@ -1017,7 +1112,7 @@
|
|
|
1017
1112
|
}
|
|
1018
1113
|
},
|
|
1019
1114
|
"node_modules/@types/node": {
|
|
1020
|
-
"version": "18.
|
|
1115
|
+
"version": "18.7.14",
|
|
1021
1116
|
"license": "MIT"
|
|
1022
1117
|
},
|
|
1023
1118
|
"node_modules/@types/normalize-package-data": {
|
|
@@ -1041,17 +1136,14 @@
|
|
|
1041
1136
|
},
|
|
1042
1137
|
"node_modules/@types/qs": {
|
|
1043
1138
|
"version": "6.9.7",
|
|
1044
|
-
"extraneous": true,
|
|
1045
1139
|
"license": "MIT"
|
|
1046
1140
|
},
|
|
1047
1141
|
"node_modules/@types/range-parser": {
|
|
1048
1142
|
"version": "1.2.4",
|
|
1049
|
-
"extraneous": true,
|
|
1050
1143
|
"license": "MIT"
|
|
1051
1144
|
},
|
|
1052
1145
|
"node_modules/@types/responselike": {
|
|
1053
1146
|
"version": "1.0.0",
|
|
1054
|
-
"extraneous": true,
|
|
1055
1147
|
"license": "MIT",
|
|
1056
1148
|
"dependencies": {
|
|
1057
1149
|
"@types/node": "*"
|
|
@@ -1078,11 +1170,10 @@
|
|
|
1078
1170
|
}
|
|
1079
1171
|
},
|
|
1080
1172
|
"node_modules/@types/serve-static": {
|
|
1081
|
-
"version": "1.
|
|
1082
|
-
"extraneous": true,
|
|
1173
|
+
"version": "1.15.0",
|
|
1083
1174
|
"license": "MIT",
|
|
1084
1175
|
"dependencies": {
|
|
1085
|
-
"@types/mime": "
|
|
1176
|
+
"@types/mime": "*",
|
|
1086
1177
|
"@types/node": "*"
|
|
1087
1178
|
}
|
|
1088
1179
|
},
|
|
@@ -1112,7 +1203,6 @@
|
|
|
1112
1203
|
},
|
|
1113
1204
|
"node_modules/@wdio/types": {
|
|
1114
1205
|
"version": "7.20.7",
|
|
1115
|
-
"extraneous": true,
|
|
1116
1206
|
"license": "MIT",
|
|
1117
1207
|
"dependencies": {
|
|
1118
1208
|
"@types/node": "^18.0.0",
|
|
@@ -1216,10 +1306,7 @@
|
|
|
1216
1306
|
"license": "MIT"
|
|
1217
1307
|
},
|
|
1218
1308
|
"node_modules/appium-adb": {
|
|
1219
|
-
"version": "9.10.
|
|
1220
|
-
"engines": [
|
|
1221
|
-
"node"
|
|
1222
|
-
],
|
|
1309
|
+
"version": "9.10.9",
|
|
1223
1310
|
"license": "Apache-2.0",
|
|
1224
1311
|
"dependencies": {
|
|
1225
1312
|
"@appium/support": "^2.55.3",
|
|
@@ -1233,24 +1320,48 @@
|
|
|
1233
1320
|
"lru-cache": "^7.3.0",
|
|
1234
1321
|
"semver": "^7.0.0",
|
|
1235
1322
|
"source-map-support": "^0.x",
|
|
1236
|
-
"teen_process": "^
|
|
1323
|
+
"teen_process": "^2.0.1",
|
|
1237
1324
|
"utf7": "^1.0.2"
|
|
1325
|
+
},
|
|
1326
|
+
"engines": {
|
|
1327
|
+
"node": ">=14",
|
|
1328
|
+
"npm": ">=8"
|
|
1329
|
+
}
|
|
1330
|
+
},
|
|
1331
|
+
"node_modules/appium-adb/node_modules/semver": {
|
|
1332
|
+
"version": "7.3.7",
|
|
1333
|
+
"license": "ISC",
|
|
1334
|
+
"dependencies": {
|
|
1335
|
+
"lru-cache": "^6.0.0"
|
|
1336
|
+
},
|
|
1337
|
+
"bin": {
|
|
1338
|
+
"semver": "bin/semver.js"
|
|
1339
|
+
},
|
|
1340
|
+
"engines": {
|
|
1341
|
+
"node": ">=10"
|
|
1342
|
+
}
|
|
1343
|
+
},
|
|
1344
|
+
"node_modules/appium-adb/node_modules/semver/node_modules/lru-cache": {
|
|
1345
|
+
"version": "6.0.0",
|
|
1346
|
+
"license": "ISC",
|
|
1347
|
+
"dependencies": {
|
|
1348
|
+
"yallist": "^4.0.0"
|
|
1349
|
+
},
|
|
1350
|
+
"engines": {
|
|
1351
|
+
"node": ">=10"
|
|
1238
1352
|
}
|
|
1239
1353
|
},
|
|
1240
1354
|
"node_modules/appium-android-driver": {
|
|
1241
|
-
"version": "5.2.
|
|
1242
|
-
"engines": [
|
|
1243
|
-
"node"
|
|
1244
|
-
],
|
|
1355
|
+
"version": "5.2.12",
|
|
1245
1356
|
"license": "Apache-2.0",
|
|
1246
1357
|
"dependencies": {
|
|
1247
1358
|
"@babel/runtime": "^7.0.0",
|
|
1248
|
-
"appium-adb": "^9.10.
|
|
1249
|
-
"appium-chromedriver": "^5.
|
|
1359
|
+
"appium-adb": "^9.10.9",
|
|
1360
|
+
"appium-chromedriver": "^5.2.0",
|
|
1250
1361
|
"asyncbox": "^2.8.0",
|
|
1251
1362
|
"axios": "^0.x",
|
|
1252
1363
|
"bluebird": "^3.4.7",
|
|
1253
|
-
"io.appium.settings": "^4.1
|
|
1364
|
+
"io.appium.settings": "^4.2.1",
|
|
1254
1365
|
"jimp": "^0.x",
|
|
1255
1366
|
"lodash": "^4.17.4",
|
|
1256
1367
|
"lru-cache": "^7.3.0",
|
|
@@ -1261,15 +1372,42 @@
|
|
|
1261
1372
|
"semver": "^7.0.0",
|
|
1262
1373
|
"shared-preferences-builder": "^0.x",
|
|
1263
1374
|
"source-map-support": "^0.x",
|
|
1264
|
-
"teen_process": "^
|
|
1375
|
+
"teen_process": "^2.0.0",
|
|
1265
1376
|
"ws": "^8.0.0"
|
|
1266
1377
|
},
|
|
1378
|
+
"engines": {
|
|
1379
|
+
"node": ">=14",
|
|
1380
|
+
"npm": ">=8"
|
|
1381
|
+
},
|
|
1267
1382
|
"peerDependencies": {
|
|
1268
1383
|
"appium": "^2.0.0-beta.40"
|
|
1269
1384
|
}
|
|
1270
1385
|
},
|
|
1386
|
+
"node_modules/appium-android-driver/node_modules/semver": {
|
|
1387
|
+
"version": "7.3.7",
|
|
1388
|
+
"license": "ISC",
|
|
1389
|
+
"dependencies": {
|
|
1390
|
+
"lru-cache": "^6.0.0"
|
|
1391
|
+
},
|
|
1392
|
+
"bin": {
|
|
1393
|
+
"semver": "bin/semver.js"
|
|
1394
|
+
},
|
|
1395
|
+
"engines": {
|
|
1396
|
+
"node": ">=10"
|
|
1397
|
+
}
|
|
1398
|
+
},
|
|
1399
|
+
"node_modules/appium-android-driver/node_modules/semver/node_modules/lru-cache": {
|
|
1400
|
+
"version": "6.0.0",
|
|
1401
|
+
"license": "ISC",
|
|
1402
|
+
"dependencies": {
|
|
1403
|
+
"yallist": "^4.0.0"
|
|
1404
|
+
},
|
|
1405
|
+
"engines": {
|
|
1406
|
+
"node": ">=10"
|
|
1407
|
+
}
|
|
1408
|
+
},
|
|
1271
1409
|
"node_modules/appium-chromedriver": {
|
|
1272
|
-
"version": "5.1
|
|
1410
|
+
"version": "5.2.1",
|
|
1273
1411
|
"hasInstallScript": true,
|
|
1274
1412
|
"license": "Apache-2.0",
|
|
1275
1413
|
"dependencies": {
|
|
@@ -1278,25 +1416,52 @@
|
|
|
1278
1416
|
"asyncbox": "^2.0.2",
|
|
1279
1417
|
"axios": "^0.x",
|
|
1280
1418
|
"bluebird": "^3.5.1",
|
|
1281
|
-
"compare-versions": "^
|
|
1419
|
+
"compare-versions": "^5.0.0",
|
|
1282
1420
|
"fancy-log": "^2.0.0",
|
|
1283
1421
|
"lodash": "^4.17.4",
|
|
1284
1422
|
"semver": "^7.0.0",
|
|
1285
1423
|
"source-map-support": "^0.x",
|
|
1286
|
-
"teen_process": "^
|
|
1424
|
+
"teen_process": "^2.0.0",
|
|
1287
1425
|
"xpath": "^0.x"
|
|
1288
1426
|
},
|
|
1289
1427
|
"engines": {
|
|
1290
1428
|
"node": ">=14",
|
|
1291
|
-
"npm": ">=
|
|
1429
|
+
"npm": ">=8"
|
|
1292
1430
|
},
|
|
1293
1431
|
"peerDependencies": {
|
|
1294
1432
|
"appium": "^2.0.0-beta.40"
|
|
1295
1433
|
}
|
|
1296
1434
|
},
|
|
1435
|
+
"node_modules/appium-chromedriver/node_modules/lru-cache": {
|
|
1436
|
+
"version": "6.0.0",
|
|
1437
|
+
"license": "ISC",
|
|
1438
|
+
"dependencies": {
|
|
1439
|
+
"yallist": "^4.0.0"
|
|
1440
|
+
},
|
|
1441
|
+
"engines": {
|
|
1442
|
+
"node": ">=10"
|
|
1443
|
+
}
|
|
1444
|
+
},
|
|
1445
|
+
"node_modules/appium-chromedriver/node_modules/semver": {
|
|
1446
|
+
"version": "7.3.7",
|
|
1447
|
+
"license": "ISC",
|
|
1448
|
+
"dependencies": {
|
|
1449
|
+
"lru-cache": "^6.0.0"
|
|
1450
|
+
},
|
|
1451
|
+
"bin": {
|
|
1452
|
+
"semver": "bin/semver.js"
|
|
1453
|
+
},
|
|
1454
|
+
"engines": {
|
|
1455
|
+
"node": ">=10"
|
|
1456
|
+
}
|
|
1457
|
+
},
|
|
1297
1458
|
"node_modules/appium-uiautomator2-server": {
|
|
1298
|
-
"version": "5.
|
|
1299
|
-
"license": "Apache-2.0"
|
|
1459
|
+
"version": "5.7.0",
|
|
1460
|
+
"license": "Apache-2.0",
|
|
1461
|
+
"engines": {
|
|
1462
|
+
"node": ">=14",
|
|
1463
|
+
"npm": ">=8"
|
|
1464
|
+
}
|
|
1300
1465
|
},
|
|
1301
1466
|
"node_modules/aproba": {
|
|
1302
1467
|
"version": "2.0.0",
|
|
@@ -1337,24 +1502,6 @@
|
|
|
1337
1502
|
"node": ">= 6"
|
|
1338
1503
|
}
|
|
1339
1504
|
},
|
|
1340
|
-
"node_modules/archiver-utils/node_modules/glob": {
|
|
1341
|
-
"version": "7.2.3",
|
|
1342
|
-
"license": "ISC",
|
|
1343
|
-
"dependencies": {
|
|
1344
|
-
"fs.realpath": "^1.0.0",
|
|
1345
|
-
"inflight": "^1.0.4",
|
|
1346
|
-
"inherits": "2",
|
|
1347
|
-
"minimatch": "^3.1.1",
|
|
1348
|
-
"once": "^1.3.0",
|
|
1349
|
-
"path-is-absolute": "^1.0.0"
|
|
1350
|
-
},
|
|
1351
|
-
"engines": {
|
|
1352
|
-
"node": "*"
|
|
1353
|
-
},
|
|
1354
|
-
"funding": {
|
|
1355
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
1356
|
-
}
|
|
1357
|
-
},
|
|
1358
1505
|
"node_modules/archiver-utils/node_modules/readable-stream": {
|
|
1359
1506
|
"version": "2.3.7",
|
|
1360
1507
|
"license": "MIT",
|
|
@@ -1618,7 +1765,6 @@
|
|
|
1618
1765
|
},
|
|
1619
1766
|
"node_modules/cacheable-lookup": {
|
|
1620
1767
|
"version": "5.0.4",
|
|
1621
|
-
"extraneous": true,
|
|
1622
1768
|
"license": "MIT",
|
|
1623
1769
|
"engines": {
|
|
1624
1770
|
"node": ">=10.6.0"
|
|
@@ -1626,7 +1772,6 @@
|
|
|
1626
1772
|
},
|
|
1627
1773
|
"node_modules/cacheable-request": {
|
|
1628
1774
|
"version": "7.0.2",
|
|
1629
|
-
"extraneous": true,
|
|
1630
1775
|
"license": "MIT",
|
|
1631
1776
|
"dependencies": {
|
|
1632
1777
|
"clone-response": "^1.0.2",
|
|
@@ -1643,7 +1788,6 @@
|
|
|
1643
1788
|
},
|
|
1644
1789
|
"node_modules/cacheable-request/node_modules/get-stream": {
|
|
1645
1790
|
"version": "5.2.0",
|
|
1646
|
-
"extraneous": true,
|
|
1647
1791
|
"license": "MIT",
|
|
1648
1792
|
"dependencies": {
|
|
1649
1793
|
"pump": "^3.0.0"
|
|
@@ -1655,15 +1799,6 @@
|
|
|
1655
1799
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
1656
1800
|
}
|
|
1657
1801
|
},
|
|
1658
|
-
"node_modules/cacheable-request/node_modules/pump": {
|
|
1659
|
-
"version": "3.0.0",
|
|
1660
|
-
"extraneous": true,
|
|
1661
|
-
"license": "MIT",
|
|
1662
|
-
"dependencies": {
|
|
1663
|
-
"end-of-stream": "^1.1.0",
|
|
1664
|
-
"once": "^1.3.1"
|
|
1665
|
-
}
|
|
1666
|
-
},
|
|
1667
1802
|
"node_modules/call-bind": {
|
|
1668
1803
|
"version": "1.0.2",
|
|
1669
1804
|
"extraneous": true,
|
|
@@ -1763,9 +1898,16 @@
|
|
|
1763
1898
|
"url": "https://github.com/sponsors/sindresorhus"
|
|
1764
1899
|
}
|
|
1765
1900
|
},
|
|
1901
|
+
"node_modules/clone": {
|
|
1902
|
+
"version": "1.0.4",
|
|
1903
|
+
"extraneous": true,
|
|
1904
|
+
"license": "MIT",
|
|
1905
|
+
"engines": {
|
|
1906
|
+
"node": ">=0.8"
|
|
1907
|
+
}
|
|
1908
|
+
},
|
|
1766
1909
|
"node_modules/clone-response": {
|
|
1767
1910
|
"version": "1.0.3",
|
|
1768
|
-
"extraneous": true,
|
|
1769
1911
|
"license": "MIT",
|
|
1770
1912
|
"dependencies": {
|
|
1771
1913
|
"mimic-response": "^1.0.0"
|
|
@@ -1829,21 +1971,12 @@
|
|
|
1829
1971
|
"node": ">= 0.8"
|
|
1830
1972
|
}
|
|
1831
1973
|
},
|
|
1832
|
-
"node_modules/commander": {
|
|
1833
|
-
"version": "6.2.1",
|
|
1834
|
-
"extraneous": true,
|
|
1835
|
-
"license": "MIT",
|
|
1836
|
-
"engines": {
|
|
1837
|
-
"node": ">= 6"
|
|
1838
|
-
}
|
|
1839
|
-
},
|
|
1840
1974
|
"node_modules/compare-versions": {
|
|
1841
|
-
"version": "
|
|
1975
|
+
"version": "5.0.1",
|
|
1842
1976
|
"license": "MIT"
|
|
1843
1977
|
},
|
|
1844
1978
|
"node_modules/compress-brotli": {
|
|
1845
1979
|
"version": "1.3.8",
|
|
1846
|
-
"extraneous": true,
|
|
1847
1980
|
"license": "MIT",
|
|
1848
1981
|
"dependencies": {
|
|
1849
1982
|
"@types/json-buffer": "~3.0.0",
|
|
@@ -1950,6 +2083,36 @@
|
|
|
1950
2083
|
"node": ">= 10"
|
|
1951
2084
|
}
|
|
1952
2085
|
},
|
|
2086
|
+
"node_modules/cross-env": {
|
|
2087
|
+
"version": "7.0.3",
|
|
2088
|
+
"extraneous": true,
|
|
2089
|
+
"license": "MIT",
|
|
2090
|
+
"dependencies": {
|
|
2091
|
+
"cross-spawn": "^7.0.1"
|
|
2092
|
+
},
|
|
2093
|
+
"bin": {
|
|
2094
|
+
"cross-env": "src/bin/cross-env.js",
|
|
2095
|
+
"cross-env-shell": "src/bin/cross-env-shell.js"
|
|
2096
|
+
},
|
|
2097
|
+
"engines": {
|
|
2098
|
+
"node": ">=10.14",
|
|
2099
|
+
"npm": ">=6",
|
|
2100
|
+
"yarn": ">=1"
|
|
2101
|
+
}
|
|
2102
|
+
},
|
|
2103
|
+
"node_modules/cross-spawn": {
|
|
2104
|
+
"version": "7.0.3",
|
|
2105
|
+
"extraneous": true,
|
|
2106
|
+
"license": "MIT",
|
|
2107
|
+
"dependencies": {
|
|
2108
|
+
"path-key": "^3.1.0",
|
|
2109
|
+
"shebang-command": "^2.0.0",
|
|
2110
|
+
"which": "^2.0.1"
|
|
2111
|
+
},
|
|
2112
|
+
"engines": {
|
|
2113
|
+
"node": ">= 8"
|
|
2114
|
+
}
|
|
2115
|
+
},
|
|
1953
2116
|
"node_modules/css-selector-parser": {
|
|
1954
2117
|
"version": "1.4.1",
|
|
1955
2118
|
"license": "MIT"
|
|
@@ -1967,7 +2130,6 @@
|
|
|
1967
2130
|
},
|
|
1968
2131
|
"node_modules/decompress-response": {
|
|
1969
2132
|
"version": "6.0.0",
|
|
1970
|
-
"extraneous": true,
|
|
1971
2133
|
"license": "MIT",
|
|
1972
2134
|
"dependencies": {
|
|
1973
2135
|
"mimic-response": "^3.1.0"
|
|
@@ -1981,7 +2143,6 @@
|
|
|
1981
2143
|
},
|
|
1982
2144
|
"node_modules/decompress-response/node_modules/mimic-response": {
|
|
1983
2145
|
"version": "3.1.0",
|
|
1984
|
-
"extraneous": true,
|
|
1985
2146
|
"license": "MIT",
|
|
1986
2147
|
"engines": {
|
|
1987
2148
|
"node": ">=10"
|
|
@@ -2009,17 +2170,8 @@
|
|
|
2009
2170
|
"clone": "^1.0.2"
|
|
2010
2171
|
}
|
|
2011
2172
|
},
|
|
2012
|
-
"node_modules/defaults/node_modules/clone": {
|
|
2013
|
-
"version": "1.0.4",
|
|
2014
|
-
"extraneous": true,
|
|
2015
|
-
"license": "MIT",
|
|
2016
|
-
"engines": {
|
|
2017
|
-
"node": ">=0.8"
|
|
2018
|
-
}
|
|
2019
|
-
},
|
|
2020
2173
|
"node_modules/defer-to-connect": {
|
|
2021
2174
|
"version": "2.0.1",
|
|
2022
|
-
"extraneous": true,
|
|
2023
2175
|
"license": "MIT",
|
|
2024
2176
|
"engines": {
|
|
2025
2177
|
"node": ">=10"
|
|
@@ -2093,10 +2245,6 @@
|
|
|
2093
2245
|
"extraneous": true,
|
|
2094
2246
|
"license": "MIT"
|
|
2095
2247
|
},
|
|
2096
|
-
"node_modules/emoji-regex": {
|
|
2097
|
-
"version": "8.0.0",
|
|
2098
|
-
"license": "MIT"
|
|
2099
|
-
},
|
|
2100
2248
|
"node_modules/enabled": {
|
|
2101
2249
|
"version": "2.0.0",
|
|
2102
2250
|
"extraneous": true,
|
|
@@ -2505,6 +2653,29 @@
|
|
|
2505
2653
|
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
|
|
2506
2654
|
}
|
|
2507
2655
|
},
|
|
2656
|
+
"node_modules/gauge/node_modules/emoji-regex": {
|
|
2657
|
+
"version": "8.0.0",
|
|
2658
|
+
"license": "MIT"
|
|
2659
|
+
},
|
|
2660
|
+
"node_modules/gauge/node_modules/is-fullwidth-code-point": {
|
|
2661
|
+
"version": "3.0.0",
|
|
2662
|
+
"license": "MIT",
|
|
2663
|
+
"engines": {
|
|
2664
|
+
"node": ">=8"
|
|
2665
|
+
}
|
|
2666
|
+
},
|
|
2667
|
+
"node_modules/gauge/node_modules/string-width": {
|
|
2668
|
+
"version": "4.2.3",
|
|
2669
|
+
"license": "MIT",
|
|
2670
|
+
"dependencies": {
|
|
2671
|
+
"emoji-regex": "^8.0.0",
|
|
2672
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
2673
|
+
"strip-ansi": "^6.0.1"
|
|
2674
|
+
},
|
|
2675
|
+
"engines": {
|
|
2676
|
+
"node": ">=8"
|
|
2677
|
+
}
|
|
2678
|
+
},
|
|
2508
2679
|
"node_modules/get-func-name": {
|
|
2509
2680
|
"version": "2.0.0",
|
|
2510
2681
|
"dev": true,
|
|
@@ -2571,37 +2742,21 @@
|
|
|
2571
2742
|
}
|
|
2572
2743
|
},
|
|
2573
2744
|
"node_modules/glob": {
|
|
2574
|
-
"version": "
|
|
2745
|
+
"version": "7.2.3",
|
|
2575
2746
|
"license": "ISC",
|
|
2576
2747
|
"dependencies": {
|
|
2577
2748
|
"fs.realpath": "^1.0.0",
|
|
2578
2749
|
"inflight": "^1.0.4",
|
|
2579
2750
|
"inherits": "2",
|
|
2580
|
-
"minimatch": "^
|
|
2581
|
-
"once": "^1.3.0"
|
|
2582
|
-
|
|
2583
|
-
"engines": {
|
|
2584
|
-
"node": ">=12"
|
|
2585
|
-
},
|
|
2586
|
-
"funding": {
|
|
2587
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
2588
|
-
}
|
|
2589
|
-
},
|
|
2590
|
-
"node_modules/glob/node_modules/brace-expansion": {
|
|
2591
|
-
"version": "2.0.1",
|
|
2592
|
-
"license": "MIT",
|
|
2593
|
-
"dependencies": {
|
|
2594
|
-
"balanced-match": "^1.0.0"
|
|
2595
|
-
}
|
|
2596
|
-
},
|
|
2597
|
-
"node_modules/glob/node_modules/minimatch": {
|
|
2598
|
-
"version": "5.1.0",
|
|
2599
|
-
"license": "ISC",
|
|
2600
|
-
"dependencies": {
|
|
2601
|
-
"brace-expansion": "^2.0.1"
|
|
2751
|
+
"minimatch": "^3.1.1",
|
|
2752
|
+
"once": "^1.3.0",
|
|
2753
|
+
"path-is-absolute": "^1.0.0"
|
|
2602
2754
|
},
|
|
2603
2755
|
"engines": {
|
|
2604
|
-
"node": "
|
|
2756
|
+
"node": "*"
|
|
2757
|
+
},
|
|
2758
|
+
"funding": {
|
|
2759
|
+
"url": "https://github.com/sponsors/isaacs"
|
|
2605
2760
|
}
|
|
2606
2761
|
},
|
|
2607
2762
|
"node_modules/global": {
|
|
@@ -2614,7 +2769,6 @@
|
|
|
2614
2769
|
},
|
|
2615
2770
|
"node_modules/got": {
|
|
2616
2771
|
"version": "11.8.5",
|
|
2617
|
-
"extraneous": true,
|
|
2618
2772
|
"license": "MIT",
|
|
2619
2773
|
"dependencies": {
|
|
2620
2774
|
"@sindresorhus/is": "^4.0.0",
|
|
@@ -2711,7 +2865,6 @@
|
|
|
2711
2865
|
},
|
|
2712
2866
|
"node_modules/http-cache-semantics": {
|
|
2713
2867
|
"version": "4.1.0",
|
|
2714
|
-
"extraneous": true,
|
|
2715
2868
|
"license": "BSD-2-Clause"
|
|
2716
2869
|
},
|
|
2717
2870
|
"node_modules/http-errors": {
|
|
@@ -2736,7 +2889,6 @@
|
|
|
2736
2889
|
},
|
|
2737
2890
|
"node_modules/http2-wrapper": {
|
|
2738
2891
|
"version": "1.0.3",
|
|
2739
|
-
"extraneous": true,
|
|
2740
2892
|
"license": "MIT",
|
|
2741
2893
|
"dependencies": {
|
|
2742
2894
|
"quick-lru": "^5.1.1",
|
|
@@ -2799,7 +2951,7 @@
|
|
|
2799
2951
|
"license": "ISC"
|
|
2800
2952
|
},
|
|
2801
2953
|
"node_modules/ini": {
|
|
2802
|
-
"version": "3.0.
|
|
2954
|
+
"version": "3.0.1",
|
|
2803
2955
|
"license": "ISC",
|
|
2804
2956
|
"engines": {
|
|
2805
2957
|
"node": "^12.13.0 || ^14.15.0 || >=16.0.0"
|
|
@@ -2819,8 +2971,12 @@
|
|
|
2819
2971
|
}
|
|
2820
2972
|
},
|
|
2821
2973
|
"node_modules/io.appium.settings": {
|
|
2822
|
-
"version": "4.1
|
|
2823
|
-
"license": "Apache-2.0"
|
|
2974
|
+
"version": "4.2.1",
|
|
2975
|
+
"license": "Apache-2.0",
|
|
2976
|
+
"engines": {
|
|
2977
|
+
"node": ">=14",
|
|
2978
|
+
"npm": ">=8"
|
|
2979
|
+
}
|
|
2824
2980
|
},
|
|
2825
2981
|
"node_modules/ipaddr.js": {
|
|
2826
2982
|
"version": "1.9.1",
|
|
@@ -2872,7 +3028,7 @@
|
|
|
2872
3028
|
}
|
|
2873
3029
|
},
|
|
2874
3030
|
"node_modules/is-core-module": {
|
|
2875
|
-
"version": "2.
|
|
3031
|
+
"version": "2.10.0",
|
|
2876
3032
|
"license": "MIT",
|
|
2877
3033
|
"dependencies": {
|
|
2878
3034
|
"has": "^1.0.3"
|
|
@@ -2895,13 +3051,6 @@
|
|
|
2895
3051
|
"url": "https://github.com/sponsors/ljharb"
|
|
2896
3052
|
}
|
|
2897
3053
|
},
|
|
2898
|
-
"node_modules/is-fullwidth-code-point": {
|
|
2899
|
-
"version": "3.0.0",
|
|
2900
|
-
"license": "MIT",
|
|
2901
|
-
"engines": {
|
|
2902
|
-
"node": ">=8"
|
|
2903
|
-
}
|
|
2904
|
-
},
|
|
2905
3054
|
"node_modules/is-function": {
|
|
2906
3055
|
"version": "1.0.2",
|
|
2907
3056
|
"license": "MIT"
|
|
@@ -3096,7 +3245,7 @@
|
|
|
3096
3245
|
}
|
|
3097
3246
|
},
|
|
3098
3247
|
"node_modules/jsdoc-plugin-typescript": {
|
|
3099
|
-
"version": "2.1.
|
|
3248
|
+
"version": "2.1.1",
|
|
3100
3249
|
"extraneous": true,
|
|
3101
3250
|
"license": "BSD-2-Clause",
|
|
3102
3251
|
"dependencies": {
|
|
@@ -3149,7 +3298,6 @@
|
|
|
3149
3298
|
},
|
|
3150
3299
|
"node_modules/json-buffer": {
|
|
3151
3300
|
"version": "3.0.1",
|
|
3152
|
-
"extraneous": true,
|
|
3153
3301
|
"license": "MIT"
|
|
3154
3302
|
},
|
|
3155
3303
|
"node_modules/json-parse-even-better-errors": {
|
|
@@ -3158,7 +3306,6 @@
|
|
|
3158
3306
|
},
|
|
3159
3307
|
"node_modules/json-schema": {
|
|
3160
3308
|
"version": "0.4.0",
|
|
3161
|
-
"extraneous": true,
|
|
3162
3309
|
"license": "(AFL-2.1 OR BSD-3-Clause)"
|
|
3163
3310
|
},
|
|
3164
3311
|
"node_modules/json-schema-traverse": {
|
|
@@ -3172,8 +3319,7 @@
|
|
|
3172
3319
|
"license": "MIT"
|
|
3173
3320
|
},
|
|
3174
3321
|
"node_modules/keyv": {
|
|
3175
|
-
"version": "4.
|
|
3176
|
-
"extraneous": true,
|
|
3322
|
+
"version": "4.4.1",
|
|
3177
3323
|
"license": "MIT",
|
|
3178
3324
|
"dependencies": {
|
|
3179
3325
|
"compress-brotli": "^1.3.8",
|
|
@@ -3419,14 +3565,13 @@
|
|
|
3419
3565
|
},
|
|
3420
3566
|
"node_modules/lowercase-keys": {
|
|
3421
3567
|
"version": "2.0.0",
|
|
3422
|
-
"extraneous": true,
|
|
3423
3568
|
"license": "MIT",
|
|
3424
3569
|
"engines": {
|
|
3425
3570
|
"node": ">=8"
|
|
3426
3571
|
}
|
|
3427
3572
|
},
|
|
3428
3573
|
"node_modules/lru-cache": {
|
|
3429
|
-
"version": "7.13.
|
|
3574
|
+
"version": "7.13.2",
|
|
3430
3575
|
"license": "ISC",
|
|
3431
3576
|
"engines": {
|
|
3432
3577
|
"node": ">=12"
|
|
@@ -3457,7 +3602,7 @@
|
|
|
3457
3602
|
}
|
|
3458
3603
|
},
|
|
3459
3604
|
"node_modules/marked": {
|
|
3460
|
-
"version": "4.0
|
|
3605
|
+
"version": "4.1.0",
|
|
3461
3606
|
"extraneous": true,
|
|
3462
3607
|
"license": "MIT",
|
|
3463
3608
|
"bin": {
|
|
@@ -3557,7 +3702,6 @@
|
|
|
3557
3702
|
},
|
|
3558
3703
|
"node_modules/mimic-response": {
|
|
3559
3704
|
"version": "1.0.1",
|
|
3560
|
-
"extraneous": true,
|
|
3561
3705
|
"license": "MIT",
|
|
3562
3706
|
"engines": {
|
|
3563
3707
|
"node": ">=4"
|
|
@@ -3601,7 +3745,7 @@
|
|
|
3601
3745
|
}
|
|
3602
3746
|
},
|
|
3603
3747
|
"node_modules/moment-timezone": {
|
|
3604
|
-
"version": "0.5.
|
|
3748
|
+
"version": "0.5.37",
|
|
3605
3749
|
"license": "MIT",
|
|
3606
3750
|
"dependencies": {
|
|
3607
3751
|
"moment": ">= 2.9.0"
|
|
@@ -3755,7 +3899,6 @@
|
|
|
3755
3899
|
},
|
|
3756
3900
|
"node_modules/normalize-url": {
|
|
3757
3901
|
"version": "6.1.0",
|
|
3758
|
-
"extraneous": true,
|
|
3759
3902
|
"license": "MIT",
|
|
3760
3903
|
"engines": {
|
|
3761
3904
|
"node": ">=10"
|
|
@@ -3794,13 +3937,13 @@
|
|
|
3794
3937
|
}
|
|
3795
3938
|
},
|
|
3796
3939
|
"node_modules/object.assign": {
|
|
3797
|
-
"version": "4.1.
|
|
3940
|
+
"version": "4.1.4",
|
|
3798
3941
|
"extraneous": true,
|
|
3799
3942
|
"license": "MIT",
|
|
3800
3943
|
"dependencies": {
|
|
3801
|
-
"call-bind": "^1.0.
|
|
3802
|
-
"define-properties": "^1.1.
|
|
3803
|
-
"has-symbols": "^1.0.
|
|
3944
|
+
"call-bind": "^1.0.2",
|
|
3945
|
+
"define-properties": "^1.1.4",
|
|
3946
|
+
"has-symbols": "^1.0.3",
|
|
3804
3947
|
"object-keys": "^1.1.1"
|
|
3805
3948
|
},
|
|
3806
3949
|
"engines": {
|
|
@@ -3946,7 +4089,6 @@
|
|
|
3946
4089
|
},
|
|
3947
4090
|
"node_modules/p-cancelable": {
|
|
3948
4091
|
"version": "2.1.1",
|
|
3949
|
-
"extraneous": true,
|
|
3950
4092
|
"license": "MIT",
|
|
3951
4093
|
"engines": {
|
|
3952
4094
|
"node": ">=8"
|
|
@@ -3989,6 +4131,14 @@
|
|
|
3989
4131
|
"package-changed": "bin/package-changed.js"
|
|
3990
4132
|
}
|
|
3991
4133
|
},
|
|
4134
|
+
"node_modules/package-changed/node_modules/commander": {
|
|
4135
|
+
"version": "6.2.1",
|
|
4136
|
+
"extraneous": true,
|
|
4137
|
+
"license": "MIT",
|
|
4138
|
+
"engines": {
|
|
4139
|
+
"node": ">= 6"
|
|
4140
|
+
}
|
|
4141
|
+
},
|
|
3992
4142
|
"node_modules/pako": {
|
|
3993
4143
|
"version": "1.0.11",
|
|
3994
4144
|
"license": "(MIT AND Zlib)"
|
|
@@ -4057,6 +4207,14 @@
|
|
|
4057
4207
|
"node": ">=0.10.0"
|
|
4058
4208
|
}
|
|
4059
4209
|
},
|
|
4210
|
+
"node_modules/path-key": {
|
|
4211
|
+
"version": "3.1.1",
|
|
4212
|
+
"extraneous": true,
|
|
4213
|
+
"license": "MIT",
|
|
4214
|
+
"engines": {
|
|
4215
|
+
"node": ">=8"
|
|
4216
|
+
}
|
|
4217
|
+
},
|
|
4060
4218
|
"node_modules/path-parse": {
|
|
4061
4219
|
"version": "1.0.7",
|
|
4062
4220
|
"license": "MIT"
|
|
@@ -4135,12 +4293,12 @@
|
|
|
4135
4293
|
}
|
|
4136
4294
|
},
|
|
4137
4295
|
"node_modules/portfinder": {
|
|
4138
|
-
"version": "1.0.
|
|
4296
|
+
"version": "1.0.32",
|
|
4139
4297
|
"license": "MIT",
|
|
4140
4298
|
"dependencies": {
|
|
4141
|
-
"async": "^2.6.
|
|
4142
|
-
"debug": "^3.
|
|
4143
|
-
"mkdirp": "^0.5.
|
|
4299
|
+
"async": "^2.6.4",
|
|
4300
|
+
"debug": "^3.2.7",
|
|
4301
|
+
"mkdirp": "^0.5.6"
|
|
4144
4302
|
},
|
|
4145
4303
|
"engines": {
|
|
4146
4304
|
"node": ">= 0.12.0"
|
|
@@ -4202,6 +4360,14 @@
|
|
|
4202
4360
|
"node": ">= 0.10"
|
|
4203
4361
|
}
|
|
4204
4362
|
},
|
|
4363
|
+
"node_modules/pump": {
|
|
4364
|
+
"version": "3.0.0",
|
|
4365
|
+
"license": "MIT",
|
|
4366
|
+
"dependencies": {
|
|
4367
|
+
"end-of-stream": "^1.1.0",
|
|
4368
|
+
"once": "^1.3.1"
|
|
4369
|
+
}
|
|
4370
|
+
},
|
|
4205
4371
|
"node_modules/punycode": {
|
|
4206
4372
|
"version": "2.1.1",
|
|
4207
4373
|
"extraneous": true,
|
|
@@ -4226,7 +4392,6 @@
|
|
|
4226
4392
|
},
|
|
4227
4393
|
"node_modules/quick-lru": {
|
|
4228
4394
|
"version": "5.1.1",
|
|
4229
|
-
"extraneous": true,
|
|
4230
4395
|
"license": "MIT",
|
|
4231
4396
|
"engines": {
|
|
4232
4397
|
"node": ">=10"
|
|
@@ -4366,7 +4531,6 @@
|
|
|
4366
4531
|
},
|
|
4367
4532
|
"node_modules/resolve-alpn": {
|
|
4368
4533
|
"version": "1.2.1",
|
|
4369
|
-
"extraneous": true,
|
|
4370
4534
|
"license": "MIT"
|
|
4371
4535
|
},
|
|
4372
4536
|
"node_modules/resolve-from": {
|
|
@@ -4378,7 +4542,6 @@
|
|
|
4378
4542
|
},
|
|
4379
4543
|
"node_modules/responselike": {
|
|
4380
4544
|
"version": "2.0.1",
|
|
4381
|
-
"extraneous": true,
|
|
4382
4545
|
"license": "MIT",
|
|
4383
4546
|
"dependencies": {
|
|
4384
4547
|
"lowercase-keys": "^2.0.0"
|
|
@@ -4412,24 +4575,6 @@
|
|
|
4412
4575
|
"url": "https://github.com/sponsors/isaacs"
|
|
4413
4576
|
}
|
|
4414
4577
|
},
|
|
4415
|
-
"node_modules/rimraf/node_modules/glob": {
|
|
4416
|
-
"version": "7.2.3",
|
|
4417
|
-
"license": "ISC",
|
|
4418
|
-
"dependencies": {
|
|
4419
|
-
"fs.realpath": "^1.0.0",
|
|
4420
|
-
"inflight": "^1.0.4",
|
|
4421
|
-
"inherits": "2",
|
|
4422
|
-
"minimatch": "^3.1.1",
|
|
4423
|
-
"once": "^1.3.0",
|
|
4424
|
-
"path-is-absolute": "^1.0.0"
|
|
4425
|
-
},
|
|
4426
|
-
"engines": {
|
|
4427
|
-
"node": "*"
|
|
4428
|
-
},
|
|
4429
|
-
"funding": {
|
|
4430
|
-
"url": "https://github.com/sponsors/isaacs"
|
|
4431
|
-
}
|
|
4432
|
-
},
|
|
4433
4578
|
"node_modules/safe-buffer": {
|
|
4434
4579
|
"version": "5.1.2",
|
|
4435
4580
|
"license": "MIT"
|
|
@@ -4458,29 +4603,6 @@
|
|
|
4458
4603
|
"version": "1.2.4",
|
|
4459
4604
|
"license": "ISC"
|
|
4460
4605
|
},
|
|
4461
|
-
"node_modules/semver": {
|
|
4462
|
-
"version": "7.3.7",
|
|
4463
|
-
"license": "ISC",
|
|
4464
|
-
"dependencies": {
|
|
4465
|
-
"lru-cache": "^6.0.0"
|
|
4466
|
-
},
|
|
4467
|
-
"bin": {
|
|
4468
|
-
"semver": "bin/semver.js"
|
|
4469
|
-
},
|
|
4470
|
-
"engines": {
|
|
4471
|
-
"node": ">=10"
|
|
4472
|
-
}
|
|
4473
|
-
},
|
|
4474
|
-
"node_modules/semver/node_modules/lru-cache": {
|
|
4475
|
-
"version": "6.0.0",
|
|
4476
|
-
"license": "ISC",
|
|
4477
|
-
"dependencies": {
|
|
4478
|
-
"yallist": "^4.0.0"
|
|
4479
|
-
},
|
|
4480
|
-
"engines": {
|
|
4481
|
-
"node": ">=10"
|
|
4482
|
-
}
|
|
4483
|
-
},
|
|
4484
4606
|
"node_modules/send": {
|
|
4485
4607
|
"version": "0.18.0",
|
|
4486
4608
|
"extraneous": true,
|
|
@@ -4585,6 +4707,25 @@
|
|
|
4585
4707
|
"node": ">=4.0"
|
|
4586
4708
|
}
|
|
4587
4709
|
},
|
|
4710
|
+
"node_modules/shebang-command": {
|
|
4711
|
+
"version": "2.0.0",
|
|
4712
|
+
"extraneous": true,
|
|
4713
|
+
"license": "MIT",
|
|
4714
|
+
"dependencies": {
|
|
4715
|
+
"shebang-regex": "^3.0.0"
|
|
4716
|
+
},
|
|
4717
|
+
"engines": {
|
|
4718
|
+
"node": ">=8"
|
|
4719
|
+
}
|
|
4720
|
+
},
|
|
4721
|
+
"node_modules/shebang-regex": {
|
|
4722
|
+
"version": "3.0.0",
|
|
4723
|
+
"extraneous": true,
|
|
4724
|
+
"license": "MIT",
|
|
4725
|
+
"engines": {
|
|
4726
|
+
"node": ">=8"
|
|
4727
|
+
}
|
|
4728
|
+
},
|
|
4588
4729
|
"node_modules/shell-quote": {
|
|
4589
4730
|
"version": "1.7.3",
|
|
4590
4731
|
"license": "MIT"
|
|
@@ -4683,7 +4824,7 @@
|
|
|
4683
4824
|
}
|
|
4684
4825
|
},
|
|
4685
4826
|
"node_modules/spdx-license-ids": {
|
|
4686
|
-
"version": "3.0.
|
|
4827
|
+
"version": "3.0.12",
|
|
4687
4828
|
"license": "CC0-1.0"
|
|
4688
4829
|
},
|
|
4689
4830
|
"node_modules/stack-trace": {
|
|
@@ -4742,18 +4883,6 @@
|
|
|
4742
4883
|
],
|
|
4743
4884
|
"license": "MIT"
|
|
4744
4885
|
},
|
|
4745
|
-
"node_modules/string-width": {
|
|
4746
|
-
"version": "4.2.3",
|
|
4747
|
-
"license": "MIT",
|
|
4748
|
-
"dependencies": {
|
|
4749
|
-
"emoji-regex": "^8.0.0",
|
|
4750
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
4751
|
-
"strip-ansi": "^6.0.1"
|
|
4752
|
-
},
|
|
4753
|
-
"engines": {
|
|
4754
|
-
"node": ">=8"
|
|
4755
|
-
}
|
|
4756
|
-
},
|
|
4757
4886
|
"node_modules/string.prototype.matchall": {
|
|
4758
4887
|
"version": "4.0.7",
|
|
4759
4888
|
"extraneous": true,
|
|
@@ -4861,18 +4990,19 @@
|
|
|
4861
4990
|
}
|
|
4862
4991
|
},
|
|
4863
4992
|
"node_modules/teen_process": {
|
|
4864
|
-
"version": "
|
|
4865
|
-
"engines": [
|
|
4866
|
-
"node"
|
|
4867
|
-
],
|
|
4993
|
+
"version": "2.0.1",
|
|
4868
4994
|
"license": "Apache-2.0",
|
|
4869
4995
|
"dependencies": {
|
|
4870
|
-
"@babel/runtime": "
|
|
4871
|
-
"bluebird": "
|
|
4872
|
-
"lodash": "
|
|
4873
|
-
"shell-quote": "
|
|
4874
|
-
"source-map-support": "
|
|
4875
|
-
"which": "
|
|
4996
|
+
"@babel/runtime": "7.18.9",
|
|
4997
|
+
"bluebird": "3.7.2",
|
|
4998
|
+
"lodash": "4.17.21",
|
|
4999
|
+
"shell-quote": "1.7.3",
|
|
5000
|
+
"source-map-support": "0.5.21",
|
|
5001
|
+
"which": "2.0.2"
|
|
5002
|
+
},
|
|
5003
|
+
"engines": {
|
|
5004
|
+
"node": ">=14",
|
|
5005
|
+
"npm": ">=6"
|
|
4876
5006
|
}
|
|
4877
5007
|
},
|
|
4878
5008
|
"node_modules/text-hex": {
|
|
@@ -4924,7 +5054,7 @@
|
|
|
4924
5054
|
}
|
|
4925
5055
|
},
|
|
4926
5056
|
"node_modules/type-fest": {
|
|
4927
|
-
"version": "2.
|
|
5057
|
+
"version": "2.18.0",
|
|
4928
5058
|
"license": "(MIT OR CC0-1.0)",
|
|
4929
5059
|
"engines": {
|
|
4930
5060
|
"node": ">=12.20"
|
|
@@ -4946,9 +5076,9 @@
|
|
|
4946
5076
|
}
|
|
4947
5077
|
},
|
|
4948
5078
|
"node_modules/typescript": {
|
|
4949
|
-
"version": "4.
|
|
4950
|
-
"extraneous": true,
|
|
5079
|
+
"version": "4.8.2",
|
|
4951
5080
|
"license": "Apache-2.0",
|
|
5081
|
+
"peer": true,
|
|
4952
5082
|
"bin": {
|
|
4953
5083
|
"tsc": "bin/tsc",
|
|
4954
5084
|
"tsserver": "bin/tsserver"
|
|
@@ -5111,6 +5241,29 @@
|
|
|
5111
5241
|
"string-width": "^1.0.2 || 2 || 3 || 4"
|
|
5112
5242
|
}
|
|
5113
5243
|
},
|
|
5244
|
+
"node_modules/wide-align/node_modules/emoji-regex": {
|
|
5245
|
+
"version": "8.0.0",
|
|
5246
|
+
"license": "MIT"
|
|
5247
|
+
},
|
|
5248
|
+
"node_modules/wide-align/node_modules/is-fullwidth-code-point": {
|
|
5249
|
+
"version": "3.0.0",
|
|
5250
|
+
"license": "MIT",
|
|
5251
|
+
"engines": {
|
|
5252
|
+
"node": ">=8"
|
|
5253
|
+
}
|
|
5254
|
+
},
|
|
5255
|
+
"node_modules/wide-align/node_modules/string-width": {
|
|
5256
|
+
"version": "4.2.3",
|
|
5257
|
+
"license": "MIT",
|
|
5258
|
+
"dependencies": {
|
|
5259
|
+
"emoji-regex": "^8.0.0",
|
|
5260
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
5261
|
+
"strip-ansi": "^6.0.1"
|
|
5262
|
+
},
|
|
5263
|
+
"engines": {
|
|
5264
|
+
"node": ">=8"
|
|
5265
|
+
}
|
|
5266
|
+
},
|
|
5114
5267
|
"node_modules/winston": {
|
|
5115
5268
|
"version": "3.8.1",
|
|
5116
5269
|
"extraneous": true,
|
|
@@ -5190,6 +5343,32 @@
|
|
|
5190
5343
|
"extraneous": true,
|
|
5191
5344
|
"license": "MIT"
|
|
5192
5345
|
},
|
|
5346
|
+
"node_modules/wrap-ansi/node_modules/emoji-regex": {
|
|
5347
|
+
"version": "8.0.0",
|
|
5348
|
+
"extraneous": true,
|
|
5349
|
+
"license": "MIT"
|
|
5350
|
+
},
|
|
5351
|
+
"node_modules/wrap-ansi/node_modules/is-fullwidth-code-point": {
|
|
5352
|
+
"version": "3.0.0",
|
|
5353
|
+
"extraneous": true,
|
|
5354
|
+
"license": "MIT",
|
|
5355
|
+
"engines": {
|
|
5356
|
+
"node": ">=8"
|
|
5357
|
+
}
|
|
5358
|
+
},
|
|
5359
|
+
"node_modules/wrap-ansi/node_modules/string-width": {
|
|
5360
|
+
"version": "4.2.3",
|
|
5361
|
+
"extraneous": true,
|
|
5362
|
+
"license": "MIT",
|
|
5363
|
+
"dependencies": {
|
|
5364
|
+
"emoji-regex": "^8.0.0",
|
|
5365
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
5366
|
+
"strip-ansi": "^6.0.1"
|
|
5367
|
+
},
|
|
5368
|
+
"engines": {
|
|
5369
|
+
"node": ">=8"
|
|
5370
|
+
}
|
|
5371
|
+
},
|
|
5193
5372
|
"node_modules/wrappy": {
|
|
5194
5373
|
"version": "1.0.2",
|
|
5195
5374
|
"license": "ISC"
|
|
@@ -5316,10 +5495,10 @@
|
|
|
5316
5495
|
},
|
|
5317
5496
|
"dependencies": {
|
|
5318
5497
|
"@appium/base-driver": {
|
|
5319
|
-
"version": "8.
|
|
5498
|
+
"version": "8.7.0",
|
|
5320
5499
|
"extraneous": true,
|
|
5321
5500
|
"requires": {
|
|
5322
|
-
"@appium/support": "^2.59.
|
|
5501
|
+
"@appium/support": "^2.59.5",
|
|
5323
5502
|
"@babel/runtime": "7.18.9",
|
|
5324
5503
|
"@colors/colors": "1.5.0",
|
|
5325
5504
|
"@types/async-lock": "1.1.5",
|
|
@@ -5336,46 +5515,61 @@
|
|
|
5336
5515
|
"express": "4.18.1",
|
|
5337
5516
|
"http-status-codes": "2.2.0",
|
|
5338
5517
|
"lodash": "4.17.21",
|
|
5339
|
-
"lru-cache": "7.13.
|
|
5518
|
+
"lru-cache": "7.13.2",
|
|
5340
5519
|
"method-override": "3.0.0",
|
|
5341
5520
|
"morgan": "1.10.0",
|
|
5342
5521
|
"serve-favicon": "2.5.0",
|
|
5343
5522
|
"source-map-support": "0.5.21",
|
|
5344
|
-
"type-fest": "2.
|
|
5523
|
+
"type-fest": "2.18.0",
|
|
5345
5524
|
"validate.js": "0.13.1"
|
|
5346
5525
|
}
|
|
5347
5526
|
},
|
|
5348
5527
|
"@appium/base-plugin": {
|
|
5349
|
-
"version": "1.10.
|
|
5528
|
+
"version": "1.10.2",
|
|
5350
5529
|
"extraneous": true,
|
|
5351
5530
|
"requires": {
|
|
5352
|
-
"@appium/support": "^2.59.
|
|
5531
|
+
"@appium/support": "^2.59.5"
|
|
5353
5532
|
}
|
|
5354
5533
|
},
|
|
5355
5534
|
"@appium/docutils": {
|
|
5356
|
-
"version": "0.0.
|
|
5535
|
+
"version": "0.0.10",
|
|
5357
5536
|
"extraneous": true,
|
|
5358
5537
|
"requires": {
|
|
5359
|
-
"@appium/support": "^2.59.
|
|
5538
|
+
"@appium/support": "^2.59.5",
|
|
5360
5539
|
"@babel/runtime": "7.18.9",
|
|
5361
5540
|
"docdash": "1.2.0",
|
|
5362
5541
|
"jsdoc": "3.6.11",
|
|
5363
|
-
"jsdoc-plugin-typescript": "2.1.
|
|
5542
|
+
"jsdoc-plugin-typescript": "2.1.1",
|
|
5364
5543
|
"source-map-support": "0.5.21",
|
|
5365
5544
|
"teen_process": "1.16.0"
|
|
5545
|
+
},
|
|
5546
|
+
"dependencies": {
|
|
5547
|
+
"teen_process": {
|
|
5548
|
+
"version": "1.16.0",
|
|
5549
|
+
"extraneous": true,
|
|
5550
|
+
"requires": {
|
|
5551
|
+
"@babel/runtime": "^7.0.0",
|
|
5552
|
+
"bluebird": "^3.5.1",
|
|
5553
|
+
"lodash": "^4.17.4",
|
|
5554
|
+
"shell-quote": "^1.4.3",
|
|
5555
|
+
"source-map-support": "^0.5.3",
|
|
5556
|
+
"which": "^2.0.2"
|
|
5557
|
+
}
|
|
5558
|
+
}
|
|
5366
5559
|
}
|
|
5367
5560
|
},
|
|
5368
5561
|
"@appium/schema": {
|
|
5369
|
-
"version": "0.0.
|
|
5370
|
-
"extraneous": true,
|
|
5562
|
+
"version": "0.0.9",
|
|
5371
5563
|
"requires": {
|
|
5372
5564
|
"@types/json-schema": "7.0.11",
|
|
5373
|
-
"json-schema": "0.4.0"
|
|
5565
|
+
"json-schema": "0.4.0",
|
|
5566
|
+
"source-map-support": "0.5.21"
|
|
5374
5567
|
}
|
|
5375
5568
|
},
|
|
5376
5569
|
"@appium/support": {
|
|
5377
|
-
"version": "2.59.
|
|
5570
|
+
"version": "2.59.5",
|
|
5378
5571
|
"requires": {
|
|
5572
|
+
"@appium/types": "^0.4.0",
|
|
5379
5573
|
"@babel/runtime": "7.18.9",
|
|
5380
5574
|
"@colors/colors": "1.5.0",
|
|
5381
5575
|
"@types/archiver": "5.3.1",
|
|
@@ -5429,14 +5623,61 @@
|
|
|
5429
5623
|
"source-map-support": "0.5.21",
|
|
5430
5624
|
"supports-color": "8.1.1",
|
|
5431
5625
|
"teen_process": "1.16.0",
|
|
5432
|
-
"type-fest": "2.
|
|
5626
|
+
"type-fest": "2.18.0",
|
|
5433
5627
|
"uuid": "8.3.2",
|
|
5434
5628
|
"which": "2.0.2",
|
|
5435
5629
|
"yauzl": "2.10.0"
|
|
5630
|
+
},
|
|
5631
|
+
"dependencies": {
|
|
5632
|
+
"brace-expansion": {
|
|
5633
|
+
"version": "2.0.1",
|
|
5634
|
+
"requires": {
|
|
5635
|
+
"balanced-match": "^1.0.0"
|
|
5636
|
+
}
|
|
5637
|
+
},
|
|
5638
|
+
"glob": {
|
|
5639
|
+
"version": "8.0.3",
|
|
5640
|
+
"requires": {
|
|
5641
|
+
"fs.realpath": "^1.0.0",
|
|
5642
|
+
"inflight": "^1.0.4",
|
|
5643
|
+
"inherits": "2",
|
|
5644
|
+
"minimatch": "^5.0.1",
|
|
5645
|
+
"once": "^1.3.0"
|
|
5646
|
+
}
|
|
5647
|
+
},
|
|
5648
|
+
"lru-cache": {
|
|
5649
|
+
"version": "6.0.0",
|
|
5650
|
+
"requires": {
|
|
5651
|
+
"yallist": "^4.0.0"
|
|
5652
|
+
}
|
|
5653
|
+
},
|
|
5654
|
+
"minimatch": {
|
|
5655
|
+
"version": "5.1.0",
|
|
5656
|
+
"requires": {
|
|
5657
|
+
"brace-expansion": "^2.0.1"
|
|
5658
|
+
}
|
|
5659
|
+
},
|
|
5660
|
+
"semver": {
|
|
5661
|
+
"version": "7.3.7",
|
|
5662
|
+
"requires": {
|
|
5663
|
+
"lru-cache": "^6.0.0"
|
|
5664
|
+
}
|
|
5665
|
+
},
|
|
5666
|
+
"teen_process": {
|
|
5667
|
+
"version": "1.16.0",
|
|
5668
|
+
"requires": {
|
|
5669
|
+
"@babel/runtime": "^7.0.0",
|
|
5670
|
+
"bluebird": "^3.5.1",
|
|
5671
|
+
"lodash": "^4.17.4",
|
|
5672
|
+
"shell-quote": "^1.4.3",
|
|
5673
|
+
"source-map-support": "^0.5.3",
|
|
5674
|
+
"which": "^2.0.2"
|
|
5675
|
+
}
|
|
5676
|
+
}
|
|
5436
5677
|
}
|
|
5437
5678
|
},
|
|
5438
5679
|
"@appium/test-support": {
|
|
5439
|
-
"version": "1.
|
|
5680
|
+
"version": "1.5.0",
|
|
5440
5681
|
"dev": true,
|
|
5441
5682
|
"requires": {
|
|
5442
5683
|
"@babel/runtime": "7.18.9",
|
|
@@ -5450,17 +5691,30 @@
|
|
|
5450
5691
|
"sinon": "14.0.0",
|
|
5451
5692
|
"source-map-support": "0.5.21",
|
|
5452
5693
|
"teen_process": "1.16.0"
|
|
5694
|
+
},
|
|
5695
|
+
"dependencies": {
|
|
5696
|
+
"teen_process": {
|
|
5697
|
+
"version": "1.16.0",
|
|
5698
|
+
"dev": true,
|
|
5699
|
+
"requires": {
|
|
5700
|
+
"@babel/runtime": "^7.0.0",
|
|
5701
|
+
"bluebird": "^3.5.1",
|
|
5702
|
+
"lodash": "^4.17.4",
|
|
5703
|
+
"shell-quote": "^1.4.3",
|
|
5704
|
+
"source-map-support": "^0.5.3",
|
|
5705
|
+
"which": "^2.0.2"
|
|
5706
|
+
}
|
|
5707
|
+
}
|
|
5453
5708
|
}
|
|
5454
5709
|
},
|
|
5455
5710
|
"@appium/types": {
|
|
5456
|
-
"version": "0.
|
|
5457
|
-
"extraneous": true,
|
|
5711
|
+
"version": "0.4.0",
|
|
5458
5712
|
"requires": {
|
|
5459
|
-
"@appium/schema": "^0.0.
|
|
5713
|
+
"@appium/schema": "^0.0.9",
|
|
5460
5714
|
"@types/express": "4.17.13",
|
|
5461
5715
|
"@types/npmlog": "4.1.4",
|
|
5462
5716
|
"@wdio/types": "7.20.7",
|
|
5463
|
-
"type-fest": "2.
|
|
5717
|
+
"type-fest": "2.18.0"
|
|
5464
5718
|
}
|
|
5465
5719
|
},
|
|
5466
5720
|
"@babel/code-frame": {
|
|
@@ -5481,7 +5735,7 @@
|
|
|
5481
5735
|
}
|
|
5482
5736
|
},
|
|
5483
5737
|
"@babel/parser": {
|
|
5484
|
-
"version": "7.18.
|
|
5738
|
+
"version": "7.18.13",
|
|
5485
5739
|
"extraneous": true
|
|
5486
5740
|
},
|
|
5487
5741
|
"@babel/runtime": {
|
|
@@ -5810,8 +6064,7 @@
|
|
|
5810
6064
|
}
|
|
5811
6065
|
},
|
|
5812
6066
|
"@sindresorhus/is": {
|
|
5813
|
-
"version": "4.6.0"
|
|
5814
|
-
"extraneous": true
|
|
6067
|
+
"version": "4.6.0"
|
|
5815
6068
|
},
|
|
5816
6069
|
"@sinonjs/commons": {
|
|
5817
6070
|
"version": "1.8.3",
|
|
@@ -5842,7 +6095,6 @@
|
|
|
5842
6095
|
},
|
|
5843
6096
|
"@szmarczak/http-timer": {
|
|
5844
6097
|
"version": "4.0.6",
|
|
5845
|
-
"extraneous": true,
|
|
5846
6098
|
"requires": {
|
|
5847
6099
|
"defer-to-connect": "^2.0.0"
|
|
5848
6100
|
}
|
|
@@ -5873,7 +6125,6 @@
|
|
|
5873
6125
|
},
|
|
5874
6126
|
"@types/body-parser": {
|
|
5875
6127
|
"version": "1.19.2",
|
|
5876
|
-
"extraneous": true,
|
|
5877
6128
|
"requires": {
|
|
5878
6129
|
"@types/connect": "*",
|
|
5879
6130
|
"@types/node": "*"
|
|
@@ -5881,7 +6132,6 @@
|
|
|
5881
6132
|
},
|
|
5882
6133
|
"@types/cacheable-request": {
|
|
5883
6134
|
"version": "6.0.2",
|
|
5884
|
-
"extraneous": true,
|
|
5885
6135
|
"requires": {
|
|
5886
6136
|
"@types/http-cache-semantics": "*",
|
|
5887
6137
|
"@types/keyv": "*",
|
|
@@ -5891,14 +6141,12 @@
|
|
|
5891
6141
|
},
|
|
5892
6142
|
"@types/connect": {
|
|
5893
6143
|
"version": "3.4.35",
|
|
5894
|
-
"extraneous": true,
|
|
5895
6144
|
"requires": {
|
|
5896
6145
|
"@types/node": "*"
|
|
5897
6146
|
}
|
|
5898
6147
|
},
|
|
5899
6148
|
"@types/express": {
|
|
5900
6149
|
"version": "4.17.13",
|
|
5901
|
-
"extraneous": true,
|
|
5902
6150
|
"requires": {
|
|
5903
6151
|
"@types/body-parser": "*",
|
|
5904
6152
|
"@types/express-serve-static-core": "^4.17.18",
|
|
@@ -5908,7 +6156,6 @@
|
|
|
5908
6156
|
},
|
|
5909
6157
|
"@types/express-serve-static-core": {
|
|
5910
6158
|
"version": "4.17.30",
|
|
5911
|
-
"extraneous": true,
|
|
5912
6159
|
"requires": {
|
|
5913
6160
|
"@types/node": "*",
|
|
5914
6161
|
"@types/qs": "*",
|
|
@@ -5930,8 +6177,7 @@
|
|
|
5930
6177
|
}
|
|
5931
6178
|
},
|
|
5932
6179
|
"@types/http-cache-semantics": {
|
|
5933
|
-
"version": "4.0.1"
|
|
5934
|
-
"extraneous": true
|
|
6180
|
+
"version": "4.0.1"
|
|
5935
6181
|
},
|
|
5936
6182
|
"@types/jsftp": {
|
|
5937
6183
|
"version": "2.1.2",
|
|
@@ -5940,16 +6186,13 @@
|
|
|
5940
6186
|
}
|
|
5941
6187
|
},
|
|
5942
6188
|
"@types/json-buffer": {
|
|
5943
|
-
"version": "3.0.0"
|
|
5944
|
-
"extraneous": true
|
|
6189
|
+
"version": "3.0.0"
|
|
5945
6190
|
},
|
|
5946
6191
|
"@types/json-schema": {
|
|
5947
|
-
"version": "7.0.11"
|
|
5948
|
-
"extraneous": true
|
|
6192
|
+
"version": "7.0.11"
|
|
5949
6193
|
},
|
|
5950
6194
|
"@types/keyv": {
|
|
5951
6195
|
"version": "3.1.4",
|
|
5952
|
-
"extraneous": true,
|
|
5953
6196
|
"requires": {
|
|
5954
6197
|
"@types/node": "*"
|
|
5955
6198
|
}
|
|
@@ -5987,11 +6230,10 @@
|
|
|
5987
6230
|
}
|
|
5988
6231
|
},
|
|
5989
6232
|
"@types/mime": {
|
|
5990
|
-
"version": "
|
|
5991
|
-
"extraneous": true
|
|
6233
|
+
"version": "3.0.1"
|
|
5992
6234
|
},
|
|
5993
6235
|
"@types/minimatch": {
|
|
5994
|
-
"version": "
|
|
6236
|
+
"version": "5.1.2"
|
|
5995
6237
|
},
|
|
5996
6238
|
"@types/mv": {
|
|
5997
6239
|
"version": "2.1.2"
|
|
@@ -6003,7 +6245,7 @@
|
|
|
6003
6245
|
}
|
|
6004
6246
|
},
|
|
6005
6247
|
"@types/node": {
|
|
6006
|
-
"version": "18.
|
|
6248
|
+
"version": "18.7.14"
|
|
6007
6249
|
},
|
|
6008
6250
|
"@types/normalize-package-data": {
|
|
6009
6251
|
"version": "2.4.1"
|
|
@@ -6021,16 +6263,13 @@
|
|
|
6021
6263
|
}
|
|
6022
6264
|
},
|
|
6023
6265
|
"@types/qs": {
|
|
6024
|
-
"version": "6.9.7"
|
|
6025
|
-
"extraneous": true
|
|
6266
|
+
"version": "6.9.7"
|
|
6026
6267
|
},
|
|
6027
6268
|
"@types/range-parser": {
|
|
6028
|
-
"version": "1.2.4"
|
|
6029
|
-
"extraneous": true
|
|
6269
|
+
"version": "1.2.4"
|
|
6030
6270
|
},
|
|
6031
6271
|
"@types/responselike": {
|
|
6032
6272
|
"version": "1.0.0",
|
|
6033
|
-
"extraneous": true,
|
|
6034
6273
|
"requires": {
|
|
6035
6274
|
"@types/node": "*"
|
|
6036
6275
|
}
|
|
@@ -6053,10 +6292,9 @@
|
|
|
6053
6292
|
}
|
|
6054
6293
|
},
|
|
6055
6294
|
"@types/serve-static": {
|
|
6056
|
-
"version": "1.
|
|
6057
|
-
"extraneous": true,
|
|
6295
|
+
"version": "1.15.0",
|
|
6058
6296
|
"requires": {
|
|
6059
|
-
"@types/mime": "
|
|
6297
|
+
"@types/mime": "*",
|
|
6060
6298
|
"@types/node": "*"
|
|
6061
6299
|
}
|
|
6062
6300
|
},
|
|
@@ -6081,7 +6319,6 @@
|
|
|
6081
6319
|
},
|
|
6082
6320
|
"@wdio/types": {
|
|
6083
6321
|
"version": "7.20.7",
|
|
6084
|
-
"extraneous": true,
|
|
6085
6322
|
"requires": {
|
|
6086
6323
|
"@types/node": "^18.0.0",
|
|
6087
6324
|
"got": "^11.8.1"
|
|
@@ -6144,7 +6381,7 @@
|
|
|
6144
6381
|
"version": "1.1.0"
|
|
6145
6382
|
},
|
|
6146
6383
|
"appium-adb": {
|
|
6147
|
-
"version": "9.10.
|
|
6384
|
+
"version": "9.10.9",
|
|
6148
6385
|
"requires": {
|
|
6149
6386
|
"@appium/support": "^2.55.3",
|
|
6150
6387
|
"@babel/runtime": "^7.0.0",
|
|
@@ -6157,20 +6394,36 @@
|
|
|
6157
6394
|
"lru-cache": "^7.3.0",
|
|
6158
6395
|
"semver": "^7.0.0",
|
|
6159
6396
|
"source-map-support": "^0.x",
|
|
6160
|
-
"teen_process": "^
|
|
6397
|
+
"teen_process": "^2.0.1",
|
|
6161
6398
|
"utf7": "^1.0.2"
|
|
6399
|
+
},
|
|
6400
|
+
"dependencies": {
|
|
6401
|
+
"semver": {
|
|
6402
|
+
"version": "7.3.7",
|
|
6403
|
+
"requires": {
|
|
6404
|
+
"lru-cache": "^6.0.0"
|
|
6405
|
+
},
|
|
6406
|
+
"dependencies": {
|
|
6407
|
+
"lru-cache": {
|
|
6408
|
+
"version": "6.0.0",
|
|
6409
|
+
"requires": {
|
|
6410
|
+
"yallist": "^4.0.0"
|
|
6411
|
+
}
|
|
6412
|
+
}
|
|
6413
|
+
}
|
|
6414
|
+
}
|
|
6162
6415
|
}
|
|
6163
6416
|
},
|
|
6164
6417
|
"appium-android-driver": {
|
|
6165
|
-
"version": "5.2.
|
|
6418
|
+
"version": "5.2.12",
|
|
6166
6419
|
"requires": {
|
|
6167
6420
|
"@babel/runtime": "^7.0.0",
|
|
6168
|
-
"appium-adb": "^9.10.
|
|
6169
|
-
"appium-chromedriver": "^5.
|
|
6421
|
+
"appium-adb": "^9.10.9",
|
|
6422
|
+
"appium-chromedriver": "^5.2.0",
|
|
6170
6423
|
"asyncbox": "^2.8.0",
|
|
6171
6424
|
"axios": "^0.x",
|
|
6172
6425
|
"bluebird": "^3.4.7",
|
|
6173
|
-
"io.appium.settings": "^4.1
|
|
6426
|
+
"io.appium.settings": "^4.2.1",
|
|
6174
6427
|
"jimp": "^0.x",
|
|
6175
6428
|
"lodash": "^4.17.4",
|
|
6176
6429
|
"lru-cache": "^7.3.0",
|
|
@@ -6181,29 +6434,59 @@
|
|
|
6181
6434
|
"semver": "^7.0.0",
|
|
6182
6435
|
"shared-preferences-builder": "^0.x",
|
|
6183
6436
|
"source-map-support": "^0.x",
|
|
6184
|
-
"teen_process": "^
|
|
6437
|
+
"teen_process": "^2.0.0",
|
|
6185
6438
|
"ws": "^8.0.0"
|
|
6439
|
+
},
|
|
6440
|
+
"dependencies": {
|
|
6441
|
+
"semver": {
|
|
6442
|
+
"version": "7.3.7",
|
|
6443
|
+
"requires": {
|
|
6444
|
+
"lru-cache": "^6.0.0"
|
|
6445
|
+
},
|
|
6446
|
+
"dependencies": {
|
|
6447
|
+
"lru-cache": {
|
|
6448
|
+
"version": "6.0.0",
|
|
6449
|
+
"requires": {
|
|
6450
|
+
"yallist": "^4.0.0"
|
|
6451
|
+
}
|
|
6452
|
+
}
|
|
6453
|
+
}
|
|
6454
|
+
}
|
|
6186
6455
|
}
|
|
6187
6456
|
},
|
|
6188
6457
|
"appium-chromedriver": {
|
|
6189
|
-
"version": "5.1
|
|
6458
|
+
"version": "5.2.1",
|
|
6190
6459
|
"requires": {
|
|
6191
6460
|
"@babel/runtime": "^7.0.0",
|
|
6192
6461
|
"@xmldom/xmldom": "^0.x",
|
|
6193
6462
|
"asyncbox": "^2.0.2",
|
|
6194
6463
|
"axios": "^0.x",
|
|
6195
6464
|
"bluebird": "^3.5.1",
|
|
6196
|
-
"compare-versions": "^
|
|
6465
|
+
"compare-versions": "^5.0.0",
|
|
6197
6466
|
"fancy-log": "^2.0.0",
|
|
6198
6467
|
"lodash": "^4.17.4",
|
|
6199
6468
|
"semver": "^7.0.0",
|
|
6200
6469
|
"source-map-support": "^0.x",
|
|
6201
|
-
"teen_process": "^
|
|
6470
|
+
"teen_process": "^2.0.0",
|
|
6202
6471
|
"xpath": "^0.x"
|
|
6472
|
+
},
|
|
6473
|
+
"dependencies": {
|
|
6474
|
+
"lru-cache": {
|
|
6475
|
+
"version": "6.0.0",
|
|
6476
|
+
"requires": {
|
|
6477
|
+
"yallist": "^4.0.0"
|
|
6478
|
+
}
|
|
6479
|
+
},
|
|
6480
|
+
"semver": {
|
|
6481
|
+
"version": "7.3.7",
|
|
6482
|
+
"requires": {
|
|
6483
|
+
"lru-cache": "^6.0.0"
|
|
6484
|
+
}
|
|
6485
|
+
}
|
|
6203
6486
|
}
|
|
6204
6487
|
},
|
|
6205
6488
|
"appium-uiautomator2-server": {
|
|
6206
|
-
"version": "5.
|
|
6489
|
+
"version": "5.7.0"
|
|
6207
6490
|
},
|
|
6208
6491
|
"aproba": {
|
|
6209
6492
|
"version": "2.0.0"
|
|
@@ -6235,17 +6518,6 @@
|
|
|
6235
6518
|
"readable-stream": "^2.0.0"
|
|
6236
6519
|
},
|
|
6237
6520
|
"dependencies": {
|
|
6238
|
-
"glob": {
|
|
6239
|
-
"version": "7.2.3",
|
|
6240
|
-
"requires": {
|
|
6241
|
-
"fs.realpath": "^1.0.0",
|
|
6242
|
-
"inflight": "^1.0.4",
|
|
6243
|
-
"inherits": "2",
|
|
6244
|
-
"minimatch": "^3.1.1",
|
|
6245
|
-
"once": "^1.3.0",
|
|
6246
|
-
"path-is-absolute": "^1.0.0"
|
|
6247
|
-
}
|
|
6248
|
-
},
|
|
6249
6521
|
"readable-stream": {
|
|
6250
6522
|
"version": "2.3.7",
|
|
6251
6523
|
"requires": {
|
|
@@ -6419,12 +6691,10 @@
|
|
|
6419
6691
|
"extraneous": true
|
|
6420
6692
|
},
|
|
6421
6693
|
"cacheable-lookup": {
|
|
6422
|
-
"version": "5.0.4"
|
|
6423
|
-
"extraneous": true
|
|
6694
|
+
"version": "5.0.4"
|
|
6424
6695
|
},
|
|
6425
6696
|
"cacheable-request": {
|
|
6426
6697
|
"version": "7.0.2",
|
|
6427
|
-
"extraneous": true,
|
|
6428
6698
|
"requires": {
|
|
6429
6699
|
"clone-response": "^1.0.2",
|
|
6430
6700
|
"get-stream": "^5.1.0",
|
|
@@ -6437,18 +6707,9 @@
|
|
|
6437
6707
|
"dependencies": {
|
|
6438
6708
|
"get-stream": {
|
|
6439
6709
|
"version": "5.2.0",
|
|
6440
|
-
"extraneous": true,
|
|
6441
6710
|
"requires": {
|
|
6442
6711
|
"pump": "^3.0.0"
|
|
6443
6712
|
}
|
|
6444
|
-
},
|
|
6445
|
-
"pump": {
|
|
6446
|
-
"version": "3.0.0",
|
|
6447
|
-
"extraneous": true,
|
|
6448
|
-
"requires": {
|
|
6449
|
-
"end-of-stream": "^1.1.0",
|
|
6450
|
-
"once": "^1.3.1"
|
|
6451
|
-
}
|
|
6452
6713
|
}
|
|
6453
6714
|
}
|
|
6454
6715
|
},
|
|
@@ -6514,9 +6775,12 @@
|
|
|
6514
6775
|
"version": "2.7.0",
|
|
6515
6776
|
"extraneous": true
|
|
6516
6777
|
},
|
|
6778
|
+
"clone": {
|
|
6779
|
+
"version": "1.0.4",
|
|
6780
|
+
"extraneous": true
|
|
6781
|
+
},
|
|
6517
6782
|
"clone-response": {
|
|
6518
6783
|
"version": "1.0.3",
|
|
6519
|
-
"extraneous": true,
|
|
6520
6784
|
"requires": {
|
|
6521
6785
|
"mimic-response": "^1.0.0"
|
|
6522
6786
|
}
|
|
@@ -6563,16 +6827,11 @@
|
|
|
6563
6827
|
"delayed-stream": "~1.0.0"
|
|
6564
6828
|
}
|
|
6565
6829
|
},
|
|
6566
|
-
"commander": {
|
|
6567
|
-
"version": "6.2.1",
|
|
6568
|
-
"extraneous": true
|
|
6569
|
-
},
|
|
6570
6830
|
"compare-versions": {
|
|
6571
|
-
"version": "
|
|
6831
|
+
"version": "5.0.1"
|
|
6572
6832
|
},
|
|
6573
6833
|
"compress-brotli": {
|
|
6574
6834
|
"version": "1.3.8",
|
|
6575
|
-
"extraneous": true,
|
|
6576
6835
|
"requires": {
|
|
6577
6836
|
"@types/json-buffer": "~3.0.0",
|
|
6578
6837
|
"json-buffer": "~3.0.1"
|
|
@@ -6631,6 +6890,22 @@
|
|
|
6631
6890
|
"readable-stream": "^3.4.0"
|
|
6632
6891
|
}
|
|
6633
6892
|
},
|
|
6893
|
+
"cross-env": {
|
|
6894
|
+
"version": "7.0.3",
|
|
6895
|
+
"extraneous": true,
|
|
6896
|
+
"requires": {
|
|
6897
|
+
"cross-spawn": "^7.0.1"
|
|
6898
|
+
}
|
|
6899
|
+
},
|
|
6900
|
+
"cross-spawn": {
|
|
6901
|
+
"version": "7.0.3",
|
|
6902
|
+
"extraneous": true,
|
|
6903
|
+
"requires": {
|
|
6904
|
+
"path-key": "^3.1.0",
|
|
6905
|
+
"shebang-command": "^2.0.0",
|
|
6906
|
+
"which": "^2.0.1"
|
|
6907
|
+
}
|
|
6908
|
+
},
|
|
6634
6909
|
"css-selector-parser": {
|
|
6635
6910
|
"version": "1.4.1"
|
|
6636
6911
|
},
|
|
@@ -6643,14 +6918,12 @@
|
|
|
6643
6918
|
},
|
|
6644
6919
|
"decompress-response": {
|
|
6645
6920
|
"version": "6.0.0",
|
|
6646
|
-
"extraneous": true,
|
|
6647
6921
|
"requires": {
|
|
6648
6922
|
"mimic-response": "^3.1.0"
|
|
6649
6923
|
},
|
|
6650
6924
|
"dependencies": {
|
|
6651
6925
|
"mimic-response": {
|
|
6652
|
-
"version": "3.1.0"
|
|
6653
|
-
"extraneous": true
|
|
6926
|
+
"version": "3.1.0"
|
|
6654
6927
|
}
|
|
6655
6928
|
}
|
|
6656
6929
|
},
|
|
@@ -6666,17 +6939,10 @@
|
|
|
6666
6939
|
"extraneous": true,
|
|
6667
6940
|
"requires": {
|
|
6668
6941
|
"clone": "^1.0.2"
|
|
6669
|
-
},
|
|
6670
|
-
"dependencies": {
|
|
6671
|
-
"clone": {
|
|
6672
|
-
"version": "1.0.4",
|
|
6673
|
-
"extraneous": true
|
|
6674
|
-
}
|
|
6675
6942
|
}
|
|
6676
6943
|
},
|
|
6677
6944
|
"defer-to-connect": {
|
|
6678
|
-
"version": "2.0.1"
|
|
6679
|
-
"extraneous": true
|
|
6945
|
+
"version": "2.0.1"
|
|
6680
6946
|
},
|
|
6681
6947
|
"define-properties": {
|
|
6682
6948
|
"version": "1.1.4",
|
|
@@ -6718,9 +6984,6 @@
|
|
|
6718
6984
|
"version": "1.1.1",
|
|
6719
6985
|
"extraneous": true
|
|
6720
6986
|
},
|
|
6721
|
-
"emoji-regex": {
|
|
6722
|
-
"version": "8.0.0"
|
|
6723
|
-
},
|
|
6724
6987
|
"enabled": {
|
|
6725
6988
|
"version": "2.0.0",
|
|
6726
6989
|
"extraneous": true
|
|
@@ -6997,6 +7260,22 @@
|
|
|
6997
7260
|
"string-width": "^4.2.3",
|
|
6998
7261
|
"strip-ansi": "^6.0.1",
|
|
6999
7262
|
"wide-align": "^1.1.5"
|
|
7263
|
+
},
|
|
7264
|
+
"dependencies": {
|
|
7265
|
+
"emoji-regex": {
|
|
7266
|
+
"version": "8.0.0"
|
|
7267
|
+
},
|
|
7268
|
+
"is-fullwidth-code-point": {
|
|
7269
|
+
"version": "3.0.0"
|
|
7270
|
+
},
|
|
7271
|
+
"string-width": {
|
|
7272
|
+
"version": "4.2.3",
|
|
7273
|
+
"requires": {
|
|
7274
|
+
"emoji-regex": "^8.0.0",
|
|
7275
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
7276
|
+
"strip-ansi": "^6.0.1"
|
|
7277
|
+
}
|
|
7278
|
+
}
|
|
7000
7279
|
}
|
|
7001
7280
|
},
|
|
7002
7281
|
"get-func-name": {
|
|
@@ -7035,27 +7314,14 @@
|
|
|
7035
7314
|
}
|
|
7036
7315
|
},
|
|
7037
7316
|
"glob": {
|
|
7038
|
-
"version": "
|
|
7317
|
+
"version": "7.2.3",
|
|
7039
7318
|
"requires": {
|
|
7040
7319
|
"fs.realpath": "^1.0.0",
|
|
7041
7320
|
"inflight": "^1.0.4",
|
|
7042
7321
|
"inherits": "2",
|
|
7043
|
-
"minimatch": "^
|
|
7044
|
-
"once": "^1.3.0"
|
|
7045
|
-
|
|
7046
|
-
"dependencies": {
|
|
7047
|
-
"brace-expansion": {
|
|
7048
|
-
"version": "2.0.1",
|
|
7049
|
-
"requires": {
|
|
7050
|
-
"balanced-match": "^1.0.0"
|
|
7051
|
-
}
|
|
7052
|
-
},
|
|
7053
|
-
"minimatch": {
|
|
7054
|
-
"version": "5.1.0",
|
|
7055
|
-
"requires": {
|
|
7056
|
-
"brace-expansion": "^2.0.1"
|
|
7057
|
-
}
|
|
7058
|
-
}
|
|
7322
|
+
"minimatch": "^3.1.1",
|
|
7323
|
+
"once": "^1.3.0",
|
|
7324
|
+
"path-is-absolute": "^1.0.0"
|
|
7059
7325
|
}
|
|
7060
7326
|
},
|
|
7061
7327
|
"global": {
|
|
@@ -7067,7 +7333,6 @@
|
|
|
7067
7333
|
},
|
|
7068
7334
|
"got": {
|
|
7069
7335
|
"version": "11.8.5",
|
|
7070
|
-
"extraneous": true,
|
|
7071
7336
|
"requires": {
|
|
7072
7337
|
"@sindresorhus/is": "^4.0.0",
|
|
7073
7338
|
"@szmarczak/http-timer": "^4.0.5",
|
|
@@ -7123,8 +7388,7 @@
|
|
|
7123
7388
|
"version": "2.8.9"
|
|
7124
7389
|
},
|
|
7125
7390
|
"http-cache-semantics": {
|
|
7126
|
-
"version": "4.1.0"
|
|
7127
|
-
"extraneous": true
|
|
7391
|
+
"version": "4.1.0"
|
|
7128
7392
|
},
|
|
7129
7393
|
"http-errors": {
|
|
7130
7394
|
"version": "2.0.0",
|
|
@@ -7143,7 +7407,6 @@
|
|
|
7143
7407
|
},
|
|
7144
7408
|
"http2-wrapper": {
|
|
7145
7409
|
"version": "1.0.3",
|
|
7146
|
-
"extraneous": true,
|
|
7147
7410
|
"requires": {
|
|
7148
7411
|
"quick-lru": "^5.1.1",
|
|
7149
7412
|
"resolve-alpn": "^1.0.0"
|
|
@@ -7181,7 +7444,7 @@
|
|
|
7181
7444
|
"version": "2.0.4"
|
|
7182
7445
|
},
|
|
7183
7446
|
"ini": {
|
|
7184
|
-
"version": "3.0.
|
|
7447
|
+
"version": "3.0.1"
|
|
7185
7448
|
},
|
|
7186
7449
|
"internal-slot": {
|
|
7187
7450
|
"version": "1.0.3",
|
|
@@ -7193,7 +7456,7 @@
|
|
|
7193
7456
|
}
|
|
7194
7457
|
},
|
|
7195
7458
|
"io.appium.settings": {
|
|
7196
|
-
"version": "4.1
|
|
7459
|
+
"version": "4.2.1"
|
|
7197
7460
|
},
|
|
7198
7461
|
"ipaddr.js": {
|
|
7199
7462
|
"version": "1.9.1",
|
|
@@ -7222,7 +7485,7 @@
|
|
|
7222
7485
|
"extraneous": true
|
|
7223
7486
|
},
|
|
7224
7487
|
"is-core-module": {
|
|
7225
|
-
"version": "2.
|
|
7488
|
+
"version": "2.10.0",
|
|
7226
7489
|
"requires": {
|
|
7227
7490
|
"has": "^1.0.3"
|
|
7228
7491
|
}
|
|
@@ -7234,9 +7497,6 @@
|
|
|
7234
7497
|
"has-tostringtag": "^1.0.0"
|
|
7235
7498
|
}
|
|
7236
7499
|
},
|
|
7237
|
-
"is-fullwidth-code-point": {
|
|
7238
|
-
"version": "3.0.0"
|
|
7239
|
-
},
|
|
7240
7500
|
"is-function": {
|
|
7241
7501
|
"version": "1.0.2"
|
|
7242
7502
|
},
|
|
@@ -7365,7 +7625,7 @@
|
|
|
7365
7625
|
}
|
|
7366
7626
|
},
|
|
7367
7627
|
"jsdoc-plugin-typescript": {
|
|
7368
|
-
"version": "2.1.
|
|
7628
|
+
"version": "2.1.1",
|
|
7369
7629
|
"extraneous": true,
|
|
7370
7630
|
"requires": {
|
|
7371
7631
|
"string.prototype.matchall": "^4.0.0"
|
|
@@ -7391,15 +7651,13 @@
|
|
|
7391
7651
|
}
|
|
7392
7652
|
},
|
|
7393
7653
|
"json-buffer": {
|
|
7394
|
-
"version": "3.0.1"
|
|
7395
|
-
"extraneous": true
|
|
7654
|
+
"version": "3.0.1"
|
|
7396
7655
|
},
|
|
7397
7656
|
"json-parse-even-better-errors": {
|
|
7398
7657
|
"version": "2.3.1"
|
|
7399
7658
|
},
|
|
7400
7659
|
"json-schema": {
|
|
7401
|
-
"version": "0.4.0"
|
|
7402
|
-
"extraneous": true
|
|
7660
|
+
"version": "0.4.0"
|
|
7403
7661
|
},
|
|
7404
7662
|
"json-schema-traverse": {
|
|
7405
7663
|
"version": "1.0.0",
|
|
@@ -7410,8 +7668,7 @@
|
|
|
7410
7668
|
"dev": true
|
|
7411
7669
|
},
|
|
7412
7670
|
"keyv": {
|
|
7413
|
-
"version": "4.
|
|
7414
|
-
"extraneous": true,
|
|
7671
|
+
"version": "4.4.1",
|
|
7415
7672
|
"requires": {
|
|
7416
7673
|
"compress-brotli": "^1.3.8",
|
|
7417
7674
|
"json-buffer": "3.0.1"
|
|
@@ -7588,11 +7845,10 @@
|
|
|
7588
7845
|
}
|
|
7589
7846
|
},
|
|
7590
7847
|
"lowercase-keys": {
|
|
7591
|
-
"version": "2.0.0"
|
|
7592
|
-
"extraneous": true
|
|
7848
|
+
"version": "2.0.0"
|
|
7593
7849
|
},
|
|
7594
7850
|
"lru-cache": {
|
|
7595
|
-
"version": "7.13.
|
|
7851
|
+
"version": "7.13.2"
|
|
7596
7852
|
},
|
|
7597
7853
|
"markdown-it": {
|
|
7598
7854
|
"version": "12.3.2",
|
|
@@ -7611,7 +7867,7 @@
|
|
|
7611
7867
|
"requires": {}
|
|
7612
7868
|
},
|
|
7613
7869
|
"marked": {
|
|
7614
|
-
"version": "4.0
|
|
7870
|
+
"version": "4.1.0",
|
|
7615
7871
|
"extraneous": true
|
|
7616
7872
|
},
|
|
7617
7873
|
"mdurl": {
|
|
@@ -7670,8 +7926,7 @@
|
|
|
7670
7926
|
"extraneous": true
|
|
7671
7927
|
},
|
|
7672
7928
|
"mimic-response": {
|
|
7673
|
-
"version": "1.0.1"
|
|
7674
|
-
"extraneous": true
|
|
7929
|
+
"version": "1.0.1"
|
|
7675
7930
|
},
|
|
7676
7931
|
"min-document": {
|
|
7677
7932
|
"version": "2.19.0",
|
|
@@ -7698,7 +7953,7 @@
|
|
|
7698
7953
|
"version": "2.29.4"
|
|
7699
7954
|
},
|
|
7700
7955
|
"moment-timezone": {
|
|
7701
|
-
"version": "0.5.
|
|
7956
|
+
"version": "0.5.37",
|
|
7702
7957
|
"requires": {
|
|
7703
7958
|
"moment": ">= 2.9.0"
|
|
7704
7959
|
}
|
|
@@ -7812,8 +8067,7 @@
|
|
|
7812
8067
|
"version": "3.0.0"
|
|
7813
8068
|
},
|
|
7814
8069
|
"normalize-url": {
|
|
7815
|
-
"version": "6.1.0"
|
|
7816
|
-
"extraneous": true
|
|
8070
|
+
"version": "6.1.0"
|
|
7817
8071
|
},
|
|
7818
8072
|
"npmlog": {
|
|
7819
8073
|
"version": "6.0.2",
|
|
@@ -7833,12 +8087,12 @@
|
|
|
7833
8087
|
"extraneous": true
|
|
7834
8088
|
},
|
|
7835
8089
|
"object.assign": {
|
|
7836
|
-
"version": "4.1.
|
|
8090
|
+
"version": "4.1.4",
|
|
7837
8091
|
"extraneous": true,
|
|
7838
8092
|
"requires": {
|
|
7839
|
-
"call-bind": "^1.0.
|
|
7840
|
-
"define-properties": "^1.1.
|
|
7841
|
-
"has-symbols": "^1.0.
|
|
8093
|
+
"call-bind": "^1.0.2",
|
|
8094
|
+
"define-properties": "^1.1.4",
|
|
8095
|
+
"has-symbols": "^1.0.3",
|
|
7842
8096
|
"object-keys": "^1.1.1"
|
|
7843
8097
|
}
|
|
7844
8098
|
},
|
|
@@ -7930,8 +8184,7 @@
|
|
|
7930
8184
|
}
|
|
7931
8185
|
},
|
|
7932
8186
|
"p-cancelable": {
|
|
7933
|
-
"version": "2.1.1"
|
|
7934
|
-
"extraneous": true
|
|
8187
|
+
"version": "2.1.1"
|
|
7935
8188
|
},
|
|
7936
8189
|
"p-limit": {
|
|
7937
8190
|
"version": "3.1.0",
|
|
@@ -7950,6 +8203,12 @@
|
|
|
7950
8203
|
"extraneous": true,
|
|
7951
8204
|
"requires": {
|
|
7952
8205
|
"commander": "^6.2.0"
|
|
8206
|
+
},
|
|
8207
|
+
"dependencies": {
|
|
8208
|
+
"commander": {
|
|
8209
|
+
"version": "6.2.1",
|
|
8210
|
+
"extraneous": true
|
|
8211
|
+
}
|
|
7953
8212
|
}
|
|
7954
8213
|
},
|
|
7955
8214
|
"pako": {
|
|
@@ -7993,6 +8252,10 @@
|
|
|
7993
8252
|
"path-is-absolute": {
|
|
7994
8253
|
"version": "1.0.1"
|
|
7995
8254
|
},
|
|
8255
|
+
"path-key": {
|
|
8256
|
+
"version": "3.1.1",
|
|
8257
|
+
"extraneous": true
|
|
8258
|
+
},
|
|
7996
8259
|
"path-parse": {
|
|
7997
8260
|
"version": "1.0.7"
|
|
7998
8261
|
},
|
|
@@ -8041,11 +8304,11 @@
|
|
|
8041
8304
|
"version": "6.0.0"
|
|
8042
8305
|
},
|
|
8043
8306
|
"portfinder": {
|
|
8044
|
-
"version": "1.0.
|
|
8307
|
+
"version": "1.0.32",
|
|
8045
8308
|
"requires": {
|
|
8046
|
-
"async": "^2.6.
|
|
8047
|
-
"debug": "^3.
|
|
8048
|
-
"mkdirp": "^0.5.
|
|
8309
|
+
"async": "^2.6.4",
|
|
8310
|
+
"debug": "^3.2.7",
|
|
8311
|
+
"mkdirp": "^0.5.6"
|
|
8049
8312
|
},
|
|
8050
8313
|
"dependencies": {
|
|
8051
8314
|
"async": {
|
|
@@ -8091,6 +8354,13 @@
|
|
|
8091
8354
|
"ipaddr.js": "1.9.1"
|
|
8092
8355
|
}
|
|
8093
8356
|
},
|
|
8357
|
+
"pump": {
|
|
8358
|
+
"version": "3.0.0",
|
|
8359
|
+
"requires": {
|
|
8360
|
+
"end-of-stream": "^1.1.0",
|
|
8361
|
+
"once": "^1.3.1"
|
|
8362
|
+
}
|
|
8363
|
+
},
|
|
8094
8364
|
"punycode": {
|
|
8095
8365
|
"version": "2.1.1",
|
|
8096
8366
|
"extraneous": true
|
|
@@ -8103,8 +8373,7 @@
|
|
|
8103
8373
|
}
|
|
8104
8374
|
},
|
|
8105
8375
|
"quick-lru": {
|
|
8106
|
-
"version": "5.1.1"
|
|
8107
|
-
"extraneous": true
|
|
8376
|
+
"version": "5.1.1"
|
|
8108
8377
|
},
|
|
8109
8378
|
"range-parser": {
|
|
8110
8379
|
"version": "1.2.1",
|
|
@@ -8194,15 +8463,13 @@
|
|
|
8194
8463
|
}
|
|
8195
8464
|
},
|
|
8196
8465
|
"resolve-alpn": {
|
|
8197
|
-
"version": "1.2.1"
|
|
8198
|
-
"extraneous": true
|
|
8466
|
+
"version": "1.2.1"
|
|
8199
8467
|
},
|
|
8200
8468
|
"resolve-from": {
|
|
8201
8469
|
"version": "5.0.0"
|
|
8202
8470
|
},
|
|
8203
8471
|
"responselike": {
|
|
8204
8472
|
"version": "2.0.1",
|
|
8205
|
-
"extraneous": true,
|
|
8206
8473
|
"requires": {
|
|
8207
8474
|
"lowercase-keys": "^2.0.0"
|
|
8208
8475
|
}
|
|
@@ -8219,19 +8486,6 @@
|
|
|
8219
8486
|
"version": "3.0.2",
|
|
8220
8487
|
"requires": {
|
|
8221
8488
|
"glob": "^7.1.3"
|
|
8222
|
-
},
|
|
8223
|
-
"dependencies": {
|
|
8224
|
-
"glob": {
|
|
8225
|
-
"version": "7.2.3",
|
|
8226
|
-
"requires": {
|
|
8227
|
-
"fs.realpath": "^1.0.0",
|
|
8228
|
-
"inflight": "^1.0.4",
|
|
8229
|
-
"inherits": "2",
|
|
8230
|
-
"minimatch": "^3.1.1",
|
|
8231
|
-
"once": "^1.3.0",
|
|
8232
|
-
"path-is-absolute": "^1.0.0"
|
|
8233
|
-
}
|
|
8234
|
-
}
|
|
8235
8489
|
}
|
|
8236
8490
|
},
|
|
8237
8491
|
"safe-buffer": {
|
|
@@ -8254,20 +8508,6 @@
|
|
|
8254
8508
|
"sax": {
|
|
8255
8509
|
"version": "1.2.4"
|
|
8256
8510
|
},
|
|
8257
|
-
"semver": {
|
|
8258
|
-
"version": "7.3.7",
|
|
8259
|
-
"requires": {
|
|
8260
|
-
"lru-cache": "^6.0.0"
|
|
8261
|
-
},
|
|
8262
|
-
"dependencies": {
|
|
8263
|
-
"lru-cache": {
|
|
8264
|
-
"version": "6.0.0",
|
|
8265
|
-
"requires": {
|
|
8266
|
-
"yallist": "^4.0.0"
|
|
8267
|
-
}
|
|
8268
|
-
}
|
|
8269
|
-
}
|
|
8270
|
-
},
|
|
8271
8511
|
"send": {
|
|
8272
8512
|
"version": "0.18.0",
|
|
8273
8513
|
"extraneous": true,
|
|
@@ -8356,6 +8596,17 @@
|
|
|
8356
8596
|
}
|
|
8357
8597
|
}
|
|
8358
8598
|
},
|
|
8599
|
+
"shebang-command": {
|
|
8600
|
+
"version": "2.0.0",
|
|
8601
|
+
"extraneous": true,
|
|
8602
|
+
"requires": {
|
|
8603
|
+
"shebang-regex": "^3.0.0"
|
|
8604
|
+
}
|
|
8605
|
+
},
|
|
8606
|
+
"shebang-regex": {
|
|
8607
|
+
"version": "3.0.0",
|
|
8608
|
+
"extraneous": true
|
|
8609
|
+
},
|
|
8359
8610
|
"shell-quote": {
|
|
8360
8611
|
"version": "1.7.3"
|
|
8361
8612
|
},
|
|
@@ -8433,7 +8684,7 @@
|
|
|
8433
8684
|
}
|
|
8434
8685
|
},
|
|
8435
8686
|
"spdx-license-ids": {
|
|
8436
|
-
"version": "3.0.
|
|
8687
|
+
"version": "3.0.12"
|
|
8437
8688
|
},
|
|
8438
8689
|
"stack-trace": {
|
|
8439
8690
|
"version": "0.0.10",
|
|
@@ -8464,14 +8715,6 @@
|
|
|
8464
8715
|
}
|
|
8465
8716
|
}
|
|
8466
8717
|
},
|
|
8467
|
-
"string-width": {
|
|
8468
|
-
"version": "4.2.3",
|
|
8469
|
-
"requires": {
|
|
8470
|
-
"emoji-regex": "^8.0.0",
|
|
8471
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
8472
|
-
"strip-ansi": "^6.0.1"
|
|
8473
|
-
}
|
|
8474
|
-
},
|
|
8475
8718
|
"string.prototype.matchall": {
|
|
8476
8719
|
"version": "4.0.7",
|
|
8477
8720
|
"extraneous": true,
|
|
@@ -8538,14 +8781,14 @@
|
|
|
8538
8781
|
}
|
|
8539
8782
|
},
|
|
8540
8783
|
"teen_process": {
|
|
8541
|
-
"version": "
|
|
8784
|
+
"version": "2.0.1",
|
|
8542
8785
|
"requires": {
|
|
8543
|
-
"@babel/runtime": "
|
|
8544
|
-
"bluebird": "
|
|
8545
|
-
"lodash": "
|
|
8546
|
-
"shell-quote": "
|
|
8547
|
-
"source-map-support": "
|
|
8548
|
-
"which": "
|
|
8786
|
+
"@babel/runtime": "7.18.9",
|
|
8787
|
+
"bluebird": "3.7.2",
|
|
8788
|
+
"lodash": "4.17.21",
|
|
8789
|
+
"shell-quote": "1.7.3",
|
|
8790
|
+
"source-map-support": "0.5.21",
|
|
8791
|
+
"which": "2.0.2"
|
|
8549
8792
|
}
|
|
8550
8793
|
},
|
|
8551
8794
|
"text-hex": {
|
|
@@ -8580,7 +8823,7 @@
|
|
|
8580
8823
|
"dev": true
|
|
8581
8824
|
},
|
|
8582
8825
|
"type-fest": {
|
|
8583
|
-
"version": "2.
|
|
8826
|
+
"version": "2.18.0"
|
|
8584
8827
|
},
|
|
8585
8828
|
"type-is": {
|
|
8586
8829
|
"version": "1.6.18",
|
|
@@ -8591,8 +8834,8 @@
|
|
|
8591
8834
|
}
|
|
8592
8835
|
},
|
|
8593
8836
|
"typescript": {
|
|
8594
|
-
"version": "4.
|
|
8595
|
-
"
|
|
8837
|
+
"version": "4.8.2",
|
|
8838
|
+
"peer": true
|
|
8596
8839
|
},
|
|
8597
8840
|
"uc.micro": {
|
|
8598
8841
|
"version": "1.0.6",
|
|
@@ -8699,6 +8942,22 @@
|
|
|
8699
8942
|
"version": "1.1.5",
|
|
8700
8943
|
"requires": {
|
|
8701
8944
|
"string-width": "^1.0.2 || 2 || 3 || 4"
|
|
8945
|
+
},
|
|
8946
|
+
"dependencies": {
|
|
8947
|
+
"emoji-regex": {
|
|
8948
|
+
"version": "8.0.0"
|
|
8949
|
+
},
|
|
8950
|
+
"is-fullwidth-code-point": {
|
|
8951
|
+
"version": "3.0.0"
|
|
8952
|
+
},
|
|
8953
|
+
"string-width": {
|
|
8954
|
+
"version": "4.2.3",
|
|
8955
|
+
"requires": {
|
|
8956
|
+
"emoji-regex": "^8.0.0",
|
|
8957
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
8958
|
+
"strip-ansi": "^6.0.1"
|
|
8959
|
+
}
|
|
8960
|
+
}
|
|
8702
8961
|
}
|
|
8703
8962
|
},
|
|
8704
8963
|
"winston": {
|
|
@@ -8752,6 +9011,23 @@
|
|
|
8752
9011
|
"color-name": {
|
|
8753
9012
|
"version": "1.1.4",
|
|
8754
9013
|
"extraneous": true
|
|
9014
|
+
},
|
|
9015
|
+
"emoji-regex": {
|
|
9016
|
+
"version": "8.0.0",
|
|
9017
|
+
"extraneous": true
|
|
9018
|
+
},
|
|
9019
|
+
"is-fullwidth-code-point": {
|
|
9020
|
+
"version": "3.0.0",
|
|
9021
|
+
"extraneous": true
|
|
9022
|
+
},
|
|
9023
|
+
"string-width": {
|
|
9024
|
+
"version": "4.2.3",
|
|
9025
|
+
"extraneous": true,
|
|
9026
|
+
"requires": {
|
|
9027
|
+
"emoji-regex": "^8.0.0",
|
|
9028
|
+
"is-fullwidth-code-point": "^3.0.0",
|
|
9029
|
+
"strip-ansi": "^6.0.1"
|
|
9030
|
+
}
|
|
8755
9031
|
}
|
|
8756
9032
|
}
|
|
8757
9033
|
},
|