@screeb/react-native 0.4.0

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/package.json ADDED
@@ -0,0 +1,932 @@
1
+ {
2
+ "name": "@screeb/react-native",
3
+ "version": "0.4.0",
4
+ "description": "A react-native module to integrate Screeb mobile sdk for Android and/or iOS.",
5
+ "main": "lib/commonjs/index",
6
+ "module": "lib/module/index",
7
+ "types": "lib/typescript/index.d.ts",
8
+ "react-native": "src/index",
9
+ "source": "src/index",
10
+ "files": [
11
+ "src",
12
+ "lib",
13
+ "android",
14
+ "ios",
15
+ "cpp",
16
+ "screeb-module.podspec",
17
+ "!lib/typescript/example",
18
+ "!android/build",
19
+ "!ios/build",
20
+ "!**/__tests__",
21
+ "!**/__fixtures__",
22
+ "!**/__mocks__"
23
+ ],
24
+ "scripts": {
25
+ "test": "jest",
26
+ "typescript": "tsc --noEmit",
27
+ "lint": "eslint \"**/*.{js,ts,tsx}\"",
28
+ "prepare": "bob build",
29
+ "release": "release-it",
30
+ "example": "yarn --cwd example",
31
+ "pods": "cd example && pod-install --quiet",
32
+ "bootstrap": "yarn example && yarn && yarn pods"
33
+ },
34
+ "keywords": [
35
+ "react-native",
36
+ "ios",
37
+ "android",
38
+ "screeb",
39
+ "survey"
40
+ ],
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/ScreebApp/sdk-reactnative.git"
44
+ },
45
+ "author": "Clement <clement@screeb.app> (https://github.com/clement-screeb)",
46
+ "contributors": [
47
+ "Marty <martin@screeb.app> (https://github.com/MD4)",
48
+ "Samuel <samuel@screeb.app> (https://github.com/samber)"
49
+ ],
50
+ "license": "MIT",
51
+ "bugs": {
52
+ "url": "https://github.com/ScreebApp/sdk-reactnative/issues"
53
+ },
54
+ "homepage": "https://github.com/ScreebApp/sdk-reactnative#readme",
55
+ "publishConfig": {
56
+ "registry": "https://registry.npmjs.org/"
57
+ },
58
+ "devDependencies": {
59
+ "@commitlint/config-conventional": "^16.2.1",
60
+ "@react-native-community/eslint-config": "^3.0.1",
61
+ "@release-it/conventional-changelog": "^4.2.0",
62
+ "@types/jest": "^27.4.1",
63
+ "@types/react": "^17.0.39",
64
+ "@types/react-native": "^0.67.1",
65
+ "commitlint": "^16.2.1",
66
+ "eslint": "^8.10.0",
67
+ "eslint-config-prettier": "^8.4.0",
68
+ "eslint-plugin-prettier": "^4.0.0",
69
+ "husky": "^7.0.4",
70
+ "jest": "^27.5.1",
71
+ "pod-install": "^0.1.0",
72
+ "prettier": "^2.0.5",
73
+ "react": "^17.0.2",
74
+ "react-native": "^0.67.3",
75
+ "react-native-builder-bob": "^0.18.0",
76
+ "release-it": "^14.2.2",
77
+ "typescript": "^4.1.3"
78
+ },
79
+ "peerDependencies": {
80
+ "react": "*",
81
+ "react-native": "*"
82
+ },
83
+ "jest": {
84
+ "preset": "react-native",
85
+ "modulePathIgnorePatterns": [
86
+ "<rootDir>/example/node_modules",
87
+ "<rootDir>/lib/"
88
+ ]
89
+ },
90
+ "commitlint": {
91
+ "extends": [
92
+ "@commitlint/config-conventional"
93
+ ]
94
+ },
95
+ "release-it": {
96
+ "git": {
97
+ "commitMessage": "chore: release ${version}",
98
+ "tagName": "v${version}"
99
+ },
100
+ "npm": {
101
+ "publish": true
102
+ },
103
+ "github": {
104
+ "release": true
105
+ },
106
+ "plugins": {
107
+ "@release-it/conventional-changelog": {
108
+ "preset": "angular"
109
+ }
110
+ }
111
+ },
112
+ "eslintConfig": {
113
+ "root": true,
114
+ "extends": [
115
+ "@react-native-community",
116
+ "prettier"
117
+ ],
118
+ "rules": {
119
+ "prettier/prettier": [
120
+ "error",
121
+ {
122
+ "quoteProps": "consistent",
123
+ "singleQuote": true,
124
+ "tabWidth": 2,
125
+ "trailingComma": "es5",
126
+ "useTabs": false
127
+ }
128
+ ]
129
+ }
130
+ },
131
+ "eslintIgnore": [
132
+ "node_modules/",
133
+ "lib/"
134
+ ],
135
+ "prettier": {
136
+ "quoteProps": "consistent",
137
+ "singleQuote": true,
138
+ "tabWidth": 2,
139
+ "trailingComma": "es5",
140
+ "useTabs": false
141
+ },
142
+ "react-native-builder-bob": {
143
+ "source": "src",
144
+ "output": "lib",
145
+ "targets": [
146
+ "commonjs",
147
+ "module",
148
+ [
149
+ "typescript",
150
+ {
151
+ "project": "tsconfig.build.json"
152
+ }
153
+ ]
154
+ ]
155
+ },
156
+ "directories": {
157
+ "example": "example",
158
+ "lib": "lib"
159
+ },
160
+ "dependencies": {
161
+ "accepts": "^1.3.8",
162
+ "abab": "^2.0.5",
163
+ "absolute-path": "^0.0.0",
164
+ "acorn-globals": "^6.0.0",
165
+ "JSONStream": "^1.3.5",
166
+ "abort-controller": "^3.0.0",
167
+ "add-stream": "^1.0.0",
168
+ "acorn-jsx": "^5.3.2",
169
+ "acorn": "^8.7.0",
170
+ "acorn-walk": "^7.2.0",
171
+ "agent-base": "^6.0.2",
172
+ "ajv": "^6.12.6",
173
+ "ansi-align": "^3.0.1",
174
+ "aggregate-error": "^3.1.0",
175
+ "anser": "^1.4.10",
176
+ "ansi-fragments": "^0.2.1",
177
+ "ansi-escapes": "^4.3.2",
178
+ "appdirsjs": "^1.2.6",
179
+ "arr-flatten": "^1.1.0",
180
+ "arg": "^4.1.3",
181
+ "ansi-regex": "^5.0.1",
182
+ "ansi-styles": "^3.2.1",
183
+ "array-filter": "^0.0.1",
184
+ "anymatch": "^3.1.2",
185
+ "array-ify": "^1.0.0",
186
+ "arr-diff": "^4.0.0",
187
+ "array-map": "^0.0.0",
188
+ "arr-union": "^3.1.0",
189
+ "argparse": "^2.0.1",
190
+ "array-unique": "^0.3.2",
191
+ "array-reduce": "^0.0.0",
192
+ "array.prototype.flatmap": "^1.2.5",
193
+ "astral-regex": "^1.0.0",
194
+ "array-union": "^2.1.0",
195
+ "assign-symbols": "^1.0.0",
196
+ "arrify": "^1.0.1",
197
+ "at-least-node": "^1.0.0",
198
+ "async": "^2.6.3",
199
+ "async-limiter": "^1.0.1",
200
+ "array-includes": "^3.1.4",
201
+ "async-retry": "^1.3.3",
202
+ "asap": "^2.0.6",
203
+ "atob": "^2.1.2",
204
+ "babel-core": "^7.0.0-bridge.0",
205
+ "babel-eslint": "^10.1.0",
206
+ "ast-types": "^0.14.2",
207
+ "babel-plugin-dynamic-import-node": "^2.3.3",
208
+ "asynckit": "^0.4.0",
209
+ "babel-plugin-istanbul": "^6.1.1",
210
+ "babel-jest": "^27.5.1",
211
+ "babel-plugin-jest-hoist": "^27.5.1",
212
+ "babel-plugin-polyfill-corejs2": "^0.3.1",
213
+ "babel-plugin-polyfill-corejs3": "^0.5.2",
214
+ "babel-plugin-polyfill-regenerator": "^0.3.1",
215
+ "babel-plugin-syntax-trailing-function-commas": "^7.0.0-beta.0",
216
+ "babel-preset-fbjs": "^3.4.0",
217
+ "balanced-match": "^1.0.2",
218
+ "babel-preset-current-node-syntax": "^1.0.1",
219
+ "before-after-hook": "^2.2.2",
220
+ "base": "^0.11.2",
221
+ "babel-preset-jest": "^27.5.1",
222
+ "big-integer": "^1.6.51",
223
+ "bl": "^4.1.0",
224
+ "base64-js": "^1.5.1",
225
+ "bplist-parser": "^0.3.0",
226
+ "bplist-creator": "^0.1.0",
227
+ "boxen": "^5.1.2",
228
+ "braces": "^3.0.2",
229
+ "brace-expansion": "^1.1.11",
230
+ "bser": "^2.1.1",
231
+ "buffer": "^5.7.1",
232
+ "cache-base": "^1.0.1",
233
+ "buffer-from": "^1.1.2",
234
+ "browser-process-hrtime": "^1.0.0",
235
+ "cacheable-request": "^7.0.2",
236
+ "bytes": "^3.0.0",
237
+ "call-bind": "^1.0.2",
238
+ "browserslist": "^4.20.2",
239
+ "caller-callsite": "^2.0.0",
240
+ "caller-path": "^2.0.0",
241
+ "callsites": "^3.1.0",
242
+ "camelcase": "^5.3.1",
243
+ "camelcase-keys": "^6.2.2",
244
+ "cacheable-lookup": "^5.0.4",
245
+ "class-utils": "^0.3.6",
246
+ "chalk": "^2.4.2",
247
+ "char-regex": "^1.0.2",
248
+ "chardet": "^0.7.0",
249
+ "ci-info": "^3.3.0",
250
+ "capture-exit": "^2.0.0",
251
+ "caniuse-lite": "^1.0.30001319",
252
+ "cjs-module-lexer": "^1.2.2",
253
+ "clean-stack": "^2.2.0",
254
+ "cli-boxes": "^2.2.1",
255
+ "cli-cursor": "^2.1.0",
256
+ "cli-width": "^3.0.0",
257
+ "cli-spinners": "^2.6.1",
258
+ "cliui": "^7.0.4",
259
+ "clone-response": "^1.0.2",
260
+ "clone": "^1.0.4",
261
+ "clone-deep": "^4.0.1",
262
+ "color-name": "^1.1.3",
263
+ "co": "^4.6.0",
264
+ "collect-v8-coverage": "^1.0.1",
265
+ "collection-visit": "^1.0.0",
266
+ "colorette": "^1.4.0",
267
+ "commander": "^2.20.3",
268
+ "color-convert": "^1.9.3",
269
+ "command-exists": "^1.2.9",
270
+ "compressible": "^2.0.18",
271
+ "colors": "^1.4.0",
272
+ "commondir": "^1.0.1",
273
+ "compression": "^1.7.4",
274
+ "combined-stream": "^1.0.8",
275
+ "concat-map": "^0.0.1",
276
+ "component-emitter": "^1.3.0",
277
+ "compare-func": "^2.0.0",
278
+ "connect": "^3.7.0",
279
+ "conventional-changelog-atom": "^2.0.8",
280
+ "configstore": "^5.0.1",
281
+ "conventional-changelog-angular": "^5.0.13",
282
+ "conventional-changelog": "^3.1.25",
283
+ "conventional-changelog-core": "^4.2.4",
284
+ "concat-stream": "^2.0.0",
285
+ "conventional-changelog-codemirror": "^2.0.8",
286
+ "conventional-changelog-conventionalcommits": "^4.6.3",
287
+ "conventional-changelog-express": "^2.0.6",
288
+ "conventional-changelog-eslint": "^3.0.9",
289
+ "conventional-changelog-ember": "^2.0.9",
290
+ "conventional-changelog-jshint": "^2.0.9",
291
+ "conventional-changelog-writer": "^5.0.1",
292
+ "conventional-commits-parser": "^3.2.4",
293
+ "conventional-changelog-preset-loader": "^2.3.4",
294
+ "conventional-changelog-jquery": "^3.0.11",
295
+ "conventional-recommended-bump": "^6.1.0",
296
+ "copy-descriptor": "^0.1.1",
297
+ "conventional-commits-filter": "^2.0.7",
298
+ "core-util-is": "^1.0.3",
299
+ "convert-source-map": "^1.8.0",
300
+ "create-require": "^1.1.1",
301
+ "cosmiconfig-typescript-loader": "^1.0.6",
302
+ "cosmiconfig": "^7.0.1",
303
+ "core-js-compat": "^3.21.1",
304
+ "cross-spawn": "^7.0.3",
305
+ "cssom": "^0.4.4",
306
+ "cssstyle": "^2.3.0",
307
+ "dargs": "^7.0.0",
308
+ "csstype": "^3.0.11",
309
+ "data-urls": "^2.0.0",
310
+ "decamelize": "^1.2.0",
311
+ "decode-uri-component": "^0.2.0",
312
+ "crypto-random-string": "^2.0.0",
313
+ "dayjs": "^1.11.0",
314
+ "decamelize-keys": "^1.1.0",
315
+ "dateformat": "^3.0.3",
316
+ "decompress-response": "^6.0.0",
317
+ "dedent": "^0.7.0",
318
+ "decimal.js": "^10.3.1",
319
+ "debug": "^4.3.4",
320
+ "deep-is": "^0.1.4",
321
+ "define-properties": "^1.1.3",
322
+ "defaults": "^1.0.3",
323
+ "define-property": "^2.0.2",
324
+ "deep-extend": "^0.6.0",
325
+ "delayed-stream": "^1.0.0",
326
+ "deepmerge": "^4.2.2",
327
+ "del": "^6.0.0",
328
+ "defer-to-connect": "^2.0.1",
329
+ "deprecation": "^2.3.1",
330
+ "denodeify": "^1.2.1",
331
+ "depd": "^1.1.2",
332
+ "detect-newline": "^3.1.0",
333
+ "destroy": "^1.0.4",
334
+ "doctrine": "^3.0.0",
335
+ "dir-glob": "^3.0.1",
336
+ "domexception": "^2.0.1",
337
+ "dot-prop": "^5.3.0",
338
+ "diff-sequences": "^27.5.1",
339
+ "duplexer3": "^0.1.4",
340
+ "ee-first": "^1.1.1",
341
+ "encodeurl": "^1.0.2",
342
+ "diff": "^4.0.2",
343
+ "emittery": "^0.8.1",
344
+ "end-of-stream": "^1.4.4",
345
+ "emoji-regex": "^8.0.0",
346
+ "envinfo": "^7.8.1",
347
+ "es-abstract": "^1.19.1",
348
+ "electron-to-chromium": "^1.4.89",
349
+ "error-ex": "^1.3.2",
350
+ "errorhandler": "^1.5.1",
351
+ "error-stack-parser": "^2.0.7",
352
+ "es-to-primitive": "^1.2.1",
353
+ "escape-string-regexp": "^1.0.5",
354
+ "escalade": "^3.1.1",
355
+ "escape-goat": "^2.1.1",
356
+ "escodegen": "^2.0.0",
357
+ "escape-html": "^1.0.3",
358
+ "eslint-plugin-jest": "^22.4.1",
359
+ "eslint-plugin-eslint-comments": "^3.2.0",
360
+ "eslint-plugin-react-hooks": "^4.3.0",
361
+ "eslint-scope": "^7.1.1",
362
+ "eslint-utils": "^3.0.0",
363
+ "eslint-plugin-flowtype": "^2.50.3",
364
+ "espree": "^9.3.1",
365
+ "eslint-plugin-react-native-globals": "^0.1.2",
366
+ "eslint-visitor-keys": "^1.3.0",
367
+ "eslint-plugin-react": "^7.29.4",
368
+ "esprima": "^4.0.1",
369
+ "estraverse": "^5.3.0",
370
+ "esquery": "^1.4.0",
371
+ "esrecurse": "^4.3.0",
372
+ "exec-sh": "^0.3.6",
373
+ "etag": "^1.8.1",
374
+ "event-target-shim": "^5.0.1",
375
+ "esutils": "^2.0.3",
376
+ "expand-brackets": "^2.1.4",
377
+ "expect": "^27.5.1",
378
+ "external-editor": "^3.1.0",
379
+ "execa": "^5.1.1",
380
+ "exit": "^0.1.2",
381
+ "extglob": "^2.0.4",
382
+ "fast-deep-equal": "^3.1.3",
383
+ "fast-diff": "^1.2.0",
384
+ "fast-glob": "^3.2.11",
385
+ "extend-shallow": "^3.0.2",
386
+ "fast-levenshtein": "^2.0.6",
387
+ "fastq": "^1.13.0",
388
+ "fb-watchman": "^2.0.1",
389
+ "fast-json-stable-stringify": "^2.1.0",
390
+ "figures": "^3.2.0",
391
+ "file-entry-cache": "^6.0.1",
392
+ "find-cache-dir": "^2.1.0",
393
+ "filter-obj": "^1.1.0",
394
+ "fill-range": "^7.0.1",
395
+ "flatted": "^3.2.5",
396
+ "finalhandler": "^1.1.2",
397
+ "find-up": "^5.0.0",
398
+ "flat-cache": "^3.0.4",
399
+ "for-in": "^1.0.2",
400
+ "form-data": "^3.0.1",
401
+ "fragment-cache": "^0.2.1",
402
+ "fresh": "^0.5.2",
403
+ "flow-parser": "^0.121.0",
404
+ "fsevents": "^2.3.2",
405
+ "function-bind": "^1.1.1",
406
+ "functional-red-black-tree": "^1.0.1",
407
+ "gensync": "^1.0.0-beta.2",
408
+ "fs.realpath": "^1.0.0",
409
+ "fs-extra": "^10.0.1",
410
+ "get-caller-file": "^2.0.5",
411
+ "get-package-type": "^0.1.0",
412
+ "get-intrinsic": "^1.1.1",
413
+ "get-stdin": "^6.0.0",
414
+ "get-symbol-description": "^1.0.0",
415
+ "get-stream": "^6.0.1",
416
+ "get-value": "^2.0.6",
417
+ "git-url-parse": "^11.6.0",
418
+ "git-remote-origin-url": "^2.0.0",
419
+ "git-up": "^4.0.5",
420
+ "get-pkg-repo": "^4.2.1",
421
+ "git-semver-tags": "^4.1.1",
422
+ "glob": "^7.2.0",
423
+ "global-dirs": "^0.1.1",
424
+ "git-raw-commits": "^2.0.11",
425
+ "glob-parent": "^6.0.2",
426
+ "gitconfiglocal": "^1.0.0",
427
+ "graceful-fs": "^4.2.9",
428
+ "got": "^11.8.3",
429
+ "globby": "^11.1.0",
430
+ "handlebars": "^4.7.7",
431
+ "globals": "^11.12.0",
432
+ "hard-rejection": "^2.1.0",
433
+ "has-symbols": "^1.0.3",
434
+ "has": "^1.0.3",
435
+ "has-tostringtag": "^1.0.0",
436
+ "has-flag": "^3.0.0",
437
+ "has-bigints": "^1.0.1",
438
+ "has-values": "^1.0.0",
439
+ "has-value": "^1.0.0",
440
+ "has-yarn": "^2.1.0",
441
+ "hermes-profile-transformer": "^0.0.6",
442
+ "hosted-git-info": "^4.1.0",
443
+ "hermes-parser": "^0.4.7",
444
+ "hermes-engine": "^0.9.0",
445
+ "html-encoding-sniffer": "^2.0.1",
446
+ "html-escaper": "^2.0.2",
447
+ "http-errors": "^1.8.1",
448
+ "http-proxy-agent": "^4.0.1",
449
+ "http-cache-semantics": "^4.1.0",
450
+ "iconv-lite": "^0.4.24",
451
+ "https-proxy-agent": "^5.0.0",
452
+ "http2-wrapper": "^1.0.3",
453
+ "image-size": "^0.6.3",
454
+ "ieee754": "^1.2.1",
455
+ "import-fresh": "^3.3.0",
456
+ "ignore": "^5.2.0",
457
+ "import-cwd": "^3.0.0",
458
+ "import-lazy": "^2.1.0",
459
+ "import-from": "^3.0.0",
460
+ "imurmurhash": "^0.1.4",
461
+ "human-signals": "^2.1.0",
462
+ "indent-string": "^4.0.0",
463
+ "import-local": "^3.1.0",
464
+ "inflight": "^1.0.6",
465
+ "inherits": "^2.0.4",
466
+ "ini": "^1.3.8",
467
+ "inquirer": "^8.2.0",
468
+ "internal-slot": "^1.0.3",
469
+ "invariant": "^2.2.4",
470
+ "ip": "^1.1.5",
471
+ "interpret": "^1.4.0",
472
+ "is-accessor-descriptor": "^1.0.0",
473
+ "is-boolean-object": "^1.1.2",
474
+ "is-bigint": "^1.0.4",
475
+ "is-absolute": "^1.0.0",
476
+ "is-buffer": "^1.1.6",
477
+ "is-core-module": "^2.8.1",
478
+ "is-callable": "^1.2.4",
479
+ "is-arrayish": "^0.2.1",
480
+ "is-data-descriptor": "^1.0.0",
481
+ "is-descriptor": "^1.0.2",
482
+ "is-ci": "^3.0.1",
483
+ "is-date-object": "^1.0.5",
484
+ "is-directory": "^0.3.1",
485
+ "is-docker": "^2.2.1",
486
+ "is-extglob": "^2.1.1",
487
+ "is-generator-fn": "^2.1.0",
488
+ "is-extendable": "^1.0.1",
489
+ "is-git-repository": "^2.0.0",
490
+ "is-git-dirty": "^2.0.1",
491
+ "is-installed-globally": "^0.4.0",
492
+ "is-fullwidth-code-point": "^2.0.0",
493
+ "is-number": "^7.0.0",
494
+ "is-npm": "^5.0.0",
495
+ "is-glob": "^4.0.3",
496
+ "is-interactive": "^1.0.0",
497
+ "is-negative-zero": "^2.0.2",
498
+ "is-obj": "^2.0.0",
499
+ "is-number-object": "^1.0.6",
500
+ "is-path-inside": "^3.0.3",
501
+ "is-plain-obj": "^1.1.0",
502
+ "is-plain-object": "^2.0.4",
503
+ "is-path-cwd": "^2.2.0",
504
+ "is-potential-custom-element-name": "^1.0.1",
505
+ "is-regex": "^1.1.4",
506
+ "is-relative": "^1.0.0",
507
+ "is-string": "^1.0.7",
508
+ "is-ssh": "^1.3.3",
509
+ "is-text-path": "^1.0.1",
510
+ "is-stream": "^2.0.1",
511
+ "is-shared-array-buffer": "^1.0.1",
512
+ "is-unicode-supported": "^0.1.0",
513
+ "is-symbol": "^1.0.4",
514
+ "is-unc-path": "^1.0.0",
515
+ "is-weakref": "^1.0.2",
516
+ "is-typedarray": "^1.0.0",
517
+ "is-yarn-global": "^0.3.0",
518
+ "is-windows": "^1.0.2",
519
+ "isarray": "^1.0.0",
520
+ "isobject": "^3.0.1",
521
+ "is-wsl": "^1.1.0",
522
+ "isexe": "^2.0.0",
523
+ "istanbul-lib-report": "^3.0.0",
524
+ "istanbul-lib-instrument": "^5.1.0",
525
+ "istanbul-lib-source-maps": "^4.0.1",
526
+ "istanbul-reports": "^3.1.4",
527
+ "istanbul-lib-coverage": "^3.2.0",
528
+ "jest-changed-files": "^27.5.1",
529
+ "jest-circus": "^27.5.1",
530
+ "jest-config": "^27.5.1",
531
+ "jest-cli": "^27.5.1",
532
+ "jest-docblock": "^27.5.1",
533
+ "jest-each": "^27.5.1",
534
+ "jest-diff": "^27.5.1",
535
+ "jest-environment-jsdom": "^27.5.1",
536
+ "jest-environment-node": "^27.5.1",
537
+ "jest-get-type": "^27.5.1",
538
+ "jest-leak-detector": "^27.5.1",
539
+ "jest-message-util": "^27.5.1",
540
+ "jest-haste-map": "^27.5.1",
541
+ "jest-matcher-utils": "^27.5.1",
542
+ "jest-mock": "^27.5.1",
543
+ "jest-regex-util": "^27.5.1",
544
+ "jest-pnp-resolver": "^1.2.2",
545
+ "jest-runner": "^27.5.1",
546
+ "jest-resolve-dependencies": "^27.5.1",
547
+ "jest-resolve": "^27.5.1",
548
+ "jest-serializer": "^27.5.1",
549
+ "jest-runtime": "^27.5.1",
550
+ "jest-jasmine2": "^27.5.1",
551
+ "jest-snapshot": "^27.5.1",
552
+ "jest-watcher": "^27.5.1",
553
+ "jest-validate": "^27.5.1",
554
+ "jest-util": "^27.5.1",
555
+ "js-yaml": "^4.1.0",
556
+ "joi": "^17.6.0",
557
+ "jetifier": "^1.6.8",
558
+ "jest-worker": "^27.5.1",
559
+ "jsc-android": "^250230.2.1",
560
+ "jsesc": "^2.5.2",
561
+ "jsdom": "^16.7.0",
562
+ "json-buffer": "^3.0.1",
563
+ "js-tokens": "^4.0.0",
564
+ "json-stringify-safe": "^5.0.1",
565
+ "json-parse-better-errors": "^1.0.2",
566
+ "jscodeshift": "^0.11.0",
567
+ "json-schema-traverse": "^0.4.1",
568
+ "json-parse-even-better-errors": "^2.3.1",
569
+ "json5": "^2.2.1",
570
+ "jsonify": "^0.0.0",
571
+ "jsx-ast-utils": "^3.2.1",
572
+ "jsonparse": "^1.3.1",
573
+ "keyv": "^4.1.1",
574
+ "jsonfile": "^6.1.0",
575
+ "kind-of": "^6.0.3",
576
+ "klaw": "^1.3.1",
577
+ "latest-version": "^5.1.0",
578
+ "levn": "^0.4.1",
579
+ "leven": "^3.1.0",
580
+ "json-stable-stringify-without-jsonify": "^1.0.1",
581
+ "kleur": "^3.0.3",
582
+ "locate-path": "^6.0.0",
583
+ "load-json-file": "^4.0.0",
584
+ "lines-and-columns": "^1.2.4",
585
+ "lodash.merge": "^4.6.2",
586
+ "lodash.debounce": "^4.0.8",
587
+ "lodash.ismatch": "^4.4.0",
588
+ "lodash": "^4.17.21",
589
+ "logkitty": "^0.7.1",
590
+ "loose-envify": "^1.4.0",
591
+ "lodash.throttle": "^4.1.1",
592
+ "lowercase-keys": "^2.0.0",
593
+ "log-symbols": "^2.2.0",
594
+ "make-dir": "^3.1.0",
595
+ "macos-release": "^2.5.0",
596
+ "lru-cache": "^6.0.0",
597
+ "makeerror": "^1.0.12",
598
+ "map-obj": "^4.3.0",
599
+ "map-visit": "^1.0.0",
600
+ "map-cache": "^0.2.2",
601
+ "make-error": "^1.3.6",
602
+ "meow": "^8.1.2",
603
+ "merge-stream": "^2.0.0",
604
+ "metro": "^0.66.2",
605
+ "merge2": "^1.4.1",
606
+ "metro-cache": "^0.66.2",
607
+ "metro-babel-register": "^0.66.2",
608
+ "metro-babel-transformer": "^0.66.2",
609
+ "metro-core": "^0.66.2",
610
+ "metro-cache-key": "^0.66.2",
611
+ "metro-hermes-compiler": "^0.66.2",
612
+ "metro-react-native-babel-preset": "^0.66.2",
613
+ "metro-config": "^0.66.2",
614
+ "metro-react-native-babel-transformer": "^0.66.2",
615
+ "metro-inspector-proxy": "^0.66.2",
616
+ "metro-minify-uglify": "^0.66.2",
617
+ "metro-resolver": "^0.66.2",
618
+ "metro-runtime": "^0.66.2",
619
+ "metro-symbolicate": "^0.66.2",
620
+ "metro-transform-plugins": "^0.66.2",
621
+ "metro-transform-worker": "^0.66.2",
622
+ "metro-source-map": "^0.66.2",
623
+ "mime-types": "^2.1.35",
624
+ "mime": "^2.6.0",
625
+ "mime-db": "^1.52.0",
626
+ "minimatch": "^3.1.2",
627
+ "micromatch": "^4.0.4",
628
+ "mimic-fn": "^2.1.0",
629
+ "mimic-response": "^1.0.1",
630
+ "mixin-deep": "^1.3.2",
631
+ "minimist": "^1.2.6",
632
+ "min-indent": "^1.0.1",
633
+ "minimist-options": "^4.1.0",
634
+ "modify-values": "^1.0.1",
635
+ "mkdirp": "^0.5.5",
636
+ "ms": "^2.1.2",
637
+ "mute-stream": "^0.0.8",
638
+ "negotiator": "^0.6.3",
639
+ "natural-compare": "^1.4.0",
640
+ "nanomatch": "^1.2.13",
641
+ "nice-try": "^1.0.5",
642
+ "nocache": "^2.1.0",
643
+ "neo-async": "^2.6.2",
644
+ "node-dir": "^0.1.17",
645
+ "new-github-release-url": "^1.0.0",
646
+ "node-int64": "^0.4.0",
647
+ "node-releases": "^2.0.2",
648
+ "normalize-path": "^3.0.0",
649
+ "node-stream-zip": "^1.15.0",
650
+ "normalize-package-data": "^3.0.3",
651
+ "normalize-url": "^6.1.0",
652
+ "npm-run-path": "^4.0.1",
653
+ "node-fetch": "^2.6.7",
654
+ "nwsapi": "^2.2.0",
655
+ "nullthrows": "^1.1.1",
656
+ "object-assign": "^4.1.1",
657
+ "object-copy": "^0.1.0",
658
+ "ob1": "^0.66.2",
659
+ "object-inspect": "^1.12.0",
660
+ "object-visit": "^1.0.1",
661
+ "object-keys": "^1.1.1",
662
+ "object.entries": "^1.1.5",
663
+ "object.assign": "^4.1.2",
664
+ "object.fromentries": "^2.0.5",
665
+ "object.hasown": "^1.1.0",
666
+ "on-finished": "^2.3.0",
667
+ "once": "^1.4.0",
668
+ "open": "^6.4.0",
669
+ "object.values": "^1.1.5",
670
+ "on-headers": "^1.0.2",
671
+ "onetime": "^5.1.2",
672
+ "object.pick": "^1.3.0",
673
+ "optionator": "^0.9.1",
674
+ "options": "^0.0.6",
675
+ "ora": "^3.4.0",
676
+ "os-name": "^4.0.1",
677
+ "os-tmpdir": "^1.0.2",
678
+ "p-limit": "^3.1.0",
679
+ "p-locate": "^5.0.0",
680
+ "p-finally": "^1.0.0",
681
+ "p-cancelable": "^2.1.1",
682
+ "p-try": "^2.2.0",
683
+ "package-json": "^6.5.0",
684
+ "p-map": "^4.0.0",
685
+ "parse-url": "^6.0.0",
686
+ "parent-module": "^1.0.1",
687
+ "parse-path": "^4.0.3",
688
+ "parse-json": "^5.2.0",
689
+ "parse5": "^6.0.1",
690
+ "parseurl": "^1.3.3",
691
+ "path-exists": "^4.0.0",
692
+ "pascalcase": "^0.1.1",
693
+ "path-is-absolute": "^1.0.1",
694
+ "picomatch": "^2.3.1",
695
+ "path-key": "^3.1.1",
696
+ "path-parse": "^1.0.7",
697
+ "picocolors": "^1.0.0",
698
+ "pirates": "^4.0.5",
699
+ "posix-character-classes": "^0.1.1",
700
+ "pify": "^2.3.0",
701
+ "prepend-file": "^2.0.1",
702
+ "plist": "^3.0.4",
703
+ "prelude-ls": "^1.2.1",
704
+ "prepend-http": "^2.0.0",
705
+ "prettier-linter-helpers": "^1.0.0",
706
+ "path-type": "^4.0.0",
707
+ "process-nextick-args": "^2.0.1",
708
+ "pretty-format": "^27.5.1",
709
+ "prompts": "^2.4.2",
710
+ "promise": "^8.1.0",
711
+ "protocols": "^1.4.8",
712
+ "prop-types": "^15.8.1",
713
+ "pump": "^3.0.0",
714
+ "pupa": "^2.1.1",
715
+ "qs": "^6.10.3",
716
+ "psl": "^1.8.0",
717
+ "punycode": "^2.1.1",
718
+ "query-string": "^6.14.1",
719
+ "queue-microtask": "^1.2.3",
720
+ "q": "^1.5.1",
721
+ "quick-lru": "^4.0.1",
722
+ "react-is": "^17.0.2",
723
+ "rc": "^1.2.8",
724
+ "range-parser": "^1.2.1",
725
+ "react-devtools-core": "^4.19.1",
726
+ "react-native-codegen": "^0.0.8",
727
+ "react-refresh": "^0.4.3",
728
+ "read-pkg": "^3.0.0",
729
+ "read-pkg-up": "^3.0.0",
730
+ "readable-stream": "^3.6.0",
731
+ "redent": "^3.0.0",
732
+ "recast": "^0.20.5",
733
+ "readline": "^1.3.0",
734
+ "rechoir": "^0.6.2",
735
+ "regenerate": "^1.4.2",
736
+ "regenerator-runtime": "^0.13.9",
737
+ "regenerator-transform": "^0.14.5",
738
+ "regenerate-unicode-properties": "^10.0.1",
739
+ "regex-not": "^1.0.2",
740
+ "regexp.prototype.flags": "^1.4.1",
741
+ "regexpu-core": "^5.0.1",
742
+ "regexpp": "^3.2.0",
743
+ "registry-auth-token": "^4.2.1",
744
+ "registry-url": "^5.1.0",
745
+ "remove-trailing-separator": "^1.1.0",
746
+ "regjsparser": "^0.8.4",
747
+ "repeat-string": "^1.6.1",
748
+ "repeat-element": "^1.1.4",
749
+ "regjsgen": "^0.6.0",
750
+ "require-main-filename": "^2.0.0",
751
+ "resolve": "^1.22.0",
752
+ "require-directory": "^2.1.1",
753
+ "resolve-alpn": "^1.2.1",
754
+ "resolve-global": "^1.0.0",
755
+ "resolve-cwd": "^3.0.0",
756
+ "resolve-url": "^0.2.1",
757
+ "responselike": "^2.0.0",
758
+ "restore-cursor": "^2.0.0",
759
+ "ret": "^0.1.15",
760
+ "resolve.exports": "^1.1.0",
761
+ "resolve-from": "^5.0.0",
762
+ "retry": "^0.13.1",
763
+ "reusify": "^1.0.4",
764
+ "rimraf": "^3.0.2",
765
+ "run-async": "^2.4.1",
766
+ "run-parallel": "^1.2.0",
767
+ "safe-regex": "^1.1.0",
768
+ "rxjs": "^7.5.5",
769
+ "safe-buffer": "^5.1.2",
770
+ "safer-buffer": "^2.1.2",
771
+ "rsvp": "^4.8.5",
772
+ "sane": "^4.1.0",
773
+ "pkg-dir": "^4.2.0",
774
+ "sax": "^1.2.4",
775
+ "saxes": "^5.0.1",
776
+ "scheduler": "^0.20.2",
777
+ "semver-diff": "^3.1.1",
778
+ "send": "^0.17.2",
779
+ "semver": "^7.3.5",
780
+ "set-blocking": "^2.0.0",
781
+ "serve-static": "^1.14.2",
782
+ "serialize-error": "^2.1.0",
783
+ "set-value": "^2.0.1",
784
+ "setprototypeof": "^1.2.0",
785
+ "shebang-command": "^2.0.0",
786
+ "shebang-regex": "^3.0.0",
787
+ "shallow-clone": "^3.0.1",
788
+ "side-channel": "^1.0.4",
789
+ "shelljs": "^0.8.5",
790
+ "shell-quote": "^1.6.1",
791
+ "signal-exit": "^3.0.7",
792
+ "sisteransi": "^1.0.5",
793
+ "slice-ansi": "^2.1.0",
794
+ "slash": "^3.0.0",
795
+ "simple-plist": "^1.3.0",
796
+ "snapdragon-node": "^2.1.1",
797
+ "source-map": "^0.5.7",
798
+ "snapdragon": "^0.8.2",
799
+ "snapdragon-util": "^3.0.1",
800
+ "source-map-resolve": "^0.5.3",
801
+ "source-map-support": "^0.5.21",
802
+ "spdx-expression-parse": "^3.0.1",
803
+ "source-map-url": "^0.4.1",
804
+ "spdx-correct": "^3.1.1",
805
+ "spdx-exceptions": "^2.3.0",
806
+ "split-on-first": "^1.1.0",
807
+ "spdx-license-ids": "^3.0.11",
808
+ "split": "^1.0.1",
809
+ "split-string": "^3.1.0",
810
+ "split2": "^3.2.2",
811
+ "stacktrace-parser": "^0.1.10",
812
+ "sprintf-js": "^1.0.3",
813
+ "static-extend": "^0.1.2",
814
+ "stackframe": "^1.2.1",
815
+ "stack-utils": "^2.0.5",
816
+ "strict-uri-encode": "^2.0.0",
817
+ "stream-buffers": "^2.2.0",
818
+ "string-length": "^4.0.2",
819
+ "string-width": "^4.2.3",
820
+ "statuses": "^1.5.0",
821
+ "string.prototype.trimend": "^1.0.4",
822
+ "string_decoder": "^1.3.0",
823
+ "strip-ansi": "^6.0.1",
824
+ "string.prototype.matchall": "^4.0.7",
825
+ "strip-eof": "^1.0.0",
826
+ "strip-bom": "^4.0.0",
827
+ "string.prototype.trimstart": "^1.0.4",
828
+ "strip-final-newline": "^2.0.0",
829
+ "strip-indent": "^3.0.0",
830
+ "supports-color": "^5.5.0",
831
+ "strip-json-comments": "^3.1.1",
832
+ "sudo-prompt": "^9.2.1",
833
+ "symbol-tree": "^3.2.4",
834
+ "supports-preserve-symlinks-flag": "^1.0.0",
835
+ "supports-hyperlinks": "^2.2.0",
836
+ "temp": "^0.8.3",
837
+ "temp-dir": "^1.0.0",
838
+ "temp-write": "^4.0.0",
839
+ "text-extensions": "^1.9.0",
840
+ "terminal-link": "^2.1.1",
841
+ "test-exclude": "^6.0.0",
842
+ "through2": "^4.0.2",
843
+ "through": "^2.3.8",
844
+ "throat": "^6.0.1",
845
+ "tmpl": "^1.0.5",
846
+ "tmp": "^0.0.33",
847
+ "text-table": "^0.2.0",
848
+ "to-fast-properties": "^2.0.0",
849
+ "to-regex": "^3.0.2",
850
+ "to-regex-range": "^5.0.1",
851
+ "to-readable-stream": "^1.0.0",
852
+ "toidentifier": "^1.0.1",
853
+ "to-object-path": "^0.3.0",
854
+ "tr46": "^2.1.0",
855
+ "tough-cookie": "^4.0.0",
856
+ "tsutils": "^3.21.0",
857
+ "ts-node": "^10.7.0",
858
+ "trim-newlines": "^3.0.1",
859
+ "tslib": "^2.3.1",
860
+ "type-check": "^0.4.0",
861
+ "type-detect": "^4.0.8",
862
+ "typedarray": "^0.0.6",
863
+ "type-fest": "^0.21.3",
864
+ "typedarray-to-buffer": "^3.1.5",
865
+ "uglify-es": "^3.3.9",
866
+ "uglify-js": "^3.15.3",
867
+ "unbox-primitive": "^1.0.1",
868
+ "unc-path-regex": "^0.1.2",
869
+ "unicode-canonical-property-names-ecmascript": "^2.0.0",
870
+ "unicode-match-property-value-ecmascript": "^2.0.0",
871
+ "unicode-match-property-ecmascript": "^2.0.0",
872
+ "unique-string": "^2.0.0",
873
+ "ultron": "^1.0.2",
874
+ "unicode-property-aliases-ecmascript": "^2.0.0",
875
+ "universal-user-agent": "^6.0.0",
876
+ "union-value": "^1.0.1",
877
+ "update-notifier": "^5.1.0",
878
+ "unset-value": "^1.0.0",
879
+ "universalify": "^2.0.0",
880
+ "unpipe": "^1.0.0",
881
+ "urix": "^0.1.0",
882
+ "url-join": "^4.0.1",
883
+ "url-parse-lax": "^3.0.0",
884
+ "use": "^3.1.1",
885
+ "util-deprecate": "^1.0.2",
886
+ "v8-compile-cache-lib": "^3.0.0",
887
+ "uri-js": "^4.4.1",
888
+ "utils-merge": "^1.0.1",
889
+ "use-subscription": "^1.5.1",
890
+ "v8-to-istanbul": "^8.1.1",
891
+ "uuid": "^8.3.2",
892
+ "vlq": "^1.0.1",
893
+ "vary": "^1.1.2",
894
+ "w3c-hr-time": "^1.0.2",
895
+ "validate-npm-package-license": "^3.0.4",
896
+ "v8-compile-cache": "^2.3.0",
897
+ "walker": "^1.0.8",
898
+ "wcwidth": "^1.0.1",
899
+ "w3c-xmlserializer": "^2.0.0",
900
+ "whatwg-mimetype": "^2.3.0",
901
+ "whatwg-fetch": "^3.6.2",
902
+ "whatwg-url": "^8.7.0",
903
+ "webidl-conversions": "^6.1.0",
904
+ "whatwg-encoding": "^1.0.5",
905
+ "which-module": "^2.0.0",
906
+ "widest-line": "^3.1.0",
907
+ "windows-release": "^4.0.0",
908
+ "wildcard-match": "^5.1.2",
909
+ "which-boxed-primitive": "^1.0.2",
910
+ "which": "^2.0.2",
911
+ "wordwrap": "^1.0.0",
912
+ "word-wrap": "^1.2.3",
913
+ "wrappy": "^1.0.2",
914
+ "wrap-ansi": "^7.0.0",
915
+ "xdg-basedir": "^4.0.0",
916
+ "ws": "^7.5.7",
917
+ "write-file-atomic": "^3.0.3",
918
+ "xmlbuilder": "^9.0.7",
919
+ "xml-name-validator": "^3.0.0",
920
+ "xtend": "^4.0.2",
921
+ "xcode": "^2.1.0",
922
+ "xmlchars": "^2.2.0",
923
+ "xmldoc": "^1.1.2",
924
+ "yaml": "^1.10.2",
925
+ "yallist": "^4.0.0",
926
+ "yargs-parser": "^20.2.9",
927
+ "yn": "^3.1.1",
928
+ "y18n": "^5.0.8",
929
+ "yocto-queue": "^0.1.0",
930
+ "yargs": "^17.4.0"
931
+ }
932
+ }