-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
14954 lines (13434 loc) · 506 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: 6
cacheKey: 8
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 3963eff3ebfb0e091c7e6f99596ef4b258683e4ba8a134e4e95f77afe85be5c931e184fff6435fb4885d12eba04a5e25532f7fbc292ca13b48e7da943474e2f3
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.14.5, @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.15.0, @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.15.5":
version: 7.15.5
resolution: "@babel/core@npm:7.15.5"
dependencies:
"@babel/code-frame": ^7.14.5
"@babel/generator": ^7.15.4
"@babel/helper-compilation-targets": ^7.15.4
"@babel/helper-module-transforms": ^7.15.4
"@babel/helpers": ^7.15.4
"@babel/parser": ^7.15.5
"@babel/template": ^7.15.4
"@babel/traverse": ^7.15.4
"@babel/types": ^7.15.4
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: 8121bf74040d98562b773c1e92a174cd53c99a5158ae5a9ef25645ed35d6f821c64155e394cdb04e7dc77a0871ba42a638f6703b2c44a75bc04564b21cad9e1b
languageName: node
linkType: hard
"@babel/generator@npm:^7.15.4, @babel/generator@npm:^7.16.5":
version: 7.16.5
resolution: "@babel/generator@npm:7.16.5"
dependencies:
"@babel/types": ^7.16.0
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 621fa2da21a5397a4739f03af1eda76140f0da9f962071640a479c0cf1859edc576aa8881b5771be9274238f048bf9024c94d826003659f64eee29c48f2fe470
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.5":
version: 7.16.5
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.16.5"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.16.0
"@babel/types": ^7.16.0
checksum: c351f534205aba6eff063692bb410d8484d568947b94df3f6f86396a1bd009156692e448cbee747442df29c53ac2f444d7a324861579762833665f5de04c9c62
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.15.4, @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.14.5, @babel/helper-create-class-features-plugin@npm:^7.16.0, @babel/helper-create-class-features-plugin@npm:^7.16.5":
version: 7.16.5
resolution: "@babel/helper-create-class-features-plugin@npm:7.16.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.0
"@babel/helper-environment-visitor": ^7.16.5
"@babel/helper-function-name": ^7.16.0
"@babel/helper-member-expression-to-functions": ^7.16.5
"@babel/helper-optimise-call-expression": ^7.16.0
"@babel/helper-replace-supers": ^7.16.5
"@babel/helper-split-export-declaration": ^7.16.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: f558098f8297c1fb4d824bffd099f285af35bb6ca3080701e1da3f88b21ab9a94fd444603175ba186762eb2c2ef8197416faafeacd2a82aab1b7c4a233c765a8
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.2.2, @babel/helper-define-polyfill-provider@npm:^0.2.4":
version: 0.2.4
resolution: "@babel/helper-define-polyfill-provider@npm:0.2.4"
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: 0b81df2fe8d4e7af1f0ed0f9c83bdb0fc1978e2cb2d4b5421dad7ee4afda79044d61de5b06026164ef52ee1afa59a15ee99bc7e532ad2b8a4bbe4341d3fa6b05
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.16.5":
version: 7.16.5
resolution: "@babel/helper-environment-visitor@npm:7.16.5"
dependencies:
"@babel/types": ^7.16.0
checksum: f57da613f2fb9ca0b85cb4a9131cb688555e78ba8b0047ac0e73551b247eb71bf8fa075e6408064e8ab71ec230f24b4e06367efc9ccd1dcfcea0efe0086f02f3
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.5":
version: 7.16.5
resolution: "@babel/helper-member-expression-to-functions@npm:7.16.5"
dependencies:
"@babel/types": ^7.16.0
checksum: 54d061e0f77fc7b4c338aca4c53104f5074126c23a702e6320dac39c4f99ee7ea07962824256b6b18f1202ea3c23d4e388b23a846df65550896398f65675d397
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.14.5, @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.15.4, @babel/helper-module-transforms@npm:^7.16.5":
version: 7.16.5
resolution: "@babel/helper-module-transforms@npm:7.16.5"
dependencies:
"@babel/helper-environment-visitor": ^7.16.5
"@babel/helper-module-imports": ^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.5
"@babel/types": ^7.16.0
checksum: 0463e7198e5540cbb90981f769c89ec302001b211c33df1a6790a1eaee678ec418cee40ef3cf0fe159d40787214fbba129582f6b07e79244dc8cbcd5e791dd18
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.16.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.16.5
resolution: "@babel/helper-plugin-utils@npm:7.16.5"
checksum: 3ff605f879a9ed287952b538a8334bb16e6cf7cf441f205713b1cf8043b047a965773b66e50575018504f349e16368acfe4702a2f376e16263733e2c7c6c3e39
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.16.5":
version: 7.16.5
resolution: "@babel/helper-remap-async-to-generator@npm:7.16.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.0
"@babel/helper-wrap-function": ^7.16.5
"@babel/types": ^7.16.0
checksum: 85195707465fc9fe87b1ce67490c7e7a58ea980444f8a34d156a0e09bf3148a66b245b1425e4f4fa13d3a6eb09395943cae52df57bc4296d7eb6d3bc3cb0c3ff
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.16.5":
version: 7.16.5
resolution: "@babel/helper-replace-supers@npm:7.16.5"
dependencies:
"@babel/helper-environment-visitor": ^7.16.5
"@babel/helper-member-expression-to-functions": ^7.16.5
"@babel/helper-optimise-call-expression": ^7.16.0
"@babel/traverse": ^7.16.5
"@babel/types": ^7.16.0
checksum: 7eb2cba87a6c4d9c7a8d0951b70eb19007e37bfbba61e1087f847fb263b21e13cc659d6ce29c0ccd00f9870e26131c1e09a0f01afcd10f6cb792dc9d8db147bc
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.14.5, @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-string-parser@npm:^7.19.4":
version: 7.19.4
resolution: "@babel/helper-string-parser@npm:7.19.4"
checksum: b2f8a3920b30dfac81ec282ac4ad9598ea170648f8254b10f475abe6d944808fb006aab325d3eb5a8ad3bea8dfa888cfa6ef471050dae5748497c110ec060943
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.14.9, @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-identifier@npm:^7.19.1":
version: 7.19.1
resolution: "@babel/helper-validator-identifier@npm:7.19.1"
checksum: 0eca5e86a729162af569b46c6c41a63e18b43dbe09fda1d2a3c8924f7d617116af39cac5e4cd5d431bb760b4dca3c0970e0c444789b1db42bcf1fa41fbad0a3a
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.5":
version: 7.16.5
resolution: "@babel/helper-wrap-function@npm:7.16.5"
dependencies:
"@babel/helper-function-name": ^7.16.0
"@babel/template": ^7.16.0
"@babel/traverse": ^7.16.5
"@babel/types": ^7.16.0
checksum: fd53491bb27b9939604f1a1d2b7ef64aff582257e77991406b42ef1656e0e3bd8368e63413af3115fb0308ed5919c8d06f39deea430eaeef36b3802416cd4aa7
languageName: node
linkType: hard
"@babel/helpers@npm:^7.15.4":
version: 7.16.5
resolution: "@babel/helpers@npm:7.16.5"
dependencies:
"@babel/template": ^7.16.0
"@babel/traverse": ^7.16.5
"@babel/types": ^7.16.0
checksum: 960d938a4359b7f9ff7b753e33b6f600e269aec0ef6030c8026ac37525103da8cde5f1c04ce7de1ad6fc37707aa6178eae938d6fc82544aa25c9fd602c62e0a8
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4, @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.15.5, @babel/parser@npm:^7.16.0, @babel/parser@npm:^7.16.5":
version: 7.16.6
resolution: "@babel/parser@npm:7.16.6"
bin:
parser: ./bin/babel-parser.js
checksum: 5cbb01a7b2ba5d609945099bfadb01f54e11ef85201e1e0bf47010ee1b35c257eca6ff91606c6ce8adba82a95e180b583183e4dc076f4a70e706152075dd98ca
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.15.4":
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.15.4":
version: 7.16.5
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
"@babel/helper-remap-async-to-generator": ^7.16.5
"@babel/plugin-syntax-async-generators": ^7.8.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b57649dd33174a13b8e379b70dc6f2c2cc42d8d97befbc8c3eeed211f9060479d4f48ae096826fcd0b247497c18efb97672760b3b4c04fa1ae086fbb15c1fe7e
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-class-properties@npm:7.14.5"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.14.5
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fe2aa0a44f8ea121e10c856d6fb4fca418dc42451258ef6ed29321ca740080fba420ebd3d6700d0456c34c2ab2044f9ce4308498321f52a93184ff5adb015aae
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-proposal-class-properties@npm:7.16.5"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.16.5
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2a58b1a43e2625f1345c45f3cc8a4976d80f67c00a95933c692512d9d3b18cd1323ab3676a3562f4afa70be93dccacb5276da1cf209f5ebc8b46bf63aba36d27
languageName: node
linkType: hard
"@babel/plugin-proposal-class-static-block@npm:^7.15.4":
version: 7.16.5
resolution: "@babel/plugin-proposal-class-static-block@npm:7.16.5"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.16.5
"@babel/helper-plugin-utils": ^7.16.5
"@babel/plugin-syntax-class-static-block": ^7.14.5
peerDependencies:
"@babel/core": ^7.12.0
checksum: 461dbd90c232ecd11d5b6fc67c7c50285a4762eec27463928e871918660c28b3f5558aa675cdfd52ccfaadeb3feda1c8f2e539fca60225dd21b6bca003442f3a
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
"@babel/plugin-syntax-dynamic-import": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e08d1e2dac8c44c094e50e38d9fe7b0008f0a2ff3a9ccff7beb6f15c53b06edbadd6bfc2aa6ab5923bb480608bbc85a2126602cf2abe358d7302c89d2372e143
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9f52177482b4ef8858b8c6386e2d136384796bbcc24ac84622943b84579371168ce9cbb4cc438e1120d6c4d8789ca5b43a5fd05c694bddccad5c553a2afc7883
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-proposal-json-strings@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
"@babel/plugin-syntax-json-strings": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 31c8d80d597c3072d204a8cb9323127ecdf9bf17c286755325de836692985dc5579a53642f3db1dd22ad0d8c20d802a21488d84f73ffe825eb1e2f1ddd4555dc
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 453f8b89c77c423ca710394c4409a337e5ecc4ac58ecb32fe5392dcd0db122d86b3eeec0578e1ae4ddf09515d0201e511021b7c1c7f4c6a27c5e91afe4ed0c5c
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 035a5a8f4d892ead797ce5c39b59c5fd91ef14f20cc9bfeafbbe7179ef05bd6ae311b73a5f36472cc278e3d282a1d025b0326ff7cf0bbfb63173cae469ff823b
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
"@babel/plugin-syntax-numeric-separator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 38dfbca1a3b8dfdb8a90d8f4b6767dcbca4987de9a748416c980ca243dcaac460f044999644118be277f80d4b08161c6df8b2835c7134efde3601f949b75e3ef
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:7.15.6":
version: 7.15.6
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.15.6"
dependencies:
"@babel/compat-data": ^7.15.0
"@babel/helper-compilation-targets": ^7.15.4
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
"@babel/plugin-transform-parameters": ^7.15.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fef884b9e2e235c449f317b4fb0f90c23bdfbfec160c3ed105a3bbf2a85a6e449883953f8229ba132ad65090ff38094fca8475225ad462d1bd87f1392f3f60ed
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.15.6":
version: 7.16.5
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.16.5"
dependencies:
"@babel/compat-data": ^7.16.4
"@babel/helper-compilation-targets": ^7.16.3
"@babel/helper-plugin-utils": ^7.16.5
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
"@babel/plugin-transform-parameters": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8632cf389ce153c31f57d4bb8b69314ba93732bb469b6b5923ba53ee48e4d506bbba614c4d0748e21790e0780612d60c2f6db7477ef98f6757b35eb7a03508da
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
"@babel/plugin-syntax-optional-catch-binding": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 38a2c0c677eedd198617e156aa29f6adbd17f9b5cf9f9a79fe5950d68a0ea8e99225965e20f65ca03502a513cd09f28083875a924cc0dd0e6fb3cb0ec2a22317
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/helper-skip-transparent-expression-wrappers": ^7.14.5
"@babel/plugin-syntax-optional-chaining": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9e39e20d162bea2241b4c24ea8a339f872a04954a5155c606bf2437edaa1a15b8a517daee4b2b09cfd42d826b93c57f080aa9fbb13c60a8f3a7a72963badf2df
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.14.5, @babel/plugin-proposal-optional-chaining@npm:^7.16.0":
version: 7.16.5
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.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: 4eaf5d4bd1438e1aece5d50fe6ef3b67277161103010eb4b2d45124ab6354fe1083752cf3e9422d72afd439e2a42b61ebdb4e2a10b2d10fcaf9696ee691003e4
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-proposal-private-methods@npm:7.16.5"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.16.5
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 93326582f848f3a0771803b3e835b2c981560f23a417ec1e0c2180b6cc5294ed7a8dfdef35939ede8c9a96e2b5f34dce9e5cc8d3f848d66f1f3a25f7b7b0240f
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:^7.15.4":
version: 7.16.5
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.16.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.0
"@babel/helper-create-class-features-plugin": ^7.16.5
"@babel/helper-plugin-utils": ^7.16.5
"@babel/plugin-syntax-private-property-in-object": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 649d5e799e55001dd96ffd02e2aeb0ada31cca682d3e25e63552c91ac0ef6fff352f7fa8465fbb4b6751c2e08eb98fa54ad6014a7e586996846912449edb22d1
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.14.5, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.16.5
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.16.5"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.16.0
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 884109813dc054afae7ffc0804851a0091a2ae5473243c5a2e3c7a8b00bc24803597298301d407a8c5a80bd7e0e5f82fe737f1889a508880b073787ab7c9b4b4
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.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-jsx@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3a2ba87534b0f9ee70eba0754d2ae544825c25afd98efb8e42b41399e02de4cc5b1f70fc5ce444fb7a7e5b09972c289eed2f00917be5b88d67407f4cbde8e960
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.5
resolution: "@babel/plugin-syntax-typescript@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 73454e8e9d5be92304d60d457203b43e04a9d331c4234eefad390a3a4d36a30d75b211ba9e98205e0b322a6c178e46b5852da35889eef9183549d6589d04a01e
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-transform-arrow-functions@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5e84ff27f0eca46a1519c2cbc35d2e5afbb75d744cc3ff32ae060bfe5b6f1de9f7326b2fbbf589be4b8072d99325c9836cf73fd12b9ecd6e80028440ee768c47
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-transform-async-to-generator@npm:7.16.5"
dependencies:
"@babel/helper-module-imports": ^7.16.0
"@babel/helper-plugin-utils": ^7.16.5
"@babel/helper-remap-async-to-generator": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e50fcf1fc72aeff66a621c8c0e4bdfb77c5bd023a8a013900db7f5cc23c3474681cd0508bcf4306cbe872a98d6cfc945249c1aa3f7fcea6c26242f9b9e99609c
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c4c13997a5b491d60f69ded97ba899d898472275315c91d87729360e6bf57da948356ea7a4b2bdf52cf9ea9a97582ec551f9eb7b759202b950acb5cab8e4cbdb
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.15.3":
version: 7.16.5
resolution: "@babel/plugin-transform-block-scoping@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1aa74a77cd69613a8f8ccbedfcf44587f49361d42f27201f52b2b6c3cc08639d553171ae2ed31c4af449e49574d0a796241e66fddc381606ed1185af11d17c6d
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.15.4":
version: 7.16.5
resolution: "@babel/plugin-transform-classes@npm:7.16.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.16.0
"@babel/helper-environment-visitor": ^7.16.5
"@babel/helper-function-name": ^7.16.0
"@babel/helper-optimise-call-expression": ^7.16.0
"@babel/helper-plugin-utils": ^7.16.5
"@babel/helper-replace-supers": ^7.16.5
"@babel/helper-split-export-declaration": ^7.16.0
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a142a4c2c46d7946cb7b7d0d1ae62bd52629dbf68056bfaa3739ecc3d252292d20a93daeff100b9a7acd89e5abc4bf4f45417a142a0e3fb1eebf707bd92c711b
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-transform-computed-properties@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 57b829e737e1f69f02bd1c10a8835b30e1a7c77b1c1c9dffecaf30101a4d4c7a37851f36e225bc02d4dec8032e1cc503c6bc46592700bf69611455b8d34d4df4
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.14.7":
version: 7.16.5
resolution: "@babel/plugin-transform-destructuring@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bdc5c4b52800c5c49e63d839231937259ea4ec555b07ea735d1eb2fdec2c9a4d43c9fca79771bafa79c06ebf10e902e531092dee0d493e2aee4aa1a101dca40c
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.14.5, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.16.5
resolution: "@babel/plugin-transform-dotall-regex@npm:7.16.5"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.16.0
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f14e5ec1e7795d356435875256da0f6e4c9d2930a7dc2a5818439ced23161d1a664506654ffcd86d25e23e7ed8346e719e6a13cd2d6b262629d2fea7699aead4
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c897998b8dddae4cd6fb4451cbc9954468cdd7a04087f3f064a43741feb4e74dde8d69772af540fa7869c0484a15a23f89356f845f508bcfd8c7bec1e4670807
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.16.5"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.16.5
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8eb96d043af3ef72091b11f9e05e01d0bc0eb71c9adac36e2750b9f34d8ac1198a070139d404beaf07b5665bcb612ba52146f5cb82fb85daec88b43a22482cf6
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.15.4":
version: 7.16.5
resolution: "@babel/plugin-transform-for-of@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 203fbbf9101d14d756c564df9e219eb7c134bb42a8a5f083148110493a89a40c08aa2f412e11b6253bb48db885ca1869f36e0d0cfc65532a8e0a5ce793948618
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-transform-function-name@npm:7.16.5"
dependencies:
"@babel/helper-function-name": ^7.16.0
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3b933eb0650d00c3bef51e06ec8f106e8ba97960b111e6723e1ff4818c6a0c4f02547336446366a4d8b5f8b5f08fef1e7e014e3d1264dbd665c85f1b47dd99a3
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-transform-literals@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 81066d35cb212f759cbc00e682b661c2ff77425d7c725a45679d2bee17d9aed28c240deb3f5063faa81c794e892e31269633433a5abdca0f6735cc153673b10e
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.16.5"
dependencies:
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ce491530a413538e9024f78e550faf043023fb57b3f4584f59c3d7632c0d0d5f1065b2d0ffe6d2c1035124e79d8f47db1e0b0b08b97bb50817cec7fe77580925
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-transform-modules-amd@npm:7.16.5"
dependencies:
"@babel/helper-module-transforms": ^7.16.5
"@babel/helper-plugin-utils": ^7.16.5
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5587a9efd84e4ed9a36362b92dcfceff274267fee93e9b6c499a16bc3e6b54807917171b1852b7201abafbd6baf4ac624c72410a08344b19d1672c5285c8ee15
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.15.4":
version: 7.16.5
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.16.5"
dependencies:
"@babel/helper-module-transforms": ^7.16.5
"@babel/helper-plugin-utils": ^7.16.5
"@babel/helper-simple-access": ^7.16.0
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5b5c23e492d60ccddf2b0fcca150965818c33892f8301633404861d0aab6c78d8d0110cf7f91b669e2842eb3815d1e629af5b4c5d801df6100be0bc5f50e8c49
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.15.4":
version: 7.16.5
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.16.5"
dependencies:
"@babel/helper-hoist-variables": ^7.16.0
"@babel/helper-module-transforms": ^7.16.5
"@babel/helper-plugin-utils": ^7.16.5
"@babel/helper-validator-identifier": ^7.15.7
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fc7937fa417848c8cfc4ffe590ab5b13ee881a527c6a6c11eb146fe335f01b2d679c68dfed6b95a586e83841f5aac54b5a6a818d6733ff4cc1f0ac3d54c23eba
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.14.5":
version: 7.16.5
resolution: "@babel/plugin-transform-modules-umd@npm:7.16.5"
dependencies:
"@babel/helper-module-transforms": ^7.16.5
"@babel/helper-plugin-utils": ^7.16.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ce9ec8e928528bb193007a56e0619d5e7defec84d8df795239a7fdcfc87d08b3b029b059cfad1bb560e4083f03170b469ae6a7272016e6cce57f5541598260be
languageName: node