-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
16534 lines (14888 loc) · 554 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 5
cacheKey: 8
"7zip-bin@npm:~5.1.1":
version: 5.1.1
resolution: "7zip-bin@npm:5.1.1"
checksum: 1e58ba3742ac86daa84d2e60c46fd545f235c9f60a00cd36a87a70bf824cc0c821fdc418994f1745081b17e7bc83d155e1e82bd44b06996e7cab0a491ce644c1
languageName: node
linkType: hard
"@assemblyscript/loader@npm:^0.9.4":
version: 0.9.4
resolution: "@assemblyscript/loader@npm:0.9.4"
checksum: 2af3d1eec181c1817e3fb95b8d900cf1e7f19933a02315569d3d4f2f3d6514673acb784b2a1a8a148436fb8a983b580bfb993c1d520c55a8fd84678b200b2ec6
languageName: node
linkType: hard
"@babel/cli@npm:^7.14.8":
version: 7.16.0
resolution: "@babel/cli@npm:7.16.0"
dependencies:
"@nicolo-ribaudo/chokidar-2": 2.1.8-no-fsevents.3
chokidar: ^3.4.0
commander: ^4.0.1
convert-source-map: ^1.1.0
fs-readdir-recursive: ^1.1.0
glob: ^7.0.0
make-dir: ^2.1.0
slash: ^2.0.0
source-map: ^0.5.0
peerDependencies:
"@babel/core": ^7.0.0-0
dependenciesMeta:
"@nicolo-ribaudo/chokidar-2":
optional: true
chokidar:
optional: true
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
checksum: 7055b9d0ad762ae57fe8f287501a9b4ac8f9e3279761bab43ee848c3f2cc584b9ba5828990e95fe12a774c9a099b36140a68f4b59295357ea5c621e2eebbf614
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/code-frame@npm:7.16.0"
dependencies:
"@babel/highlight": ^7.16.0
checksum: 8961d0302ec6b8c2e9751a11e06a17617425359fd1645e4dae56a90a03464c68a0916115100fbcd030961870313f21865d0b85858360a2c68aabdda744393607
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.13.11, @babel/compat-data@npm:^7.16.0, @babel/compat-data@npm:^7.16.4":
version: 7.16.4
resolution: "@babel/compat-data@npm:7.16.4"
checksum: 4949ce54eafc4b38d5623696a872acaaced1a523605708d81c2c483253941917d90dae0de40fc01e152ae56075dadd89c23014da5a632b09c001a716fa689cae
languageName: node
linkType: hard
"@babel/core@npm:^7.14.3":
version: 7.16.0
resolution: "@babel/core@npm:7.16.0"
dependencies:
"@babel/code-frame": ^7.16.0
"@babel/generator": ^7.16.0
"@babel/helper-compilation-targets": ^7.16.0
"@babel/helper-module-transforms": ^7.16.0
"@babel/helpers": ^7.16.0
"@babel/parser": ^7.16.0
"@babel/template": ^7.16.0
"@babel/traverse": ^7.16.0
"@babel/types": ^7.16.0
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.1.2
semver: ^6.3.0
source-map: ^0.5.0
checksum: a140f669daa90c774016a76b1f85641975333c1c219ae0a8e65d8b4c316836e918276e0dfd55613b14f8e578406a92393d4368a63bdd5d0708122976ee2ee8e3
languageName: node
linkType: hard
"@babel/generator@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/generator@npm:7.16.0"
dependencies:
"@babel/types": ^7.16.0
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 9ff53e0db72a225c8783c4a277698b4efcead750542ebb9cff31732ba62d092090715a772df10a323446924712f6928ad60c03db4e7051bed3a9701b552d51fb
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-annotate-as-pure@npm:7.16.0"
dependencies:
"@babel/types": ^7.16.0
checksum: 0db76106983e10ffc482c5f01e89c3b4687d2474bea69c44470b2acb6bd37f362f9057d6e69c617255390b5d0063d9932a931e83c3e130445b688ca1fcdb5bcd
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.16.0"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.16.0
"@babel/types": ^7.16.0
checksum: 01beb9f3f2285b7b170cc167ec79b2fd657202cb25be9cb111951f94a04c97c5b446dd1498ede32f0052d67fc9f2f2ac2b7862351b364fe94f9b4de98488d863
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-builder-react-jsx@npm:7.16.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.0
"@babel/types": ^7.16.0
checksum: 56dfaf8a6841add118add3fcd44675bf9cde28e3759a8736df34c4b4fdd62ac75c59d1cb426eb11274562b5461cb43bbc65f6d465766b4e8ee10f7637f8ba0db
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.16.0, @babel/helper-compilation-targets@npm:^7.16.3":
version: 7.16.3
resolution: "@babel/helper-compilation-targets@npm:7.16.3"
dependencies:
"@babel/compat-data": ^7.16.0
"@babel/helper-validator-option": ^7.14.5
browserslist: ^4.17.5
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 038bcd43ac914371c51bf6e72b5cedcae432f0d359285d74a9133c6a839bd625a7d5412d7471d50aa78a3e1c79b0a692b50a8d6a1299ebf69733b512ff199323
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-create-class-features-plugin@npm:7.16.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.0
"@babel/helper-function-name": ^7.16.0
"@babel/helper-member-expression-to-functions": ^7.16.0
"@babel/helper-optimise-call-expression": ^7.16.0
"@babel/helper-replace-supers": ^7.16.0
"@babel/helper-split-export-declaration": ^7.16.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 0f7d1b8d413e5fbd719c95e22e3b59749b4c6c652f20e0fa1fa954112145a134c22709f1325574632d7262aeeeaaf4fc7c2eb8117e0d521e42b36d05c3e5a885
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.16.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.0
regexpu-core: ^4.7.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: d6230477e1997ed1fa0aee9ab34d3ce96400e0df25101879fdaf90ea613adec68ec06a609d8c78787c02a6275ef5a7403a38aa8fd42fef1a4d27bcfe577c81d6
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.3.0":
version: 0.3.0
resolution: "@babel/helper-define-polyfill-provider@npm:0.3.0"
dependencies:
"@babel/helper-compilation-targets": ^7.13.0
"@babel/helper-module-imports": ^7.12.13
"@babel/helper-plugin-utils": ^7.13.0
"@babel/traverse": ^7.13.0
debug: ^4.1.1
lodash.debounce: ^4.0.8
resolve: ^1.14.2
semver: ^6.1.2
peerDependencies:
"@babel/core": ^7.4.0-0
checksum: 372378ac4235c4fe135f1cd6d0f63697e7cb3ef63a884eb14f4b439984846bcaec0b7a32cf8df6756a21557ae3ebb3c2ee18d9a191260705a583333e5e60df7c
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-explode-assignable-expression@npm:7.16.0"
dependencies:
"@babel/types": ^7.16.0
checksum: 563352b5e9b0b9584187176723ea65ea6ac9348d612c2bdc76701634eae445fd05d18f7b7555f5c6bbe4ec4d9d30172633a56bf4cfbb1333b798f58444057652
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-function-name@npm:7.16.0"
dependencies:
"@babel/helper-get-function-arity": ^7.16.0
"@babel/template": ^7.16.0
"@babel/types": ^7.16.0
checksum: 8c02371d28678f3bb492e69d4635b2fe6b1c5a93ce129bf883f1fafde2005f4dbc0e643f52103ca558b698c0774bfb84a93f188d71db1c077f754b6220629b92
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-get-function-arity@npm:7.16.0"
dependencies:
"@babel/types": ^7.16.0
checksum: 1a68322c7b5fdffb1b51df32f7a53b1ff2268b5b99d698f0a1a426dcb355482a44ef3dae982a507907ba975314638dabb6d77ac1778098bdbe99707e6c29cae8
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-hoist-variables@npm:7.16.0"
dependencies:
"@babel/types": ^7.16.0
checksum: 2ee5b400c267c209a53c90eea406a8f09c30d4d7a2b13e304289d858a2e34a99272c062cfad6dad63705662943951c42ff20042ef539b2d3c4f8743183a28954
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.16.0"
dependencies:
"@babel/types": ^7.16.0
checksum: 58ef8e3a4af0c1dc43a2011f43f25502877ac1c5aa9a4a6586f0265ab857b65831f60560044bc9380df43c91ac21cad39a84095b91764b433d1acf18d27e38d6
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.10.4, @babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-module-imports@npm:7.16.0"
dependencies:
"@babel/types": ^7.16.0
checksum: 8e1eb9ac39440e52080b87c78d8d318e7c93658bdd0f3ce0019c908de88cbddafdc241f392898c0b0ba81fc52c8c6d2f9cc1b163ac5ed2a474d49b11646b7516
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-module-transforms@npm:7.16.0"
dependencies:
"@babel/helper-module-imports": ^7.16.0
"@babel/helper-replace-supers": ^7.16.0
"@babel/helper-simple-access": ^7.16.0
"@babel/helper-split-export-declaration": ^7.16.0
"@babel/helper-validator-identifier": ^7.15.7
"@babel/template": ^7.16.0
"@babel/traverse": ^7.16.0
"@babel/types": ^7.16.0
checksum: a3d0e5556f26ebdf2ae422af3b9a1ba1848fead891f46bcd1c6a4be88ad8e9f348140f81d1843a3481574be1643a9c79b01469231f5b5801f5d5e691efdd11f3
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-optimise-call-expression@npm:7.16.0"
dependencies:
"@babel/types": ^7.16.0
checksum: 121ae6054fcec76ed2c4dd83f0281b901c1e3cfac1bbff79adc3667983903ad1030a0ad9a8bea58e52b225e13881cf316f371c65276976e7a6762758a98be8f6
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.13.0, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.14.5
resolution: "@babel/helper-plugin-utils@npm:7.14.5"
checksum: fe20e90a24d02770a60ebe80ab9f0dfd7258503cea8006c71709ac9af1aa3e47b0de569499673f11ea6c99597f8c0e4880ae1d505986e61101b69716820972fe
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.16.0, @babel/helper-remap-async-to-generator@npm:^7.16.4":
version: 7.16.4
resolution: "@babel/helper-remap-async-to-generator@npm:7.16.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.0
"@babel/helper-wrap-function": ^7.16.0
"@babel/types": ^7.16.0
checksum: debe997695fe2c11813e88b2fa4afc89d4543f72457dda00c7296a728cd5eeb81d4ef8607a5fef7823da410a8579407c631a430e5bfc78290172ff6fc430355c
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-replace-supers@npm:7.16.0"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.16.0
"@babel/helper-optimise-call-expression": ^7.16.0
"@babel/traverse": ^7.16.0
"@babel/types": ^7.16.0
checksum: 61f04bbe05ff0987d5a8d5253cb101d47004a27951d6c5cd95457e30fcb3adaca85f0bcaa7f31f4d934f22386b935ac7281398c68982d4a4768769d95c028460
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-simple-access@npm:7.16.0"
dependencies:
"@babel/types": ^7.16.0
checksum: 2d7155f318411788b42d2f4a3d406de12952ad620d0bd411a0f3b5803389692ad61d9e7fab5f93b23ad3d8a09db4a75ca9722b9873a606470f468bc301944af6
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.16.0"
dependencies:
"@babel/types": ^7.16.0
checksum: b9ed2896eb253e6a85f472b0d4098ed80403758ad1a4e34b02b11e8276e3083297526758b1a3e6886e292987266f10622d7dbced3508cc22b296a74903b41cfb
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-split-export-declaration@npm:7.16.0"
dependencies:
"@babel/types": ^7.16.0
checksum: 8bd87b5ea2046b145f0f55bc75cbdb6df69eaeb32919ee3c1c758757025aebca03e567a4d48389eb4f16a55021adb6ed8fa58aa771e164b15fa5e0a0722f771d
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.15.7":
version: 7.15.7
resolution: "@babel/helper-validator-identifier@npm:7.15.7"
checksum: f041c28c531d1add5cc345b25d5df3c29c62bce3205b4d4a93dcd164ccf630350acba252d374fad8f5d8ea526995a215829f27183ba7ce7ce141843bf23068a6
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-validator-option@npm:7.14.5"
checksum: 1b25c34a5cb3d8602280f33b9ab687d2a77895e3616458d0f70ddc450ada9b05e342c44f322bc741d51b252e84cff6ec44ae93d622a3354828579a643556b523
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/helper-wrap-function@npm:7.16.0"
dependencies:
"@babel/helper-function-name": ^7.16.0
"@babel/template": ^7.16.0
"@babel/traverse": ^7.16.0
"@babel/types": ^7.16.0
checksum: 2bb4e05f49cf217cc5890581284a051245ba0ddaccbe3ddd662010d7a6969f52d2027e310d26db2e030273c5fe9341448c7845fcb4795ad8eb56bdeabec148b8
languageName: node
linkType: hard
"@babel/helpers@npm:^7.16.0":
version: 7.16.3
resolution: "@babel/helpers@npm:7.16.3"
dependencies:
"@babel/template": ^7.16.0
"@babel/traverse": ^7.16.3
"@babel/types": ^7.16.0
checksum: b725b1aab734e9e1407247ee499880583855843fa2855377a2c26277bd9fbd7080219109189bc69b18d71cc30759666bfe66d534729b41452097866d1f5a66ef
languageName: node
linkType: hard
"@babel/highlight@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/highlight@npm:7.16.0"
dependencies:
"@babel/helper-validator-identifier": ^7.15.7
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: abf244c48fcff20ec87830e8b99c776f4dcdd9138e63decc195719a94148da35339639e0d8045eb9d1f3e67a39ab90a9c3f5ce2d579fb1a0368d911ddf29b4e5
languageName: node
linkType: hard
"@babel/parser@npm:^7.16.0, @babel/parser@npm:^7.16.3":
version: 7.16.4
resolution: "@babel/parser@npm:7.16.4"
bin:
parser: ./bin/babel-parser.js
checksum: ce0a8f92f440f2a12bc932f070a7b60c5133bf8a63f461841f9e39af0194f573707959d606c6fad1a2fd496a45148553afd9b74d3b8dd36cdb7861598d1f3e36
languageName: node
linkType: hard
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.16.2":
version: 7.16.2
resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.16.2"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0
checksum: 6ed9dbbf18b24f6edd2286554f718ea3a1eb3fdae4faece6fabfb68d1e249377d8392ae1931f52ce67fdfcfec26caf8d141bbcce9d6321851b5a08f52070a91e
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/helper-skip-transparent-expression-wrappers": ^7.16.0
"@babel/plugin-proposal-optional-chaining": ^7.16.0
peerDependencies:
"@babel/core": ^7.13.0
checksum: bb115479292e2c66671a62c46a64d8dae1fc8bbf604c83f82a421216e3d40632dbe86e8ba34e66318c215eddfc4f25e6e7fe19123517f1cf5b6003b1efbd911a
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.16.4":
version: 7.16.4
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.16.4"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/helper-remap-async-to-generator": ^7.16.4
"@babel/plugin-syntax-async-generators": ^7.8.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: dcd5a76ee12eacee93440e021a7e4a8e53b5d13d26c8fd7d412fc83341a1633a949bef1ef94301ae753164d39d303cb01b59234e6b48205377ca1d041f670ba5
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.13.0, @babel/plugin-proposal-class-properties@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-proposal-class-properties@npm:7.16.0"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b1665ced553e5cdb95eec2fda321cb226c5f255edd1a94b226b9d81e97e026472184b6898af26f2bb9ee64101fad1afe215b6fc469d3103dec78c55e732e49aa
languageName: node
linkType: hard
"@babel/plugin-proposal-class-static-block@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-proposal-class-static-block@npm:7.16.0"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-class-static-block": ^7.14.5
peerDependencies:
"@babel/core": ^7.12.0
checksum: 59c4bb3d6ad4828e7773fe1c63730c68bf646c3a8d042b9ed4062fd98a26c1656b7ee108c5f144fd8b24ff567baf3b2efa644be29c6c8bcfe60e09e485e22116
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-dynamic-import": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4027da640443d8fd4a20637d1dd67cce1c13207b8c19fa77796a08b9eec9881b95322c1a5c489128adf3a12e9bbc02b31de9ddd536c909d072577a74a2a70b67
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0bdc166ac44d9a0579e6d14d07ed1364932b4b7852626f4ba0c0011464097ed23bec43a3e93793d888c2854918ce9937ac251a945abbe0d283eaa1df206e0b05
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-proposal-json-strings@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-json-strings": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fa93be8eff22ced96a68c9db8c0e930414a4ffb44cf68b473717309c06a4feee2bac6e41415a699c829f29928653d67b4b7d29a45861784d235264d829055a1e
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7e6cd10248803f0c5801805ef1a357314940c3204c3d2f00994711f272c21276f181d0e83ada5bce6185ae2c97c4417e778331505ffc2e71a2b9c4425a5dcc6d
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e50f94929970cdc5c6ee22ec4c95c46ae25cdd8c391baf601f7f3d3a3cec417efc663a3fafa9ae5bca82a6815d49687b07cab9857f5a10e9ea862438ecb81e4a
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-numeric-separator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: eb7895a4f38263df644a0ded7042991190f23bdec4b53f3e2c8b40b82d2dbc537a6ca9afbfd490d1aa5dd33244e7a51bf1ae0c4c6890d9978bc1adc325b7e795
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.16.0"
dependencies:
"@babel/compat-data": ^7.16.0
"@babel/helper-compilation-targets": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
"@babel/plugin-transform-parameters": ^7.16.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c7716ba50e65aae613e553dd568d3f4b4c42fa8d9f1c3aca6cc227670fc792b600cd5a5c710451490f3d7d5916e77607cba45033e199534ca71feed451f63820
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-optional-catch-binding": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5003a1d48fb6bac1661b481681baf7941de518f1f773d9745e65a650e750b715cb69181a4b723e28f4e43b94143b7b0fe5d12ff1ceceda9731f073cd6bf4e195
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/helper-skip-transparent-expression-wrappers": ^7.16.0
"@babel/plugin-syntax-optional-chaining": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8301e0829220327c8b969b711c5c4ee5aef88b391e5fb7838381bd18c0fd0cf360d3a307ad5c6113414470ae920504dc2c41983af0ddf3762f5c88957e0c3a94
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.13.0, @babel/plugin-proposal-private-methods@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-proposal-private-methods@npm:7.16.0"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6f648f54ea1219262b7a05f86f94de7cb466dc81ffd86e4f37ba536037762457ef13408083eb4325d44d2a5aae27c097756efe1067f5c1fbddb8078b923580f5
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:^7.14.0, @babel/plugin-proposal-private-property-in-object@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.16.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.0
"@babel/helper-create-class-features-plugin": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-private-property-in-object": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9098fb34f4abac376ec5823bf6aaedacd46e6925a6fc62559a8086a110bf39310ee308bfbbed052f047ad803b7148b87e43b6d83a759be0aeab1149efd4b8eeb
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.16.0, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.16.0
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.16.0"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f26b76c9aa680820fe693f768a36e3a2c4d969e72d7a362059fffad7c874eed8a89bde2be5bde650283a685bd879415f8937fb37a9a1397b287a81df0c6f7c23
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc
languageName: node
linkType: hard
"@babel/plugin-syntax-class-static-block@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-class-static-block@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3e80814b5b6d4fe17826093918680a351c2d34398a914ce6e55d8083d72a9bdde4fbaf6a2dcea0e23a03de26dc2917ae3efd603d27099e2b98380345703bf948
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ce307af83cf433d4ec42932329fad25fa73138ab39c7436882ea28742e1c0066626d224e0ad2988724c82644e41601cef607b36194f695cb78a1fcdc959637bd
languageName: node
linkType: hard
"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 85740478be5b0de185228e7814451d74ab8ce0a26fcca7613955262a26e99e8e15e9da58f60c754b84515d4c679b590dbd3f2148f0f58025f4ae706f1c5a5d4a
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-syntax-jsx@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 34afe4030c249ed5a559c7d164b317a6209f3fca2db7dee7ecb8413af84167381d82f23517bf8e41d359da07da9b0fd2c0472e81c4389e5cc9d1997a308d49de
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30
languageName: node
linkType: hard
"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b317174783e6e96029b743ccff2a67d63d38756876e7e5d0ba53a322e38d9ca452c13354a57de1ad476b4c066dbae699e0ca157441da611117a47af88985ecda
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bbd1a56b095be7820029b209677b194db9b1d26691fe999856462e66b25b281f031f3dfd91b1619e9dcf95bebe336211833b854d0fb8780d618e35667c2d0d7e
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-syntax-typescript@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2da3bdd031230e515615fe39c50d40064d04f64f1d2b60113adff2c112a27e4f9425425e604297d5c2af2b635e7980f3677e434dfeb1d7320ad2cd1ffc8e8c2a
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-arrow-functions@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ff647300424968d1cd6c6b015fd72d332042a94c7b08f3e785f32d22364bfad49258a41c53675de08573af98da1a623efa03da13a653f06988f79a9d571f7030
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-async-to-generator@npm:7.16.0"
dependencies:
"@babel/helper-module-imports": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
"@babel/helper-remap-async-to-generator": ^7.16.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2ebf505f43350d246007d754577477ddb0132c4ab39c9fd420d36ebb6e489b2b3eb48f27fe58f7ad0c742946a1e81e3b150666507abab03fe6bd649ff585ed45
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f7efc5d8ce9242e11c94c82d9c940d4c534a751ff3679839d2f7d7a300c29ac4c4a3c26c238b5f2828201cac8a848bfb6342c285460f6ce5bc267cbdc1bb070b
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-block-scoping@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e5bcb9eeed7974ee6dd14c360c21ad2465f81342001e5468bbec5db483fffc78bb0e7f84155be6c32588bc0b43a6ca0050c7962400b33d134f6298c31c8073d4
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-classes@npm:7.16.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.0
"@babel/helper-function-name": ^7.16.0
"@babel/helper-optimise-call-expression": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
"@babel/helper-replace-supers": ^7.16.0
"@babel/helper-split-export-declaration": ^7.16.0
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7db47296045761b3f35a9075b4bcce99ad5aa93714cca235961fa596983ba6cfd4d84b29fa6745e4752bd2a60ac299b0dee3231ce20061b6798ae16a147e4992
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-computed-properties@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0f86de419cf5daf28b01c5b2feafa426e5b0ec776290e731de3d7a6ec4ec742400e13436d67292e500ecd50e21ddab9ae34da79357a85a443d30dc94f2a4f6a3
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-destructuring@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0a499c9abd6b50d4da6a3c8416e3cdf305f8002fddb3bd9ddd0774ba17ab1b10134f79fe8edc495c94344e5ab387626fb0ee124d31810758968a92d573ff9034
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.16.0, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.16.0
resolution: "@babel/plugin-transform-dotall-regex@npm:7.16.0"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c1f381f0d44a1b33714a68ffd60f2b9efac1be95caf3c21192cc8233afde2fae1da268e26b3cb40764736f090793b66946574c3310cfdd4906a7e72310239ff9
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 66f09487fdf737aa280c780a609bafc9a771b34b5f9a8dccf69752c22110893763f6c105062776f084ed872a55d1656b3f14e2a9c2031f3dbdf31da20d9c827b
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.16.0"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 22e1d4804a5fc522744a1cc13e2c35c5d81c2e303a634822fee59829477b3748dcf897a020c3083084350ab1d3b76752157b216971157763394021e2f2184094
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-for-of@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 504d967b30b00d3e1a2784f6a215963fc0036871f8fd6ca61e41e67cdb3319511e9148164428144469416b35b0e02c896c144402ace7cd7a6c45b0d1e8746ae6
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-function-name@npm:7.16.0"
dependencies:
"@babel/helper-function-name": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 289f4fce26e8b3a81fcae752cecdb78b363eb29e400aa4dc8318484156d908ddc6dd5b274b8fbcdb80ea59a362834554c4a5d3454e974957dbd2b30c3d00ad3f
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-literals@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7291771c7626a27684053ceefc4e2e3e480a6ceab9f3c8abbdd9c90fcea63f035ace397e53bfc4b7311b835f7c79449be03226affa69e2e2a96c14b6da4d5db9
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.16.0"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d5ed6cf840b9fd8b88f719dea46dc26a1778f10aeab6878b3eabf2350cfa813bfeff09d91c6afc93dd3536a48bc892a0afcf9f99f3bad6b54b41638f3ae80fa9
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-modules-amd@npm:7.16.0"
dependencies:
"@babel/helper-module-transforms": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c37ccb8cd7a301123fb5590712d957bf9f82bb0d89a83441b570a9f9793af76b99449c93f1079ad187fb598a5eeb5571561ff4d71af9192c7d6e407a464d6aff
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.16.0"
dependencies:
"@babel/helper-module-transforms": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
"@babel/helper-simple-access": ^7.16.0
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a7e43670f503b31d6ad42977ddefb7bffc23f700a24252859652aa03efd666698567b0817060dd6f84a6cd23e7aac7464bc0dc7f7f929cad212263abcac9d470
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.16.0"
dependencies:
"@babel/helper-hoist-variables": ^7.16.0
"@babel/helper-module-transforms": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
"@babel/helper-validator-identifier": ^7.15.7
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4aa9bd45a4c1f79a4abd92482b4f9ac6492b5e727ee34316c80a30b6524281d39959a2d556b231eae4b1031f35e0133e60270f9e4bfa5f25a8cb68ef145dfcd2
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-modules-umd@npm:7.16.0"
dependencies:
"@babel/helper-module-transforms": ^7.16.0
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b07d41eae3a1163fdb2dca4bffb0de880981e6581163948a88b7665709e860612932f5a73e54d70057e834d3968e3b5f86222f1d302c9e1d34d95a764584af54
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.16.0":
version: 7.16.0
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.16.0"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.16.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 758a87aca66ea7944c5f94ed7a798220c3b2986da4c38dc3f63221065ec96534bf39b3b043dd9759dbdff4026d340bbe51082d5ad4505c19b08893663130675b
languageName: node
linkType: hard