forked from Podcastindex-org/web-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
22559 lines (20357 loc) · 770 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.5.5":
version: 7.5.5
resolution: "@babel/code-frame@npm:7.5.5"
dependencies:
"@babel/highlight": ^7.0.0
checksum: b4cb24f103ac96451c02efad3c9118533ff4c4e105f2153870d715af0715633ac6c269d7b9473b0c491fc2a7ef02efd6a0817a173896aef6d7279b61139dec22
languageName: node
linkType: hard
"@babel/code-frame@npm:7.8.3":
version: 7.8.3
resolution: "@babel/code-frame@npm:7.8.3"
dependencies:
"@babel/highlight": ^7.8.3
checksum: 5f3172b0c8d5db625fb88c9f6ab909cb164645152176dfa14c927c19c0774c41fa9ba494cb19cb5d152a414bd6732c41eae708f9f635e02a4ed0889ac239fe4c
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.5.5, @babel/code-frame@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
dependencies:
"@babel/highlight": ^7.10.4
checksum: feb4543c8a509fe30f0f6e8d7aa84f82b41148b963b826cd330e34986f649a85cb63b2f13dd4effdf434ac555d16f14940b8ea5f4433297c2f5ff85486ded019
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.12.1, @babel/compat-data@npm:^7.9.0":
version: 7.12.1
resolution: "@babel/compat-data@npm:7.12.1"
checksum: b29ecfe76662bfeb184773f40cb67491ee1367db834bca88923d4dba306854b1881fc2245fedd730961e3e8f27ccdfc8c1ed3ea08648738bde1d0a6e9e6940c9
languageName: node
linkType: hard
"@babel/core@npm:7.11.6":
version: 7.11.6
resolution: "@babel/core@npm:7.11.6"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.11.6
"@babel/helper-module-transforms": ^7.11.0
"@babel/helpers": ^7.10.4
"@babel/parser": ^7.11.5
"@babel/template": ^7.10.4
"@babel/traverse": ^7.11.5
"@babel/types": ^7.11.5
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.19
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: c046e956f96189dd9c808e6df93ec47923f193aa114788ad218a4905f58a32573519505af7b009efbb84646a569081874b34b04bf50a517fa2ed3203f8f032a6
languageName: node
linkType: hard
"@babel/core@npm:7.6.0":
version: 7.6.0
resolution: "@babel/core@npm:7.6.0"
dependencies:
"@babel/code-frame": ^7.5.5
"@babel/generator": ^7.6.0
"@babel/helpers": ^7.6.0
"@babel/parser": ^7.6.0
"@babel/template": ^7.6.0
"@babel/traverse": ^7.6.0
"@babel/types": ^7.6.0
convert-source-map: ^1.1.0
debug: ^4.1.0
json5: ^2.1.0
lodash: ^4.17.13
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: fb073000c2000c2775be89a237a2bf3caa9178d1e4451b215404cec3fd884e774636c3e166ca9d3e9229b432949667d22b0ba97793337863e0c7922062deb4c7
languageName: node
linkType: hard
"@babel/core@npm:7.9.0":
version: 7.9.0
resolution: "@babel/core@npm:7.9.0"
dependencies:
"@babel/code-frame": ^7.8.3
"@babel/generator": ^7.9.0
"@babel/helper-module-transforms": ^7.9.0
"@babel/helpers": ^7.9.0
"@babel/parser": ^7.9.0
"@babel/template": ^7.8.6
"@babel/traverse": ^7.9.0
"@babel/types": ^7.9.0
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.13
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: 0886b35c9cda80628bc61e47172c79d51ab1d1e693f95c037df371bf0a84ca5cd72c0183fb3d01f47c59395d7805d2e79d46660488d73b9966db5fb726ad561c
languageName: node
linkType: hard
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.11.6, @babel/core@npm:^7.4.5, @babel/core@npm:^7.7.5, @babel/core@npm:^7.9.0":
version: 7.12.3
resolution: "@babel/core@npm:7.12.3"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.12.1
"@babel/helper-module-transforms": ^7.12.1
"@babel/helpers": ^7.12.1
"@babel/parser": ^7.12.3
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.19
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: 29ee14dd7ae66c1af84d1b2864e1e9e1bec23b89f41e414917b10151ae1fcb6d3b6a8a25d028a7e22dba3bb7b69eb1f7f0d844797341357e36fa71ff967fb4a5
languageName: node
linkType: hard
"@babel/generator@npm:^7.11.6, @babel/generator@npm:^7.12.1, @babel/generator@npm:^7.4.0, @babel/generator@npm:^7.6.0, @babel/generator@npm:^7.9.0, @babel/generator@npm:^7.9.6":
version: 7.12.1
resolution: "@babel/generator@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: d035adf7d5ca0939b805d5e7f510cc363635ae0b71292c8c363d7060cecc119d736c66b15a323dcab71e9162dab50dd4dd8c3db20f3e27fb861125d31e794bb3
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": ^7.10.4
checksum: a0b82b2ed731adc173db5dcc53731b7ab6de4cbe1a66908badcf492889fc1e86c17e1d482aabc6b5dde0453caf8024329485d3e2ba3e81056951720862ab8bbf
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": ^7.10.4
"@babel/types": ^7.10.4
checksum: 2f3256e6a87a890e1e84ab7d22734179450f0578f2a9621250329d34601cbf3b4f7ee7e53e088f68dd4522ce6d55d70f14bd469b81b4d6b3afaa0cd578402bcb
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx-experimental@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-builder-react-jsx-experimental@npm:7.12.1"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-module-imports": ^7.12.1
"@babel/types": ^7.12.1
checksum: b1e28cd5c2f4d1ca9eda9d0492b116df5439606bbd4c114b7bdcb30c4b94f49adc508fc5743d92adbdbe1b2c09cdda6e374bf813376cbd997f0ecfc0befa8924
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-builder-react-jsx@npm:7.10.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/types": ^7.10.4
checksum: 32907788def4b3e50a23d1527777365529a721750a7dfdef7494a4abbe6f77e30b5939891d28860e83bb1fc7faca6ba68229b3cff8832c2720fca9e8e9390e66
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.12.1, @babel/helper-compilation-targets@npm:^7.8.7":
version: 7.12.1
resolution: "@babel/helper-compilation-targets@npm:7.12.1"
dependencies:
"@babel/compat-data": ^7.12.1
"@babel/helper-validator-option": ^7.12.1
browserslist: ^4.12.0
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 723def1698c19f16991eda0e7dd2730787360b1f1fc7f5265fd727d53b8d7de4200ed3a756e38f6269270b467670dfef1819c68086a5f5797e87785336ca35e9
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.12.1, @babel/helper-create-class-features-plugin@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/helper-create-class-features-plugin@npm:7.12.1"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/helper-member-expression-to-functions": ^7.12.1
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/helper-replace-supers": ^7.12.1
"@babel/helper-split-export-declaration": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0
checksum: db5b5cec711b9361e0a52528db15506c24a87b158a2b2300023e9e508d3c24413f218fea2f413c8e406ef4a89629d1bbc9999f048c74af94f45ae8b7a74c35f0
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": ^7.10.4
"@babel/helper-regex": ^7.10.4
regexpu-core: ^4.7.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: 5eb508dff03f319a8b88b37cf1995746d5a6c2ce3c5b9d4d5b3ca7c565cb971e84d909f519a44fb82a10224056bde815824679afd383d60e83505938d7c7b421
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": ^7.10.4
"@babel/types": ^7.10.5
lodash: ^4.17.19
checksum: 4b257fac6f92cfa051a4a8d646116d19da963161b4e8e00f4f9f125b4b1e13d0e0cc7bbbc540fcc76c9012833d1eb782377018eb7c42d50ea98ee2e99fc49bc9
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": ^7.12.1
checksum: 55ee3c9720b57fb8b53d41e39aaab6e96dfcb5a2bd0cbdc774bc2225050df9a29f7ce6de49c36a1483eba9a778d094765242e5ecb4683e3e5c6f5f6b3cdcb9ab
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": ^7.10.4
"@babel/template": ^7.10.4
"@babel/types": ^7.10.4
checksum: eb9226d1c768b974f30a20fafd809353a2dbc359f66d6d27e4dd917fb471df9a9c2b771e0f1a838b21aa195b3cbba8a472d95327b80b3bd0e12edf407a3c0d53
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": ^7.10.4
checksum: 798e2eb6cd5d2ff91a6cc3904ad626fca366fb33e631cb214477f100207ef26acdf78280a31f8adf59a988f020221165834902d5e201a8b5bbefab361d502daf
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": ^7.10.4
checksum: efb6adceec6fa202f911e9f3efe849ebc6dcbba89b110f957bfe0ca93e29e5593490ce34b9e67f170deb3532564947a5350d2fdb8f1f95407dcf7c9af5b8a855
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": ^7.12.1
checksum: 692aaab58089378edf0ba5c06be0cb094f735f7c676e6f6a4bdeafbc85719d60ac61a3ff787cd578dedb6cd8ae6ac5ac7e4ed62bc06f5d0333fc4129b9ab37a1
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.12.1, @babel/helper-module-imports@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/helper-module-imports@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: 23ae1672da54d4643cd32328e218cfaf3777c155014cebbb6487949b1a0548f05b2a6e5febd127f82ccd9d11a1abbe0812e4b34642ab4f4ab8f0d0832ea02b0a
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.11.0, @babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.9.0":
version: 7.12.1
resolution: "@babel/helper-module-transforms@npm:7.12.1"
dependencies:
"@babel/helper-module-imports": ^7.12.1
"@babel/helper-replace-supers": ^7.12.1
"@babel/helper-simple-access": ^7.12.1
"@babel/helper-split-export-declaration": ^7.11.0
"@babel/helper-validator-identifier": ^7.10.4
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
lodash: ^4.17.19
checksum: 44715a43f8a3cc9927b50f04361626f12f3e7097474d6445cc29be0782d20af58c20b49036c109d3915734ce2257f7d6c9002c265fbe18ad8b924947667460a3
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": ^7.10.4
checksum: 358b904a5067c19d3d09e8e9a8ba1bdfb8dad71bb6fa3777d64f04e78d8425bad0b8ea7969bbcdf14bad0a7815d3575fc3323a085cbea6c36c47063e3aee4b00
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:7.10.4, @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: 639ed8fc462b97a83226cee6bb081b1d77e7f73e8b033d2592ed107ee41d96601e321e5ea53a33e47469c7f1146b250a3dcda5ab873c7de162ab62120c341a41
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: ^4.17.19
checksum: 920a424cae7c1bb5c0c30675d564b025ca249a40d850565c3372d00c9ca1d68b806824465e154e8d555afc0f5a9ab50267806745fd4ef20b671ebabe5ee2579e
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": ^7.10.4
"@babel/helper-wrap-function": ^7.10.4
"@babel/types": ^7.12.1
checksum: bdc8abb569f2cbdf25824e96c46ac15562ef9ea5f008d6bd402c6a194ac701a774ba2255be942debe58b45582404e18ecd8399dd4bb6f31cd43e1210c5d9ee13
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-replace-supers@npm:7.12.1"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.12.1
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
checksum: b0b89196c7fd0954815306973f81786c38792c410358abfa2652c5dee69c3eb4a63404cfc9b880d276365b792ac5395c011a1d1d3917ced8b1b3dc86129ce176
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": ^7.12.1
checksum: 2c387b57d9f270c947273e6dde4885971449c78436edd511c8d42cb43c5c4265ef2ebb222f46d9653b1d1254424aef1054876d033962db428662d8fe5e859a0c
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": ^7.12.1
checksum: 9be6093eabc83b43b9af4c736c69d3c5da4497456575654741308f6f6886d8ebd17eacdddf32f1eb0ecc81f66a5562fb7f3b734c5340418da4e8138a958dafc0
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": ^7.11.0
checksum: eb03088c44e70ba3039b4608b0d108dcb1659f951b976044a487961c725b7c18e3d14b30f78180b8375c4bdbd0410494de56f716d30bc9ae6493e53c17047ec1
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.10.4":
version: 7.10.4
resolution: "@babel/helper-validator-identifier@npm:7.10.4"
checksum: 3cbfdff0efea8f3bca050cfe408a156604293d3313c7279c8c02d916a0b3ef82617f28f7729877a94c0e8e922d4b7623c4f0a108ae2853bf762d933e101a5f8c
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.12.1":
version: 7.12.1
resolution: "@babel/helper-validator-option@npm:7.12.1"
checksum: 2187e993ff5d23332f351677ca0a2c3bc5852af0bbb6a1bd5e29638c58e1b675b06e801290d52eeea83b106bb98a330338bd55556bd4e7f9d3085220520a7506
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": ^7.10.4
"@babel/template": ^7.10.4
"@babel/traverse": ^7.10.4
"@babel/types": ^7.10.4
checksum: 49c3796d7adabccf9b1bc6f3d9f98cc2e6d490e60a441b540f8f0620e955d866e8dafd9fce451d16702f5d68170e4f4dec8d7c9e8f55d3bda1bdc6fabdccf721
languageName: node
linkType: hard
"@babel/helpers@npm:^7.10.4, @babel/helpers@npm:^7.12.1, @babel/helpers@npm:^7.6.0, @babel/helpers@npm:^7.9.0":
version: 7.12.1
resolution: "@babel/helpers@npm:7.12.1"
dependencies:
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
checksum: ca65f740a1c8e9a6438bc7e4bc22183f942dc90612121684ee9dd3ce7fc293f768f0ecee87b5d48c32e3750e5672ea2c05e1ca1168857ed8239f276337ae6696
languageName: node
linkType: hard
"@babel/highlight@npm:^7.0.0, @babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/highlight@npm:7.10.4"
dependencies:
"@babel/helper-validator-identifier": ^7.10.4
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 6fab4679162562907942acc3647bc8c405b955f3bef7c654ef160491d0801ebdc12651c2051144dc0e22b69044fe3059d630151d5d7fb84b10ed4093da707707
languageName: node
linkType: hard
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.10.4, @babel/parser@npm:^7.11.5, @babel/parser@npm:^7.12.1, @babel/parser@npm:^7.12.3, @babel/parser@npm:^7.4.3, @babel/parser@npm:^7.6.0, @babel/parser@npm:^7.9.0, @babel/parser@npm:^7.9.6":
version: 7.12.3
resolution: "@babel/parser@npm:7.12.3"
bin:
parser: ./bin/babel-parser.js
checksum: 3475292cd63dd98d3e35c007b6e67b0502f1c2e06a26fe5821f2da634a66de498a9933e76c83b991bc20e0c90c18c5a1cab323151e95c894124b17604eb58c2c
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.12.1, @babel/plugin-proposal-async-generator-functions@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-remap-async-to-generator": ^7.12.1
"@babel/plugin-syntax-async-generators": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f9c96645c258820114bbc65c0e28de5f2e83e37d2cd1322c23851a927e22db9a1436557d8227c396e904a1c7e42945b8172277e80f96456cddcb1fdf796b4e26
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-class-properties@npm:7.8.3"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5ac3435b0393b09162234f8e4c56c6321f038d205af447563f8389e7ed447904c4cdedf958e6a5ed092692fcc2eff980913efff19589c0969dd9846be4710867
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.12.1, @babel/plugin-proposal-class-properties@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-proposal-class-properties@npm:7.12.1"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 55b5e6cd83d2c710c10edee514de5552464d720fd07c961be99820c7036db0c493745806d10ab037f9e06cd4fa1fe6a68640bc8fb846a1fd5318ea97870bb10a
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-decorators@npm:7.8.3"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-decorators": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f9aa852dd77657d29c19b16bc3a7d8c30e5964a9aa8eb541bf440f34659693631793d4c798c92e344e767c9ccc43baae9e595d86e589bfa4bb157fc07a5e0c05
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-proposal-decorators@npm:7.12.1"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-decorators": ^7.12.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8ff81b841a592a6790fc35a5d7a5f48ec975feb672000e7905ef016a7c87ede1fb3d7380f6562582f51b1227bbd3a07f5ad3a7ae3f3ad83bb243c3086f7a28f9
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.12.1, @babel/plugin-proposal-dynamic-import@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-dynamic-import": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 838a4c34ea4101528504e558acb82d33e37904214948e2cb91c7b697a4af98226607854ea37df74748f8a190ee4ad2a6463a5b06fe53e8d73a55feb6c1163691
languageName: node
linkType: hard
"@babel/plugin-proposal-export-default-from@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-proposal-export-default-from@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-export-default-from": ^7.12.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 836d0ea011125a7f7d673343722bbffdac92c65efb6bfc295d01167554741ddbc52268e9bf0a19839382562028b46ff096e0069faef60ac0de82da10d975b027
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": ^7.10.4
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d96c97420518975118b9a753736fa424f34db20d281446e0308f0d9b722183b0babe4f518de039d6192449e128207842374ba3c8315294cfd1f3ca6e91fd1ba9
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.12.1, @babel/plugin-proposal-json-strings@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-proposal-json-strings@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-json-strings": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b45b81b91eed02cb09e921a5c3951ce850266febebeec896cd1b70a4707086b57eeee252cdfb3381ac3812140712e9fd0833d916bbc3c031f57527f804bd2a7c
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": ^7.10.4
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a25b30ab660b07e80accf2b59512ba7d55c4b8dd29aa866e676d9f04362669d42b52b248b9d373196ca34c90e2bfa4f41433a72e217dab5fbfe5fb9462881bf4
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 36a87fa8f0ca709f66671ebd1af3f865fd1798e59cbf57f8db71cf69ef15ee8cf21ec54833b34c5e77b8a5a60d5b4e9ae949c00fec8eb320d5bc299bfcc3eae1
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.10.1, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.12.1, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 88da9cea3e3e83bd87047e13f0b6a51139d559cf59d178d496c52586d34631078f822e7d6dbcebf67ac0016d875fe58b1d0cfe19bd24b156065e48f84e7a2731
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-numeric-separator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fd2d926e5bba27180e79c7511cb62d423a74690419f97ae1804b4a36632017ab2ef763ce2a84810b7c350a5d3e42a8e263780dadefa4ad6288923a2d13950170
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.12.1, @babel/plugin-proposal-numeric-separator@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-numeric-separator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d5547b815a80e180ed3c10236ebebd86c432eff0827f83decf081c431dbb36e003cabd2d637090448dfbd21439519c9f75bc3f6c66ec5971d0873dfcef6adfa3
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:7.11.0":
version: 7.11.0
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.11.0"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-object-rest-spread": ^7.8.0
"@babel/plugin-transform-parameters": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9449913e8724ef24cefef39886a6a8168015bef336de4c9b167aeeef6ceef03debc615dfbb8f657546bcd2bef611337e0fb4f7f10bce55e78c25010b7acef8e7
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.12.1, @babel/plugin-proposal-object-rest-spread@npm:^7.9.0, @babel/plugin-proposal-object-rest-spread@npm:^7.9.6":
version: 7.12.1
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-object-rest-spread": ^7.8.0
"@babel/plugin-transform-parameters": ^7.12.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 221a41630c9a7162bf0416c71695b3f7f38482078a1d0d3af7abdc4f07ea1c9feed890399158d56c1d0278c971fe6f565ce822e9351e4481f7d98e9ff735dced
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.12.1, @babel/plugin-proposal-optional-catch-binding@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-optional-catch-binding": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 964c966b51c068c80b040d4fdff9ee200e6af39629d33b224d0801ddd28684b94911d87713c77f405704282c03ed55ecffc9e65419d1080e22b4782dfc250ee1
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:7.9.0":
version: 7.9.0
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.9.0"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-optional-chaining": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: da2d4cbf6fe1b3579c83b83cd6b7deb1fa4f907b53eceed8906cf60b0ed02f3dde01bb891040dea67e316865bb8c890ca3272a422d359d2d0a7826c7250572d3
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.10.1, @babel/plugin-proposal-optional-chaining@npm:^7.12.1, @babel/plugin-proposal-optional-chaining@npm:^7.9.0":
version: 7.12.1
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-skip-transparent-expression-wrappers": ^7.12.1
"@babel/plugin-syntax-optional-chaining": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2e66cdffd0acf1427b3239c6584258fd83ca9c57ca63bedefad902240600f0f9b470ced85b6cb6cb12971039882c96ff3d2b66617b8078969f5146b59f9e585e
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.12.1, @babel/plugin-proposal-private-methods@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-proposal-private-methods@npm:7.12.1"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c33a9a44e514ef98a3f90ccf3ffcd7fa634e43e1b0daa44a72cd1e924c13b614a8397220ac3d86a309e6bc2acb096fb9e557cac7a33560c5c054b4e584144178
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.12.1, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4, @babel/plugin-proposal-unicode-property-regex@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.12.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ac8314da3d4d925f9b542210a5ee6a5134a08b8aaa54047578937786efefe8e31942e99849533404e0d339163fc876f71b9c5456ed05671c4c176a0f81fbac9e
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.0":
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.1":
version: 7.12.1
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f9e60dd70bbf1e110fb4fd57356ff006e07a0218aa7b339eb20b889d097520b1a408127dfdfb73e665515674691e5b2838378e2b9b747bc90b044d31de33b6ae
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.12.1, @babel/plugin-syntax-decorators@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-syntax-decorators@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0eb6c84fe954c941e08f95715872a4a01da914fad5628815497cb3cb498c2c6d7b6e87f314bcbafefe6bd86d99581c43ee0613645591623a883f098a708b6d1c
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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ce307af83cf433d4ec42932329fad25fa73138ab39c7436882ea28742e1c0066626d224e0ad2988724c82644e41601cef607b36194f695cb78a1fcdc959637bd
languageName: node
linkType: hard
"@babel/plugin-syntax-export-default-from@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-syntax-export-default-from@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3ac366222c07bc4df693ddcbbe671dde8db1e6ccb4b2f48337d76b3c50fdef899891ad2bf698979211feb2ea8b2de0d97be56a283ffa51f39e54b8bdac2df0cb
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-flow@npm:^7.12.1, @babel/plugin-syntax-flow@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-syntax-flow@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9c57968346838966ac7ba15bb282ba62e8d81a5e065d2b627ab4069e47205435cf33e54e241317986621128954d0fbe32f19f605e66d89630f29b615c7af951e
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.0":
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.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-jsx@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 89dca777c5c203342506c27ac0770e0203c7af154800880739d62abb1b1b82de42a7de2eb63ba417f3a922d60a8bcaffc473a9f78ab76b68e9637127eb19afce
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-syntax-jsx@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d4b9b589c484b2e0856799770f060dff34c67b24d7f4526f66309a0e0e9cf388a5c1f2c0da329d1973cc87d1b2cede8f3dc8facfac59e785d6393a003bcdd0f9
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.0":
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, @babel/plugin-syntax-numeric-separator@npm:^7.8.0, @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": ^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, @babel/plugin-syntax-object-rest-spread@npm:^7.0.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.0":
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.0":
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.0":
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-top-level-await@npm:^7.12.1, @babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-syntax-top-level-await@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3723996f26bbb704b7fce0a1452099835e9b997c81048f9b4652e6f30a581c48dbb6d4839218bf82fb2ce94639e6ea3c9a47602af3e4a01020eac2951be14683
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-syntax-typescript@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 297e3f4676242cf8c79b0a937629100eb5b5ef3d55a32c74afdb21e6464b097ec470dcc5202cd9ae355a9920f63f64f15a799f6947442174a3f6b535c8afb5e0
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.12.1, @babel/plugin-transform-arrow-functions@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-transform-arrow-functions@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 62340c8a6c8e0e5a518a8e6c19aee872ecc7053498010579869526e9c7798762eb0d6f9ef65c1726be045212bd8678db9e86c8d704d5ea450c99196b218981b7
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.12.1, @babel/plugin-transform-async-to-generator@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-transform-async-to-generator@npm:7.12.1"
dependencies:
"@babel/helper-module-imports": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-remap-async-to-generator": ^7.12.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 18e426e930db889ef7496ba1120de9b632ad55106786ff417b0f39def97f70bdbf8309525375b1f74f8790e4ef6bf1020db24fbdeef1d6477cc9f5099ebd93ef
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.12.1, @babel/plugin-transform-block-scoped-functions@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ebef3feb875d7d517ecc2af45b6bef4b5fc61173158217038bcf99de8a2e13e6c0b316790b577817088cb45afe6d4e43cce14d74b16138d95a3fa1e7f67c4381
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.12.1, @babel/plugin-transform-block-scoping@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-transform-block-scoping@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e86f32f74d4d7482ce695c7975b2dce37fe3790d6cadf927432cbb20f3efc0a2c9a3d7c27779f24f4f8b6e126c6c5ac6a614762f41f4493bf32396dac03c8e23
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.12.1, @babel/plugin-transform-classes@npm:^7.9.0, @babel/plugin-transform-classes@npm:^7.9.5":
version: 7.12.1
resolution: "@babel/plugin-transform-classes@npm:7.12.1"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-define-map": ^7.10.4
"@babel/helper-function-name": ^7.10.4
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-replace-supers": ^7.12.1
"@babel/helper-split-export-declaration": ^7.10.4
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9c43d6f045892bfbbf505f485f750e7e3d380f9bb02fa1337b255c5402a9ae3b62283eec3a7a53a373f6693d76fae3e465ba09ee940edf825141f049cf4e5981
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.12.1, @babel/plugin-transform-computed-properties@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-transform-computed-properties@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 61a13ef4179fb1ae0fa8802ab35ae2dc8f41f0201ea3e7689ff65c6a1d7c14a9293c77b7817d4c7361b06014ae1483268e5e52fe7dc2a584634afb101330a824
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.12.1, @babel/plugin-transform-destructuring@npm:^7.8.3, @babel/plugin-transform-destructuring@npm:^7.9.5":
version: 7.12.1
resolution: "@babel/plugin-transform-destructuring@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: dea122d6e539214e4b7622aa43e7252b0aa8a6771fe4fbd5f90c9ffbee3591275c149d7e5a24fbcc4e8de3cd6e9f7d29769c3be74c8e786cf3c726d15af20c7d
languageName: node
linkType: hard