This repository has been archived by the owner on Apr 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
15666 lines (14102 loc) · 532 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: 4
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":
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.12.13":
version: 7.12.13
resolution: "@babel/code-frame@npm:7.12.13"
dependencies:
"@babel/highlight": ^7.12.13
checksum: d0491bb59fb8d7a763cb175c5504818cfd3647321d8eedb9173336d5c47dccce248628ee68b3ed3586c5efc753d8d990ceafe956f707dcf92572a1661b92b1ef
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/code-frame@npm:7.14.5"
dependencies:
"@babel/highlight": ^7.14.5
checksum: 0adbe4f8d91586f764f524e57631f582ab988b2ef504391a5d89db29bfaaf7c67c237798ed4a249b6a2d7135852cf94d3d07ce6b9739dd1df1f271d5ed069565
languageName: node
linkType: hard
"@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.13.11, @babel/compat-data@npm:^7.14.0, @babel/compat-data@npm:^7.14.5, @babel/compat-data@npm:^7.14.7":
version: 7.14.7
resolution: "@babel/compat-data@npm:7.14.7"
checksum: dcf7a72cb650206857a98cce1ab0973e67689f19afc3b30cabff6dbddf563f188d54d3b3f92a70c6bc1feb9049d8b2e601540e1d435b6866c77bffad0a441c9f
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.13.8":
version: 7.13.11
resolution: "@babel/compat-data@npm:7.13.11"
checksum: dc5db9b07a1dcd761e7d73e17b8f473640cc3531f36684a5247bd05af8cbef404831e32bfbd11cad0139f9ec9e2d0735d28265d66d40bbdfbc4fce4d8a68cb39
languageName: node
linkType: hard
"@babel/core@npm:7.13.10, @babel/core@npm:^7.12.16":
version: 7.13.10
resolution: "@babel/core@npm:7.13.10"
dependencies:
"@babel/code-frame": ^7.12.13
"@babel/generator": ^7.13.9
"@babel/helper-compilation-targets": ^7.13.10
"@babel/helper-module-transforms": ^7.13.0
"@babel/helpers": ^7.13.10
"@babel/parser": ^7.13.10
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.1.2
lodash: ^4.17.19
semver: ^6.3.0
source-map: ^0.5.0
checksum: 9b3362fd02e6a4f3ad642893312ec3d22713c4eeb2571c994d49c31f38d24893a6a18f4b49abb8d56b510e116278608eaddde2ca72ccb39ab29350efa5af39de
languageName: node
linkType: hard
"@babel/core@npm:7.14.6, @babel/core@npm:^7.14.0":
version: 7.14.6
resolution: "@babel/core@npm:7.14.6"
dependencies:
"@babel/code-frame": ^7.14.5
"@babel/generator": ^7.14.5
"@babel/helper-compilation-targets": ^7.14.5
"@babel/helper-module-transforms": ^7.14.5
"@babel/helpers": ^7.14.6
"@babel/parser": ^7.14.6
"@babel/template": ^7.14.5
"@babel/traverse": ^7.14.5
"@babel/types": ^7.14.5
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: 6ede604d8de7a103c087b96a58548a3d27efb9e53de6ecc84f4b4ca947cd91f02b0289fc04557b04eb6e31243dbeabdcdb8fd520a1780f284333f56eb1b58913
languageName: node
linkType: hard
"@babel/eslint-parser@npm:^7.12.16":
version: 7.13.10
resolution: "@babel/eslint-parser@npm:7.13.10"
dependencies:
eslint-scope: 5.1.0
eslint-visitor-keys: ^1.3.0
semver: ^6.3.0
peerDependencies:
"@babel/core": ">=7.11.0"
eslint: ">=7.5.0"
checksum: 0eeb100f28aa1eaa1c4690c9838e34f61e6e778215457e3f5378584f0b32ae6e798aa694a64060d3be0a53e791ec604ba14c29146670406a96862da51f33eb04
languageName: node
linkType: hard
"@babel/generator@npm:^7.13.0, @babel/generator@npm:^7.13.9":
version: 7.13.9
resolution: "@babel/generator@npm:7.13.9"
dependencies:
"@babel/types": ^7.13.0
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 1b0e9fa1b5ea6656f0abeeedc99ff7bffa455d7bf118f4d17a75d80c439206b4ba3e1071c104b486b7447689512969286cbde505e6169ab38cf437e13ca54225
languageName: node
linkType: hard
"@babel/generator@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/generator@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 7fcfeaf17e8e76ea91c66dc86c776d2112f52ce0315d3f4ca6a74b6eada0be1592d1ea6286d7241d3f634b63717ceef5d180d041a0b3dca9d071ba2e5fa7c77b
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-annotate-as-pure@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: 18cefedda60003c2551dabe0e4ad278ef0507682680892c60e9f7cb75ae1dc9a065cddb3ce9964da76f220bf972af5262619eeac4b84c2b8aba1b031961215cc
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-annotate-as-pure@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: 173e415a7873ac233fc12efd88ba26b087936af37f94e897c1b934e8b645870e65cfb8a602e7d0f78817f2f3bc01e47b9bf388aa34a665841dde9699dec36295
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.14.5"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.14.5
"@babel/types": ^7.14.5
checksum: 0d3571edff0a96d625503a3fd79643f66f8a5204e75c4351276c0d194240e1debe322a70ef9ff47952bd77ac76792f42d732922b00b5bd8b6e2c99909dc4f49b
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.13.10":
version: 7.13.10
resolution: "@babel/helper-compilation-targets@npm:7.13.10"
dependencies:
"@babel/compat-data": ^7.13.8
"@babel/helper-validator-option": ^7.12.17
browserslist: ^4.14.5
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 23fc79c06bd0c975e1d6d2ce2df69137f309540262fc99f8c0169b8dfd513599c6344849cca37a78d77f76ab82a6b7bca0fb4c77bdf0e3e749fe3fab1d7658d4
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.13.16, @babel/helper-compilation-targets@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-compilation-targets@npm:7.14.5"
dependencies:
"@babel/compat-data": ^7.14.5
"@babel/helper-validator-option": ^7.14.5
browserslist: ^4.16.6
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 02df2c6d1bc5f2336f380945aa266a3a65d057c5eff6be667235a8005048b21f69e4aaebc8e43ccfc2fb406688383ae8e572f257413febf244772e5e7af5fd7f
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.13.0":
version: 7.13.11
resolution: "@babel/helper-create-class-features-plugin@npm:7.13.11"
dependencies:
"@babel/helper-function-name": ^7.12.13
"@babel/helper-member-expression-to-functions": ^7.13.0
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/helper-replace-supers": ^7.13.0
"@babel/helper-split-export-declaration": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0
checksum: 98bec2806f9ba562bd223e8e720ae2e8099d774c983e1e85617814922197c55e8f5920b061278d01bb9e386741812a2dd407c0ec07763f4cdef15e0b62c04ecc
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.14.5":
version: 7.14.6
resolution: "@babel/helper-create-class-features-plugin@npm:7.14.6"
dependencies:
"@babel/helper-annotate-as-pure": ^7.14.5
"@babel/helper-function-name": ^7.14.5
"@babel/helper-member-expression-to-functions": ^7.14.5
"@babel/helper-optimise-call-expression": ^7.14.5
"@babel/helper-replace-supers": ^7.14.5
"@babel/helper-split-export-declaration": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0
checksum: 9d9c3c6f469bc5da4e5819979d0f70bf8a824967661743800741b5560cfa3cf811d52ab14dc00dd6e839814f8db39cf3118c08d550c487680969c40c9ccf2e2a
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.14.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.14.5
regexpu-core: ^4.7.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: c2636d0a6ea6d57eb3603ba9b223fd6ec273a3d8171eb8d84a357ff028cd747ab383b1d7cef84a4df5f9aebb321d43599895f562f3c8aa96314d4847aa59710e
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.8.3, @babel/helper-create-regexp-features-plugin@npm:^7.8.8":
version: 7.8.8
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.8.8"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/helper-regex": ^7.8.3
regexpu-core: ^4.7.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 7c722496d476eb43ee48486e979643bbd01dc82916a1cfcd5f8b8f69d4b2b9a65999126c8e7091c399bbe4a2b5d977dfb275f00a5e914185e32104afecdd4e56
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.2.2":
version: 0.2.3
resolution: "@babel/helper-define-polyfill-provider@npm:0.2.3"
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: 797699fe870e45bdbc7c4128963427f7d6240609b700b3f2c0a2f2f187e5f848ba704bcfe58d7d91796cabc5001fae01746b3efda113beb5b5b824927cf59fdb
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-explode-assignable-expression@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: f3b34c54ad26e48e1409f21aaac8ee5b5fa3bd2917ce4df496f57daec12b6132b2d5c2618da807458e97bc2d7894c5bf505cc96789e0c289dcc9948d7844bb03
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-function-name@npm:7.12.13"
dependencies:
"@babel/helper-get-function-arity": ^7.12.13
"@babel/template": ^7.12.13
"@babel/types": ^7.12.13
checksum: d7bf4ad3c6af1e718ef5560d505147d0a96b95824000336fd4de729a110d79426867a3d97c1eea39945f110ca943316791bcdf192b006a9e367b32c126ee8265
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": ^7.14.5
"@babel/template": ^7.14.5
"@babel/types": ^7.14.5
checksum: fd8ffa82f7622b6e9a6294fb3b98b42e743ab2a8e3c329367667a960b5b98b48bc5ebf8be7308981f1985b9f3c69e1a3b4a91c8944ae97c31803240da92fb3c8
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-get-function-arity@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 847ef9f4d4b2dc38574db6b0732c3add1cd65d54bab94c24d319188f2066c9b9ab2b0dda539cae7281d12ec302e3335b11ca3dcfb555566138d213905d00f711
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": ^7.14.5
checksum: a60779918b677a35e177bb4f46babfd54e9790587b6a4f076092a9eff2a940cbeacdeb10c94331b26abfe838769554d72293d16df897246cfccd1444e5e27cb7
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": ^7.14.5
checksum: 35af58eebffca10988de7003e044ce2d27212aea72ac6d2c4604137da7f1e193cc694d8d60805d0d0beaf3d990f6f2dcc2622c52e3d3148e37017a29cacf2e56
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.13.0"
dependencies:
"@babel/types": ^7.13.0
checksum: f64937f6568d2bc79ed65f2890c5761cea675bdb7ae71bec23bf786007b6ac4e74a07775a51c2dc6c60e862228c3b29bd45f7403f64aebe2d4ef6c19cfab42c6
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.14.5":
version: 7.14.7
resolution: "@babel/helper-member-expression-to-functions@npm:7.14.7"
dependencies:
"@babel/types": ^7.14.5
checksum: 1768b849224002d7a8553226ad73e1e957fb6184b68234d5df7a45cf8e4453ed1208967c1cace1a4d973b223ddc881d105e372945ec688f09485dff0e8ed6180
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0":
version: 7.8.3
resolution: "@babel/helper-module-imports@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: 252c039695b512938b91acf7720372e789cded85fae273647994fb7964f9b948ab24fe0d3f807e724110e97f0041e02854590b17304dd7a5c8d667795f45abb9
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-module-imports@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 5ca5eaa2658cc6738ce2810211084ec7cb2a1bbf9090d0ec1e9b9df1fd7786a0c4352f598eaafc682a722e7a0052afa73ee52d311b65544ca0e7f8597ed5242b
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.13.12, @babel/helper-module-imports@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-module-imports@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: b98279908698a50a22634e683924cb25eb93edf1bf28ac65691dfa82d7a1a4dae4e6b12b8ef9f9a50171ca484620bce544f270873c53505d8a45364c5b665c0c
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-module-transforms@npm:7.13.0"
dependencies:
"@babel/helper-module-imports": ^7.12.13
"@babel/helper-replace-supers": ^7.13.0
"@babel/helper-simple-access": ^7.12.13
"@babel/helper-split-export-declaration": ^7.12.13
"@babel/helper-validator-identifier": ^7.12.11
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
lodash: ^4.17.19
checksum: 1877bbf5d397a459f0a20734fa929aa9c3637adc461aaa4843d4b360361fc0b1bae21d514589beaf8f99fff173c7de56006801d1039cee25971ae135d2276fde
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-module-transforms@npm:7.14.5"
dependencies:
"@babel/helper-module-imports": ^7.14.5
"@babel/helper-replace-supers": ^7.14.5
"@babel/helper-simple-access": ^7.14.5
"@babel/helper-split-export-declaration": ^7.14.5
"@babel/helper-validator-identifier": ^7.14.5
"@babel/template": ^7.14.5
"@babel/traverse": ^7.14.5
"@babel/types": ^7.14.5
checksum: f5d64c0242ec8949ee09069a634d28ae750ab22f9533ea90eab9eaf3405032a33b0b329a63fac0a7901482efb8a388a06279f7544225a0bc3c1b92b306ab2b6e
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-optimise-call-expression@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 9925679d67a809c42b990825ee31f5f02787f385e27301da3343487f6a84482c7e2ebdd2b6d1ed066c309218750f2b7f78ab44dbb25ea6152f71d22839962a35
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": ^7.14.5
checksum: c7af558c63eb5449bf2249f1236d892ed54a400cb6c721756cde573b996c12c64dee6b57fa18ad1a0025d152e6f689444f7ea32997a1d56e1af66c3eda18843d
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-plugin-utils@npm:7.8.3"
checksum: c81ed4d3c5670c28921b1598ff97f676d8ee848afb8dc643be095bd1b289e7ee5ea9a3bb15c0dcf6ce9b30a53ef71ec4863a678734be3cfef69fed430516882a
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-plugin-utils@npm:7.10.4"
checksum: 639ed8fc462b97a83226cee6bb081b1d77e7f73e8b033d2592ed107ee41d96601e321e5ea53a33e47469c7f1146b250a3dcda5ab873c7de162ab62120c341a41
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-plugin-utils@npm:7.13.0"
checksum: 24f7a44e94662a5dc8bd98ab12625ccd96b11e789ef3f9efd4f6f0eeaf01a13b051a148e709fb1c4e1cacdb536987ea75f4b78509567a0117246ea917195a86b
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: fe20e90a24d02770a60ebe80ab9f0dfd7258503cea8006c71709ac9af1aa3e47b0de569499673f11ea6c99597f8c0e4880ae1d505986e61101b69716820972fe
languageName: node
linkType: hard
"@babel/helper-regex@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-regex@npm:7.8.3"
dependencies:
lodash: ^4.17.13
checksum: 601260117fa8cd6d75b371a6597534d0a48d97f336853a43f171e64c167247b6a6271e50a7e4ff802a044f83ce3810144c3c8c9eba9b8aedd45a537bbfe3985a
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-remap-async-to-generator@npm:7.14.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.14.5
"@babel/helper-wrap-function": ^7.14.5
"@babel/types": ^7.14.5
checksum: 022594a15caed0d3bbac52e27eef0f20f9dceb85921b682df55f3bb21dee6fea645b03663e84fdfaadc6b88f4b83b012858520813c15e88728bbc5e16bf3fa29
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-replace-supers@npm:7.13.0"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.13.0
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
checksum: 1007f701a1089dccfbdc4026948e12ebf5e8fed2e50514a8a3a8b8f29fd7d428ee3543038f64f19761cbd14bf63e1c78b32f16eee9965877a8e3d81f6ec93357
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-replace-supers@npm:7.14.5"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.14.5
"@babel/helper-optimise-call-expression": ^7.14.5
"@babel/traverse": ^7.14.5
"@babel/types": ^7.14.5
checksum: 35d33cfe473f9fb5cc1110ee259686179ecd07e00e07d9eb03de998e47f49d59fc2e183cf6be0793fd6bec24510b893415e52ace93ae940f94663c4a02c6fbd0
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-simple-access@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 3b08fa513c7c186da8fbcb1cddc646242455d0aedd1f68e651b1590071e49f1019a3a4cad8a4abfbb338ba1dffa6935f702aec760fcb7577a9013b6d79dd8847
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-simple-access@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: cd795416bd10dd2f1bdebb36f1af08bf263024fdbf789cfda5dd1fbf4fea1fd0375e21d0bcb910a7d49b09b7480340797dcdfc888fbc895aeae45c145358ad75
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: d16937eb08d57d2577902fa6d05ac4b1695602babd9dff9890fa8e56b593fdc997ad24de13fdaf15617036bfacf3493ea569898a5ac0538c2a831aa163f18985
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-split-export-declaration@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: adc8954a0b7e44548425f62ce4dc865d3efa288f016852539d3eddaeec13cf4baff3f397b494dc0f609aab51942480891cbe1adc955e05fe048b7f92db2bcf20
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": ^7.14.5
checksum: 93437025a33747bfd37d6d5a9cdac8f4b6b3e5c0c53c0e24c5444575e731ea64fd5471a51a039fd74ff3378f916ea2d69d9f10274d253ed6f832952be2fd65f0
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.12.11":
version: 7.12.11
resolution: "@babel/helper-validator-identifier@npm:7.12.11"
checksum: e604c6bf890704fc46c1ae13bf23afb242b810224ec3403bba67cdbf0d8dabfec4b82123d6dfb18135a0ee3f7f79218583c819363ebb5e04a0a49d8418db7fce
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-validator-identifier@npm:7.14.5"
checksum: 6366bceab4498785defc083a1bd96344f788d90a1aa7a6f18d6813c1d3d134640bfc05690453c0b79bbfc820472cf5b29110dfddaca1f8e2763dfe1bd5df0b88
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.14.9":
version: 7.14.9
resolution: "@babel/helper-validator-identifier@npm:7.14.9"
checksum: 58552531a7674363e74672434c312ddaf1545b8a43308e1a7f38db58bf79c796c095a6dab6a6105eb0d783b97441f6cbb525bb887f29a35f232fcdbd8cb240dc
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.9.0, @babel/helper-validator-identifier@npm:^7.9.5":
version: 7.9.5
resolution: "@babel/helper-validator-identifier@npm:7.9.5"
checksum: 5dd94eaaa7d772f68d8d2b140d64e962c8d30e3d22c57708637b02f73ec12f8bb40acc4dd17dca63d05d9ab88ff0e7028105ccb36b05517da5e36160b736a04a
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.12.17":
version: 7.12.17
resolution: "@babel/helper-validator-option@npm:7.12.17"
checksum: 940e7b78dc05508d726b721e06dfdbfd56fd8a56522ee37e9d6f3ed9bef6df5dba82a1d74434e7670b0e5e5caa699f1454a63254199df3cddc2a0829acf75e36
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.14.5":
version: 7.14.5
resolution: "@babel/helper-wrap-function@npm:7.14.5"
dependencies:
"@babel/helper-function-name": ^7.14.5
"@babel/template": ^7.14.5
"@babel/traverse": ^7.14.5
"@babel/types": ^7.14.5
checksum: d5c4bec02396f00d305ae2b60cfa5f3ec27d196a71b88107745b6be4fe257ebe54deedb6ee3997c8c9a2cc5c2571d567c22e9b866109490a2aa7f79a1a2272e2
languageName: node
linkType: hard
"@babel/helpers@npm:^7.13.10":
version: 7.13.10
resolution: "@babel/helpers@npm:7.13.10"
dependencies:
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
checksum: 3f55d6b7b051d7e172c70576c42be8c1df21e2447455baabc1074967dbc71c6990bcf42a31ebaf4319aae0e2e8259103568616478b3f4b2976162d4286ff7d2b
languageName: node
linkType: hard
"@babel/helpers@npm:^7.14.6":
version: 7.14.6
resolution: "@babel/helpers@npm:7.14.6"
dependencies:
"@babel/template": ^7.14.5
"@babel/traverse": ^7.14.5
"@babel/types": ^7.14.5
checksum: fe4e73975b062a8b8b95f499f4ac1064c9a53d4ee83cc273c2420250f6a46b59f1f5e35050d41ebe04efd7885a28ceea6f4f16d8eb091e24622f2a4a5eb20f23
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": ^7.10.4
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 6fab4679162562907942acc3647bc8c405b955f3bef7c654ef160491d0801ebdc12651c2051144dc0e22b69044fe3059d630151d5d7fb84b10ed4093da707707
languageName: node
linkType: hard
"@babel/highlight@npm:^7.12.13":
version: 7.13.10
resolution: "@babel/highlight@npm:7.13.10"
dependencies:
"@babel/helper-validator-identifier": ^7.12.11
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 2f33624c8e0947101fd72ca8d2af291cd9560bcb3ed63299e5f95a70e64c2a435922d915ede6760f30ff23942589fe42b962b6b8138f868abaa6f7abd4d4f5e9
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": ^7.14.5
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 4e4b22fb886c939551d73307de16232c186fdb4d8ec8f514541b058feaecdba5234788a0740ca5bcd28777f4108596c39ac4b7463684c63b3812f6071e3fb88f
languageName: node
linkType: hard
"@babel/highlight@npm:^7.8.3":
version: 7.9.0
resolution: "@babel/highlight@npm:7.9.0"
dependencies:
"@babel/helper-validator-identifier": ^7.9.0
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 2e7dc27c209a59853b6830be6fab14d0f0bf6f73e4fe34114a874bf75ae24cfee55729fd26f69884959bc855c5c0d514d5deb8192a06a35e08c5a54cc243924c
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0":
version: 7.11.2
resolution: "@babel/parser@npm:7.11.2"
bin:
parser: ./bin/babel-parser.js
checksum: 3fa5ce1d2b118a3837bafee555cf2e1942b7d4150148d79f7585bb794a30860b920f4d47412dbb6655b2bea20a79a845da66ccc08eebf05f43e078627ba7ca88
languageName: node
linkType: hard
"@babel/parser@npm:^7.12.13, @babel/parser@npm:^7.13.0, @babel/parser@npm:^7.13.10":
version: 7.13.11
resolution: "@babel/parser@npm:7.13.11"
bin:
parser: ./bin/babel-parser.js
checksum: d03f4a5ed90397f54c08ee0cd0254d88053be5c4b25e2775d568ca4c65203c97ed1a1a63083fcc41183ddb7b3eeec176486b8a1299276f5d0586c7998f45a75d
languageName: node
linkType: hard
"@babel/parser@npm:^7.14.5, @babel/parser@npm:^7.14.6, @babel/parser@npm:^7.14.7":
version: 7.14.7
resolution: "@babel/parser@npm:7.14.7"
bin:
parser: ./bin/babel-parser.js
checksum: 0d7acc8cf9c19ccd0e80ab0608953f32f4375f3867c080211270e7bb4bb94c551fd1fc3f49b3cc92a4eec356cf507801f5c93c4c72996968bdc4c28815fe0550
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-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-proposal-optional-chaining": ^7.14.5
peerDependencies:
"@babel/core": ^7.13.0
checksum: 17331fd4c1de860ac78aa3195eb5bd058c4eb24a8f2c6e719f079f9c86cbdb53d9a8affc2f9f78b6fc257afef03811922c2d16addad5d5f6224d2820da1c9f45
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.14.7":
version: 7.14.7
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.14.7"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/helper-remap-async-to-generator": ^7.14.5
"@babel/plugin-syntax-async-generators": ^7.8.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 09343a79385615f8d5f95aaef7c44af5e899c82f030f3d73546c2ffffa567c0949f0405052d7e32f643c0eb2a23590a5050f4606855b3506246d3d60e46f32e3
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-proposal-class-properties@npm:7.13.0"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.13.0
"@babel/helper-plugin-utils": ^7.13.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e3cdfacb2d36c66204e3bf99b85feb521daed6e2c3d424f10eb3f722fe20ca0a2560fe9f5a01e5170a34a4f160e9ff02eb678bed81ee130f1c9d990ce8cd711c
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-static-block@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-class-static-block@npm:7.14.5"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.14.5
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-class-static-block": ^7.14.5
peerDependencies:
"@babel/core": ^7.12.0
checksum: 0275d0643dacd08638c2d3c129158ad0c2dea6a26e78fa4b2129811a29460ff9a6459d1955a19bfa3b9ed67ba2bb3c88676823ad207b2de4f0c65e0c3751d75c
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.13.15":
version: 7.14.5
resolution: "@babel/plugin-proposal-decorators@npm:7.14.5"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.14.5
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-decorators": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: caf02b34940b719a4e7648abef2f7397b50bcfb07ae631cc2dcee5d77473679bf4c6e1e5e5a467d0abb0fdaaadabc9d017259cb6e68c5dec8a20e3b7ef406696
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-dynamic-import": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 47be4b5f8824f8690b47d99a34d52de0e6c19d0b99f26c1f9a2e4cc49e05082bcef7248c610bb3830ae84cec928713c7774f4929fca4fa72df570df7a76a9d2b
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b3f4e0cc196f7ad9132816bb350124e8932bc047ab946e431f85bae9649b0de384c54261a60c050a2b8220703408fc089f90349ad008ed69a70944a6f3048d0e
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-json-strings@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-json-strings": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 51dafe70237860569c9c27dc6a0db83e149bf7babb0fcafa9dbcd55a960b443f7b5bb695956c6e116e46b3dbd2a6777ead62bcad843aff8c1916c1be56e2f504
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 08b6dbc991c4824b0d8bfabf46c8254fce02d2df04627b8849cf15a4b6de75629c10c7c83d1e6834cdcebfc98b16264ce2dd32aa9c0fae900ed2af807d5ac42b
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.13.8":
version: 7.13.8
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.13.8"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 89e5af79e29f19ae3a3b7fcce4f66c436df72441c17e8f0d366e0ad275406f74fe044f15d78e985f27bd4ea785065ff92aa8ef983d1b38dfabf90fc3387d70ea
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 033d9483c2feb74928fbb83a73948eb1179c8852d2ae507fbfc37752d2dbf702c9ad0daaf1eaa029f81b12b7e2470061b4f611db88b7293f0e9a71eba288a430
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-numeric-separator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 22093297ec9aed3938b39f4efa1b518252fe7b0835902c3066f0ae6a864ac253b986a4a21a6092aa068d0702d7b09bed74e56cf39f2da8b4f3f43e0747bffb62
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.14.7":
version: 7.14.7
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.14.7"
dependencies:
"@babel/compat-data": ^7.14.7
"@babel/helper-compilation-targets": ^7.14.5
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
"@babel/plugin-transform-parameters": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a35192868166fb5a62003a56ce2c266f74ae680f1d9589652c4495145240dd138a9505301bb5adca069cb874d6f0f733dc2f3d1d05f71a06019735c29c4d1a11
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-optional-catch-binding": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f9c1b2b34fef1bde85feeb0b438131f526056161e10b6fb91c74a5828ad39d2a20521b5c3cefc7367a7e5fc792b7c7e607bf278d7999b5d89824c34af3174eae
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.13.12, @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-private-methods@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-proposal-private-methods@npm:7.13.0"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.13.0
"@babel/helper-plugin-utils": ^7.13.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3c8cdc29b371d16898a0dc01dd67f4269bb6b2985e79ff11449428414a3993a52b24ab61dbfe080352548a72bab28b9e99fe2108c40eacb8f5f9dfa9cb50f7d5
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-private-methods@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: badacc1d68c8cf92a7ba973e3c283bc3aebf586a6573b6d18a96461ce18039d4cdc0135edac1b810df8d92cfca628115d98a0ad83ed8f15bf15eaff21539bf32
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.14.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.14.5
"@babel/helper-create-class-features-plugin": ^7.14.5
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-private-property-in-object": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a11da6a52eb13d6dcb6ed36993a81e9746404f6e83d32be16142911b7e5768293d8c4c5373d182ef25cb94d0b18c0c27a07f4553be042ee2dc49f7179f8cbfe2
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.14.5"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.14.5
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 58bd3277a972a33d101d29ab4f52e964b6e8ec218eb84f764b4ea67bf8ed362909760812d3f7451ee5e54dc273bd81bc5a00cd2c13e8fb64a47ec117cb69d51b
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.8.8
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.8.8"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.8.8
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 90249d7d818042c171d694fda45f41971623f5c1112eb9def10452ea2f300383e22c888b1a78d38148c292b65d66e95536f1fd4d98831cccecb4a689b059daec
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-decorators@npm:^7.14.5":