-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathyarn.lock
11385 lines (10255 loc) · 408 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: 8
cacheKey: 10c0
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": "npm:^7.10.4"
checksum: 10c0/836ffd155506768e991d6dd8c51db37cad5958ed1c8e0a2329ccd9527165d5c752e943d66a5c3c92ffd45f343419f0742e7636629a529f4fbd5303e3637746b9
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
dependencies:
"@babel/highlight": "npm:^7.10.4"
checksum: 10c0/69e0f52986a1f40231d891224f420436629b6678711b68c088e97b7bdba1607aeb5eb9cfb070275c433f0bf43c37c134845db80d1cdbf5ac88a69b0bdcce9402
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/code-frame@npm:7.14.5"
dependencies:
"@babel/highlight": "npm:^7.14.5"
checksum: 10c0/6dd398ce8d7981f78236c1d02878b32f9d4ab953bcc6bae3fa472370f61c4f45a2db188ea5560e3615d8bdd44c1c69bb3c21997a19d57607183f864e73539946
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.12.1, @babel/compat-data@npm:^7.12.5":
version: 7.12.5
resolution: "@babel/compat-data@npm:7.12.5"
checksum: 10c0/1b52b975b71ba6dded8f18c67b200aa98f2a377f6df27f2c59f0fcece5d8ad0c120a37dba0067af7126c33a2abf0e620ee100b7835e53383464d88856944e75d
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.15.0":
version: 7.15.0
resolution: "@babel/compat-data@npm:7.15.0"
checksum: 10c0/2b709dddd224be81b9ab2bd8b5b218e5b94ce7678fc04144c98bd0a769df2ee13738ea5f639d585d3847897e208e03e919750fa6b208c32bfeba5f9fe67cec9c
languageName: node
linkType: hard
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.7.5":
version: 7.11.6
resolution: "@babel/core@npm:7.11.6"
dependencies:
"@babel/code-frame": "npm:^7.10.4"
"@babel/generator": "npm:^7.11.6"
"@babel/helper-module-transforms": "npm:^7.11.0"
"@babel/helpers": "npm:^7.10.4"
"@babel/parser": "npm:^7.11.5"
"@babel/template": "npm:^7.10.4"
"@babel/traverse": "npm:^7.11.5"
"@babel/types": "npm:^7.11.5"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.1"
json5: "npm:^2.1.2"
lodash: "npm:^4.17.19"
resolve: "npm:^1.3.2"
semver: "npm:^5.4.1"
source-map: "npm:^0.5.0"
checksum: 10c0/bcaaf394d274d0de7a4d189df0cd7460efb46b5e16dfc957bb6627b9d794644d6a3bfe2542fc62cb1007b6e7c7d4770e83bbeacae6bc2281300c00b1f5fd4c14
languageName: node
linkType: hard
"@babel/core@npm:^7.12.3":
version: 7.12.3
resolution: "@babel/core@npm:7.12.3"
dependencies:
"@babel/code-frame": "npm:^7.10.4"
"@babel/generator": "npm:^7.12.1"
"@babel/helper-module-transforms": "npm:^7.12.1"
"@babel/helpers": "npm:^7.12.1"
"@babel/parser": "npm:^7.12.3"
"@babel/template": "npm:^7.10.4"
"@babel/traverse": "npm:^7.12.1"
"@babel/types": "npm:^7.12.1"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.1"
json5: "npm:^2.1.2"
lodash: "npm:^4.17.19"
resolve: "npm:^1.3.2"
semver: "npm:^5.4.1"
source-map: "npm:^0.5.0"
checksum: 10c0/439b0d5c33c1f6f0da2dd6b2cccc1fc92cb1923b8b259e21a4decc13a7edae5ec59bc8a52e343a822404ac416b27e1b200a62715af11a91c1748b428762fd878
languageName: node
linkType: hard
"@babel/core@npm:^7.7.2":
version: 7.15.0
resolution: "@babel/core@npm:7.15.0"
dependencies:
"@babel/code-frame": "npm:^7.14.5"
"@babel/generator": "npm:^7.15.0"
"@babel/helper-compilation-targets": "npm:^7.15.0"
"@babel/helper-module-transforms": "npm:^7.15.0"
"@babel/helpers": "npm:^7.14.8"
"@babel/parser": "npm:^7.15.0"
"@babel/template": "npm:^7.14.5"
"@babel/traverse": "npm:^7.15.0"
"@babel/types": "npm:^7.15.0"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.1.2"
semver: "npm:^6.3.0"
source-map: "npm:^0.5.0"
checksum: 10c0/eac89834892358fb3d4731b89f6e4c3bfcc6ee742841abf4dc231f2f2181479f77490815e9677dbb77d8cafac2f7f5cf5ea726c4eb105cc425d00d09e3d9a53b
languageName: node
linkType: hard
"@babel/generator@npm:^7.11.5, @babel/generator@npm:^7.11.6":
version: 7.11.6
resolution: "@babel/generator@npm:7.11.6"
dependencies:
"@babel/types": "npm:^7.11.5"
jsesc: "npm:^2.5.1"
source-map: "npm:^0.5.0"
checksum: 10c0/0050faaddc7111644e0d852289f654fae65155073f1596c3ea8301ba4a4f2ca2870fc7647897cb2849c3831dbef0679338ff45a58091ac57a523bc1344742b43
languageName: node
linkType: hard
"@babel/generator@npm:^7.12.1, @babel/generator@npm:^7.12.5":
version: 7.12.5
resolution: "@babel/generator@npm:7.12.5"
dependencies:
"@babel/types": "npm:^7.12.5"
jsesc: "npm:^2.5.1"
source-map: "npm:^0.5.0"
checksum: 10c0/b1eef36d1c02859c3fef55ad02c29225e17d6934c3e08be5cc4271c31905f09a523d5880ed70eb0891caa2bfe4548326ba4a4138123d3ca868ecdac9b21f8579
languageName: node
linkType: hard
"@babel/generator@npm:^7.15.0, @babel/generator@npm:^7.7.2":
version: 7.15.0
resolution: "@babel/generator@npm:7.15.0"
dependencies:
"@babel/types": "npm:^7.15.0"
jsesc: "npm:^2.5.1"
source-map: "npm:^0.5.0"
checksum: 10c0/7635fc11ac7b85c80d43aecbfa6d61835957327ccf416ef624c7f5629e0f4f92fd298f1d86e7a79d294a53c406868a40614b890c75996470ab8512be5e8d953d
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-annotate-as-pure@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10c0/0023c4933a4c33267494f65063f3375f8c82671db1caf748db6a8c91682a7bbc72f6d43248a095cb5211cc8ab3812cbbfce99e972a9b1ce44edd25eeffca308c
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.10.4"
dependencies:
"@babel/helper-explode-assignable-expression": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/2e2894d28c7d85573ce34c360fad916e041aa74fe214bff9a9dd3f8bf7c4eba3353b32708b8ba7d5c8e51beb4c4c6e8e431dca112573fcd060b2e1390ea9f322
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.12.1":
version: 7.12.5
resolution: "@babel/helper-compilation-targets@npm:7.12.5"
dependencies:
"@babel/compat-data": "npm:^7.12.5"
"@babel/helper-validator-option": "npm:^7.12.1"
browserslist: "npm:^4.14.5"
semver: "npm:^5.5.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/eb8bebb2ec060cfc80617a6f5ccef0808d41a1ea5e6c28a3958b1f5c5c548e6b3b59c0d208ffb01281e32b4948095ca78392e1a36cf372843989f6afea6ec16a
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.15.0":
version: 7.15.0
resolution: "@babel/helper-compilation-targets@npm:7.15.0"
dependencies:
"@babel/compat-data": "npm:^7.15.0"
"@babel/helper-validator-option": "npm:^7.14.5"
browserslist: "npm:^4.16.6"
semver: "npm:^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/ec59e48a17c6df9ae4c66452ae1c25843ade3514a975284ab3ec533918fae2be6824e2937525d81a3138579cb03dfeff1723b9ee370484e1f0cc40860e5a00ea
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-create-class-features-plugin@npm:7.12.1"
dependencies:
"@babel/helper-function-name": "npm:^7.10.4"
"@babel/helper-member-expression-to-functions": "npm:^7.12.1"
"@babel/helper-optimise-call-expression": "npm:^7.10.4"
"@babel/helper-replace-supers": "npm:^7.12.1"
"@babel/helper-split-export-declaration": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/781661418fe4d1099eb77ae10b147243027f0fb51aec1779a321c3bcf225bf0ce2a0702158eba03300a667d58d0bf696a68a886f109624f99ebd24337430dee6
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.12.1"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.10.4"
"@babel/helper-regex": "npm:^7.10.4"
regexpu-core: "npm:^4.7.1"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/b348f0571fddde65ecd653aa6f7cdf30bf1f74defe1aa92adf467e04b16a85e7b4ca413ca21204d570baafc5e506400fa1c1c0a8328f804f20e9f72a813fea1b
languageName: node
linkType: hard
"@babel/helper-define-map@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-define-map@npm:7.10.5"
dependencies:
"@babel/helper-function-name": "npm:^7.10.4"
"@babel/types": "npm:^7.10.5"
lodash: "npm:^4.17.19"
checksum: 10c0/8bacffeb823c238f90fa7d04fbf42fa4331745b0897bc53a0bea0782beb89f2c916d5e801fa91281998607c3e86b717b98f4a49a603d73c8fafbf8ed689ce06c
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.10.4":
version: 7.12.1
resolution: "@babel/helper-explode-assignable-expression@npm:7.12.1"
dependencies:
"@babel/types": "npm:^7.12.1"
checksum: 10c0/f43b9b8f220c7c4ee58c91956c02a72472f3341cbfb20a4bc3b1fb78b468157eb137c3342595908b85b228806ac5aac34fdd5617d981394b4df0ab09ce347b58
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-function-name@npm:7.10.4"
dependencies:
"@babel/helper-get-function-arity": "npm:^7.10.4"
"@babel/template": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/3de73077cc789809d1265154a20e8710043955a949446539f5d27c615ba03065227de4a129dcf4f6ded397d66147a074d622f81e49bb6436aeb8e2cb198fdec0
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-function-name@npm:7.14.5"
dependencies:
"@babel/helper-get-function-arity": "npm:^7.14.5"
"@babel/template": "npm:^7.14.5"
"@babel/types": "npm:^7.14.5"
checksum: 10c0/a3b2c25a4ffda2e700939f43654988c42238e06945875895e8cd593bc4bd0c0267ca12bf6b62ef2053fae04234aa1f5e2bb3d70667dad64f1a26d3a3ef8210a0
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-get-function-arity@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10c0/c8cac1968e79d127692f186a778599f84a2037a6778cd1891f5e4b0b3df8dc0570aabe3fa0d51705c5c9a25762696a9acad1cba751c8373b33c594ee1d00a7f4
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-get-function-arity@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
checksum: 10c0/e9e9f0cf22c907430daa11b4dbe252b922e91e3183166c9de4d987a4382f87f28c97e2f7672ae88ab03b54b436afaa3470b00cb7c258cc9c28fe747b291145e5
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-hoist-variables@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10c0/4cb45f0b68566015907dd84bf986bb22981eaac2d6706ada0cec6134647c370591e7a5f0722784dcbac32f0cccb787a038ae4fdf1976e8c07e25c00bf6fff779
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-hoist-variables@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
checksum: 10c0/b952a198c602390161675dc826c47a18539ee36a3a675d8dcfde2d4866513fc9e2608f2133d4233ceb6443e06faa26ee8db9dc0070b26b32be6c9926607552a8
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.10.4":
version: 7.11.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.11.0"
dependencies:
"@babel/types": "npm:^7.11.0"
checksum: 10c0/ba8724c4e7055b4771aa02d9d18fa03627881e47df4ec1de99e683d589c06465728cc62f43f92956362e4103ac95b8a317d56f0f9f33f536d215f0e887c5647f
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-member-expression-to-functions@npm:7.12.1"
dependencies:
"@babel/types": "npm:^7.12.1"
checksum: 10c0/f6c51920d1d42ee152aed5a9ecca2632fdd60362613a1768f02a38ea71aed12bf5ea8052b418347f55f7247df265dc465c69f201caaf70c532ed18e887c2e984
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.15.0":
version: 7.15.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.15.0"
dependencies:
"@babel/types": "npm:^7.15.0"
checksum: 10c0/6db9f3690c60f4e3a186dc646b3e23b7fcc2a2c7c1b1bb7662151172808bde63c0937c3756427311a64bdb05704830b49af10fc45404a568e5a9678b840f9e4b
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-module-imports@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10c0/8f22f1f9e7628f2cfd4d3961388db05f16329df0310317f55cfc93f7dac648a45bce5e2680353a33161e0bf6dba8241fcd6827a2e7a2607a82f3798dadcada06
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.12.1":
version: 7.12.5
resolution: "@babel/helper-module-imports@npm:7.12.5"
dependencies:
"@babel/types": "npm:^7.12.5"
checksum: 10c0/1990a14c84013f4f3cf7c2526d801b5d39247314fbb666eb8d7f4d40be23e96ae91acc8987769b24b378559f40cd1cf94ce5c8384fbf57d277ab51ddcfa022fe
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-module-imports@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
checksum: 10c0/cbf5c0946c24ae9f4a21168a4d7b6de6b704ac32e266f58345a65d7d4f8a37e1e47d42788084b834585eb322cf9ae4286ddad2d2cddcf26eafef1dc82dde5a9d
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-module-transforms@npm:7.11.0"
dependencies:
"@babel/helper-module-imports": "npm:^7.10.4"
"@babel/helper-replace-supers": "npm:^7.10.4"
"@babel/helper-simple-access": "npm:^7.10.4"
"@babel/helper-split-export-declaration": "npm:^7.11.0"
"@babel/template": "npm:^7.10.4"
"@babel/types": "npm:^7.11.0"
lodash: "npm:^4.17.19"
checksum: 10c0/0bdfd5a6bcd9550b0979f3c81b6f13e2307d1f583698f0696a96bfa7a164a6b8b4c74b2b1b512d33f4807c82d381dd42f588315bc0798bd68d80d0b090f495f0
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-module-transforms@npm:7.12.1"
dependencies:
"@babel/helper-module-imports": "npm:^7.12.1"
"@babel/helper-replace-supers": "npm:^7.12.1"
"@babel/helper-simple-access": "npm:^7.12.1"
"@babel/helper-split-export-declaration": "npm:^7.11.0"
"@babel/helper-validator-identifier": "npm:^7.10.4"
"@babel/template": "npm:^7.10.4"
"@babel/traverse": "npm:^7.12.1"
"@babel/types": "npm:^7.12.1"
lodash: "npm:^4.17.19"
checksum: 10c0/06db1959a97c6d0de63f0e987b540d3c6a4eb9434b8948e50b426f7e86a1fafa192b46e1ae603f34d60a3a0ba0025c2cb2c555444c4beb0575aa6980ad1577cb
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.15.0":
version: 7.15.0
resolution: "@babel/helper-module-transforms@npm:7.15.0"
dependencies:
"@babel/helper-module-imports": "npm:^7.14.5"
"@babel/helper-replace-supers": "npm:^7.15.0"
"@babel/helper-simple-access": "npm:^7.14.8"
"@babel/helper-split-export-declaration": "npm:^7.14.5"
"@babel/helper-validator-identifier": "npm:^7.14.9"
"@babel/template": "npm:^7.14.5"
"@babel/traverse": "npm:^7.15.0"
"@babel/types": "npm:^7.15.0"
checksum: 10c0/66493d4a98d36aaf48dd374c88e78a1fa3020abd22c645db64d09165e70efb497c4c2776db3fcb8571a7bfa877dd764188d4f2c0d4bed1b5e53f3ab774c60ea5
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-optimise-call-expression@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10c0/c5b78d1801ecc7a03317dd180d1f736f7e872a3d130b3ee8e461cbc981092a365583f976f38d414c73204759738cd6c5f79868e18eaf1fa408c51e1a69e150be
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-optimise-call-expression@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
checksum: 10c0/af93220551824fcc05d3f18dceed10fd454e6bb77197833b195fa9cd7a77109f9dd91e195a021b7a8760aee2f8245f78460f92542ca00e3f8adddd5b627a2658
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.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/helper-plugin-utils@npm:7.10.4"
checksum: 10c0/113d0405281f5490658f7c1c3a81b4a37927375e1ebcccd2fd90be538a102da0c2d6024561aaf26bd1c71ef7688b5a8b96a87d938db8d9774454ab635011fc7f
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-plugin-utils@npm:7.14.5"
checksum: 10c0/de33dc7c7b4b334f87a78c6ad2cbab3e25eaef07edcc7941bc03907eed12833fa222890bb3fe83968b108d90898946756caec42d8a51ac3783c77299736de977
languageName: node
linkType: hard
"@babel/helper-regex@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-regex@npm:7.10.5"
dependencies:
lodash: "npm:^4.17.19"
checksum: 10c0/bb068897376190164fc121de124dc131eca02500dc148d23a0d8b0eb61f95446278aad5b7faed8de5740a552b526597fcf210f6e4bdb544991e6c44337f556ab
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-remap-async-to-generator@npm:7.12.1"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.10.4"
"@babel/helper-wrap-function": "npm:^7.10.4"
"@babel/types": "npm:^7.12.1"
checksum: 10c0/78b86df1c5aa38d54b28c150dbe8ac14005b4b6114492985d9ddcc69a78fce7d4a996e81dffef6856ed43292d5868bea8613667595a94e4096dc5a541bb13010
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-replace-supers@npm:7.10.4"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^7.10.4"
"@babel/helper-optimise-call-expression": "npm:^7.10.4"
"@babel/traverse": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/98d2f4cc9cc3e7f21abfaabc9447f3147a053eb7f394bb3ec5a2537356b4745b38aaccc4c504ee5907197ddfad2e1e23758c5c64f81022d96557f4e399eeb863
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.12.1":
version: 7.12.5
resolution: "@babel/helper-replace-supers@npm:7.12.5"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^7.12.1"
"@babel/helper-optimise-call-expression": "npm:^7.10.4"
"@babel/traverse": "npm:^7.12.5"
"@babel/types": "npm:^7.12.5"
checksum: 10c0/3e8c6fb15a5b9bc227d35f1e72232ed8444624871a9c2c827451d7e86caf0e3dff009b62a849b28b9fb41c64af58897496eaf16ccd97fa4368175491ce2c68b3
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.15.0":
version: 7.15.0
resolution: "@babel/helper-replace-supers@npm:7.15.0"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^7.15.0"
"@babel/helper-optimise-call-expression": "npm:^7.14.5"
"@babel/traverse": "npm:^7.15.0"
"@babel/types": "npm:^7.15.0"
checksum: 10c0/3e2aad2255345a4c8a60974e5f6eb412e4f6ef729e3796554defdce670bdda3b34cf97f312ed4f29a4a519e2255adfd12530fddb33e70d765db889c41c72ddcc
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-simple-access@npm:7.10.4"
dependencies:
"@babel/template": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/f27b09deadef7f2c57765d7e865f36b74f255f3ef3d5396e8229496aebe18a97bbfcbafb7617c301b91b365c51f3454e96ed8965138aa2ad45652740b031af4a
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-simple-access@npm:7.12.1"
dependencies:
"@babel/types": "npm:^7.12.1"
checksum: 10c0/fcf9e5c31c48dd5cf95e0107e961bd32e06d3e1429e5fd78fb2c217427fd90f92ae9def4ed123b2b15b089ac63ec01b38f82fcbe994bc633f8dfb54310e09e80
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.14.8":
version: 7.14.8
resolution: "@babel/helper-simple-access@npm:7.14.8"
dependencies:
"@babel/types": "npm:^7.14.8"
checksum: 10c0/7dcb1ac2fc67d21364bba8f974d8b4bf91589051ad5f7e864db80abb09a1ecdee59e62dabdadb2b84730cad58e694084665bd84d78bb6929be237b017a772ba5
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.12.1"
dependencies:
"@babel/types": "npm:^7.12.1"
checksum: 10c0/ce2f7aa07f625d985e7f9783d552826d1645f7a29e57452691512feae7948f9f1c0ec7657c584a30b63f894cdb290e182b7596b0b77f332878ba0715adb3bb86
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.10.4, @babel/helper-split-export-declaration@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-split-export-declaration@npm:7.11.0"
dependencies:
"@babel/types": "npm:^7.11.0"
checksum: 10c0/a17a2612f879348318b0e33196d3f9b790acae2b651f4623ba11bc927807b5ebbb672e036ed685d1bb8eb42ba3222cf459bb04e084629df7e7a731bf3a6190fc
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-split-export-declaration@npm:7.14.5"
dependencies:
"@babel/types": "npm:^7.14.5"
checksum: 10c0/e58baf2a3a7999c741174f787ae4675baedeac6cc6c761240f0684b0efd9734474c17bbb884ac95bceebd4a1062ec6a3ae21e092d9a1c300d460548f8ba5684e
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.23.4":
version: 7.23.4
resolution: "@babel/helper-string-parser@npm:7.23.4"
checksum: 10c0/f348d5637ad70b6b54b026d6544bd9040f78d24e7ec245a0fc42293968181f6ae9879c22d89744730d246ce8ec53588f716f102addd4df8bbc79b73ea10004ac
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-validator-identifier@npm:7.10.4"
checksum: 10c0/a381f72f2f714c3c4b5f51f2c406ffcb9a976bb71109d49ceb664e9e60d020fc076cefce883a45cd3c4a36a50e5a80ee3a85d183ce90220309062916adf6aed0
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.14.5, @babel/helper-validator-identifier@npm:^7.14.9":
version: 7.14.9
resolution: "@babel/helper-validator-identifier@npm:7.14.9"
checksum: 10c0/bedd645277d08780797b7a190d945e2f5641de7b764040fec79b1d0ba5d8398e5ab747c2218314632a56f992012ad4a0de55eb6de788fa14a8e16eff7ea31319
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.20":
version: 7.22.20
resolution: "@babel/helper-validator-identifier@npm:7.22.20"
checksum: 10c0/dcad63db345fb110e032de46c3688384b0008a42a4845180ce7cd62b1a9c0507a1bed727c4d1060ed1a03ae57b4d918570259f81724aaac1a5b776056f37504e
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-validator-option@npm:7.12.1"
checksum: 10c0/b1fc0d263624bffc7107ac49967ddfdffa4c8c855de0924de3d554456e88c3892f2b0ed9c53689e89ae680123b02ff1f4004d14f5c5ab9f224406200e6b69a19
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: 10c0/9cb2d6c72e73459abfccc7ed42bb1055ce4ca4aba9754edbad694f7f47d0dee940382f51b5f19bb16f1d69b6c32fc734bea9a5654a8f98da09d6be9641b02029
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.10.4":
version: 7.12.3
resolution: "@babel/helper-wrap-function@npm:7.12.3"
dependencies:
"@babel/helper-function-name": "npm:^7.10.4"
"@babel/template": "npm:^7.10.4"
"@babel/traverse": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/d6b60f73a471de6700ae053e8d233b5964a579ed314f3b6026a650caf74d1e810b7f08d5837eac8acf14e5444bbf3d8c414f5f2baf9ca3a2cb731b645791b62d
languageName: node
linkType: hard
"@babel/helpers@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helpers@npm:7.10.4"
dependencies:
"@babel/template": "npm:^7.10.4"
"@babel/traverse": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/feed4d9db488a10486939ec4afb48aca21be6a45c7cdf753bbb293505e3fe22f780ec04e859a062f5d63d83192dd43627b8bbdb5d64f01251ffa749fff72dfe9
languageName: node
linkType: hard
"@babel/helpers@npm:^7.12.1":
version: 7.12.5
resolution: "@babel/helpers@npm:7.12.5"
dependencies:
"@babel/template": "npm:^7.10.4"
"@babel/traverse": "npm:^7.12.5"
"@babel/types": "npm:^7.12.5"
checksum: 10c0/09fd366472cedd16fe539618a18f22b2434fdd3dcf706a932373796ae2a329e33648e5e8d07892384c424a84ab1fa2a62bf379912f42d7ce237609028a2457e8
languageName: node
linkType: hard
"@babel/helpers@npm:^7.14.8":
version: 7.15.3
resolution: "@babel/helpers@npm:7.15.3"
dependencies:
"@babel/template": "npm:^7.14.5"
"@babel/traverse": "npm:^7.15.0"
"@babel/types": "npm:^7.15.0"
checksum: 10c0/3872c7e957544836115d2865b01e5f3b76a1a3fe63168cc1bdb1b256f9efe19c0578877df2fdfa2d6489252b893f17cb8a52fa23362854422bdde304852d628b
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/highlight@npm:7.10.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.10.4"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10c0/1922bb5bd977b9e9958c8b54e13c01673c932de0d1ccffd9e3b77d4d6db5dfc667d05fddc1575e7fc06e69e224765b292595072dd9ae90b16c3b49b5c1e584b5
languageName: node
linkType: hard
"@babel/highlight@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/highlight@npm:7.14.5"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.14.5"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10c0/b9d16895e4bf780d69504c7cc8a9871dc668bcd1851c4a7a7f039f34ba5bb1f04efc4ad6b79112496c7896d541a4d38efa02e7d8be8fb0a1f352097cff8ba79d
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.10.4, @babel/parser@npm:^7.11.5, @babel/parser@npm:^7.7.0":
version: 7.11.5
resolution: "@babel/parser@npm:7.11.5"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/34063f237594d0d83284915366bc4413b9ab9e0af2693383a2b9a17e05948713528450f0b3ed8c7d4354da50f021aa5889d9ea48b38945f63cf22528c4cb439c
languageName: node
linkType: hard
"@babel/parser@npm:^7.12.3, @babel/parser@npm:^7.12.5":
version: 7.12.5
resolution: "@babel/parser@npm:7.12.5"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/bf060d2623c0c963bbdbce97f40a23c6bd72d0516e088277febeaa40939747024432db20b6ac745e1e8c666d3223fac65f94380862848f550251eea15077c9c4
languageName: node
linkType: hard
"@babel/parser@npm:^7.14.5, @babel/parser@npm:^7.15.0, @babel/parser@npm:^7.7.2":
version: 7.15.3
resolution: "@babel/parser@npm:7.15.3"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/a867b43101347ce7040b9ee270bca3b3886a538b9ce6cac5f3cabe8021ff153a3cab744bcf105101564c0614acb5d8c42a4e7bf0cc9f92799bf9a322e68c9932
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-remap-async-to-generator": "npm:^7.12.1"
"@babel/plugin-syntax-async-generators": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/e2712a75e1b65500e208fe60a50a27d2d83aff4dc1d1c19bec484de8ddaeba5b4cb1731899560c67e04a8d7455d59effad113176de450e691f316604b40b40ff
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-class-properties@npm:7.12.1"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.12.1"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/42396a94ebffe254c4a6d1edc82894fd7cb45c48b690af7270ccc736d4a7d9c60c7ed44ec9c860a0c168ad2393579875c068d2ad5ef7b24ab250da782112a4cf
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-dynamic-import": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/cac6514399618ee55a810d6d47d82ec8be8702b9975e78e0309151d7b1def055e1efefa67a876d9f03c06c30ff0e43dc842a5e303fcfc5d610d52312ab67e3a1
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/3d1030ae007185ad0ce475e6725f62db9339addaf32f00a392a3627601b08f5ce07b4cd988921813bc588bd866db7219056d6a349aa43b0d42c8d5e508600c22
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-json-strings@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-json-strings": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/b031df011f03d2b62068a3acff2346bf2c23fc1c466d142438795254f612326656b4dbcdd1d613363f62ceb85293bafabfcb1e1219a1587d7b277a701cf0e956
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/3b9c2021b115d92f99d546cbd610b9c256a41c33acf2b7eb90ee4270658f2036f0d66d350855bcbb4f9759d2616bb3fec3f1df8d734318c12d4d55c7433534e5
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/1afc25f290d1913a02e9fdccbcdbf3b513c1761de04527e759698f837d89181d2e7f0a337e8d18417e4594b5d61a0dcfaa961d2ec282544308ffc47b6c1eccde
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.12.1":
version: 7.12.5
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.12.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-numeric-separator": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/544e919a898eaedbbfaad47cad37f24b97bed2d6714b8a64fe30fd5b6c086d64c17de2a6df82c21f1b77e8c8af716921351bb5360d163522c7291c3fd5f686d3
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-object-rest-spread": "npm:^7.8.0"
"@babel/plugin-transform-parameters": "npm:^7.12.1"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/f773d59ead8b056b646d585e95d610cca2f0aeaa2eeaad74b3eb9e25821b06f27e361dd0aac9a088a10c22fee1ead8863f82a2be073e28eb04ca9a330a00941e
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/a2fe726fcf2aafc876a18066288e8f97c9bc1f1195cf2a653067c4e66e4b376f46a692f2e5e30e43ceea3b5a7c820cf0bcf6dac6bfdf6229805bb25bbaa7f969
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.12.1"
"@babel/plugin-syntax-optional-chaining": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/fccd1f7c1b8aada3e815890999131140409bc8d49862f2a4325ede1f8f196b41c377b04502b232a9327df3e7c42649b63c53877e81c038bdfca175bfae6c3e06
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-private-methods@npm:7.12.1"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.12.1"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/620b7aca2f32ec3fe8696504f049834455696ab212fac0a63e13a230c4525b9f9ee2ce4bc99b82a225cbc889a7458bcba77ce686ca5854c3c33d812ba79cf204
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.12.1, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.12.1
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.12.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.12.1"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/9e7d93689e74938f332b6da70a71391e501a0feff2a78a39a47662b1e0e1f4166b69c2a352aaa827a6121a3eb4249e8b50ee15aeeb138964f35117a1949ba9fe
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.0, @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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/da1587f0fa3294909e67595fac3f7b258413bb7731889875c93fcde8b9d91a371eb2694e3a853acbdfa8c381e92f016559f80caf29d3dc43a488c33d3ca26e9c
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-class-properties@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/89974723a09f24026285c8d99a06add43767448ce853b5cd1414cebbc9556102152febec1f84d74f0e8432c92b083f47cc7d037c8774073c46b421f97ebeecbd
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:^7.8.0, @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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/9c50927bf71adf63f60c75370e2335879402648f468d0172bc912e303c6a3876927d8eb35807331b57f415392732ed05ab9b42c68ac30a936813ab549e0246c5
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": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/5100d658ba563829700cd8d001ddc09f4c0187b1a13de300d729c5b3e87503f75a6d6c99c1794182f7f1a9f546ee009df4f15a0ce36376e206ed0012fa7cdc24
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/0b08b5e4c3128523d8e346f8cfc86824f0da2697b1be12d71af50a31aff7a56ceb873ed28779121051475010c28d6146a6bfea8518b150b71eeb4e46190172ee
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.0, @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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/e98f31b2ec406c57757d115aac81d0336e8434101c224edd9a5c93cefa53faf63eacc69f3138960c8b25401315af03df37f68d316c151c4b933136716ed6906e
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/2594cfbe29411ad5bc2ad4058de7b2f6a8c5b86eda525a993959438615479e59c012c14aec979e538d60a584a1a799b60d1b8942c3b18468cb9d99b8fd34cd0b
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.0, @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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/2024fbb1162899094cfc81152449b12bd0cc7053c6d4bda8ac2852545c87d0a851b1b72ed9560673cbf3ef6248257262c3c04aabf73117215c1b9cc7dd2542ce
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/c55a82b3113480942c6aa2fcbe976ff9caa74b7b1109ff4369641dfbc88d1da348aceb3c31b6ed311c84d1e7c479440b961906c735d0ab494f688bf2fd5b9bb9
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.0, @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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/ee1eab52ea6437e3101a0a7018b0da698545230015fc8ab129d292980ec6dff94d265e9e90070e8ae5fed42f08f1622c14c94552c77bcac784b37f503a82ff26
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.0, @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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/27e2493ab67a8ea6d693af1287f7e9acec206d1213ff107a928e85e173741e1d594196f99fec50e9dde404b09164f39dec5864c767212154ffe1caa6af0bc5af
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.0, @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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/46edddf2faa6ebf94147b8e8540dfc60a5ab718e2de4d01b2c0bdf250a4d642c2bd47cbcbb739febcb2bf75514dbcefad3c52208787994b8d0f8822490f55e81
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.12.1, @babel/plugin-syntax-top-level-await@npm:^7.8.3":