-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
20650 lines (18645 loc) · 702 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: 7
"@alloc/quick-lru@npm:^5.2.0":
version: 5.2.0
resolution: "@alloc/quick-lru@npm:5.2.0"
checksum: 48e6d9607b60f11daa5893605b838ff322b72385ec6a8759c48b1621129c7a73f3382a14376b854524ae0bf449df02e1e2a9c997f6d84aca33d10e4a469c81b0
languageName: node
linkType: hard
"@babel/code-frame@npm:7.10.4":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 05245d3b22a3ae849439195c4ee9ce9903dfd8c3fcb5124e77923c45e9f1ceac971cce4c61505974f411a9db432949531abe10ddee92937a0a9c306dc380a5b2
languageName: node
linkType: hard
"@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: 033d3fb3bf911929c0d904282ee69d1197c8d8ae9c6492aaab09e530bca8c463b11c190185dfda79866556facb5bb4c8dc0b4b32b553d021987fcc28c8dd9c6c
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.14.5, @babel/code-frame@npm:^7.5.5, @babel/code-frame@npm:^7.8.3":
version: 7.14.5
resolution: "@babel/code-frame@npm:7.14.5"
dependencies:
"@babel/highlight": ^7.14.5
checksum: 48c584cad9aa05ff16fa965b4572deae0343d51abe658a2fb72640e924c229d47f71f880a474cc1e14e613f88a4bfd576609b1e0d8073bbc4e50e60f7e678626
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.13.11, @babel/compat-data@npm:^7.15.0":
version: 7.15.0
resolution: "@babel/compat-data@npm:7.15.0"
checksum: 76db9ec4fb897b6a1de1057411a65b134bc2016b156ebf7ce39fbe97b4f1eeaf661b81d457126a71164cbc2de31a06c68f74d0ebbdce3720a000139683f787d0
languageName: node
linkType: hard
"@babel/core@npm:7.12.9":
version: 7.12.9
resolution: "@babel/core@npm:7.12.9"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.12.5
"@babel/helper-module-transforms": ^7.12.1
"@babel/helpers": ^7.12.5
"@babel/parser": ^7.12.7
"@babel/template": ^7.12.7
"@babel/traverse": ^7.12.9
"@babel/types": ^7.12.7
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: beefb9f490cfff7cafc02e5a11148297a71260ee18f5fdf6e14bf5694bc28431eec3813a91d0f0fc8c6122c5133d90d3261dadf45cb914d7d340a5b3077fd9bd
languageName: node
linkType: hard
"@babel/core@npm:7.15.5, @babel/core@npm:^7.1.0, @babel/core@npm:^7.11.6, @babel/core@npm:^7.12.10, @babel/core@npm:^7.14.8, @babel/core@npm:^7.7.5":
version: 7.15.5
resolution: "@babel/core@npm:7.15.5"
dependencies:
"@babel/code-frame": ^7.14.5
"@babel/generator": ^7.15.4
"@babel/helper-compilation-targets": ^7.15.4
"@babel/helper-module-transforms": ^7.15.4
"@babel/helpers": ^7.15.4
"@babel/parser": ^7.15.5
"@babel/template": ^7.15.4
"@babel/traverse": ^7.15.4
"@babel/types": ^7.15.4
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.1.2
semver: ^6.3.0
source-map: ^0.5.0
checksum: 84c787c8215f722598eed9f7b07e434df0a109520fa752c2a63f6ab4e9dd3b2ff08c31b3a030b329845fb6c1c771dba0180ecdf5b73b949ef173117bbb861bb8
languageName: node
linkType: hard
"@babel/generator@npm:^7.10.5, @babel/generator@npm:^7.12.11, @babel/generator@npm:^7.12.5, @babel/generator@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/generator@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 5ee8687d492ce44b613109f5a9e40e6b344177286c0d2578d3a144ea54855f20e80124399207d027a2262c04b52a99c8a538e77289f3a0e7b204ec06e550f531
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.0.0, @babel/helper-annotate-as-pure@npm:^7.14.5, @babel/helper-annotate-as-pure@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-annotate-as-pure@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: 183ef3386922e7982163ee537f63a73c5360c06a6abecd6fed8af1df6298a1ad5812648042327404b345881c43e889d97ddcd484cd2b61ad271cec2f1e900bc3
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.14.5":
version: 7.15.4
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.15.4"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.15.4
"@babel/types": ^7.15.4
checksum: e946aaf7f9d8bae0f27eec8499ce2808c1c29d0aac867641a46e949fe9ea829e769056570d7705f3a60f82efca72211c571cc391f1765a4db598dc5746ff668e
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-compilation-targets@npm:7.15.4"
dependencies:
"@babel/compat-data": ^7.15.0
"@babel/helper-validator-option": ^7.14.5
browserslist: ^4.16.6
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 539e4d209324fe56cd624aa3ae4a843bd479a644f28240322ec3b93154e35087731b43a16f13e1e0037c651afdf589a06b5937adc77941bbf71e062ce9d85b89
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.14.5, @babel/helper-create-class-features-plugin@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-create-class-features-plugin@npm:7.15.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.15.4
"@babel/helper-function-name": ^7.15.4
"@babel/helper-member-expression-to-functions": ^7.15.4
"@babel/helper-optimise-call-expression": ^7.15.4
"@babel/helper-replace-supers": ^7.15.4
"@babel/helper-split-export-declaration": ^7.15.4
peerDependencies:
"@babel/core": ^7.0.0
checksum: bac93753f1c213fd6b874358b0f6b55baf61e8dd9248beb523023722fd83a6a2741fb91888f758b820e86603d43f7de74b275a57122bbf99d1b6f9f5fae1f18c
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: 1a336feed2ef73dbc4f8412a34523a2532e0fc9fc29f9a8a7794a88eb29d3913b2f5607533b69d706c96becc79a7a6533b128d6902d3b5e115da9729b9f6caed
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.1.5":
version: 0.1.5
resolution: "@babel/helper-define-polyfill-provider@npm:0.1.5"
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: 41a3bf1b016cd94cece5eec1aa7fcc868ca32e0b630735e2be934d1ff7145226633b8c7d67884c18d7a090a5465a94bb8c4b01160ed8ea240f952d6aa1057ef0
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: e29bfc58e770903bc9e00c12b3d8243a494a1cafa5962fa3f7e90b81cfe5213b188f1835c66907246407fe0a016a1ffc85840c3ed2c365e66b461b8bf7af3f57
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-explode-assignable-expression@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: 2116e0a32e000d43c3058e19fb0a990d0319896f8c3f1d61386abc5a9ab3bfeeb3247b968efff4244a881a569e89e7baf71d7cca7d8e7179d6d94f686e57b48b
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.10.4, @babel/helper-function-name@npm:^7.14.5, @babel/helper-function-name@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-function-name@npm:7.15.4"
dependencies:
"@babel/helper-get-function-arity": ^7.15.4
"@babel/template": ^7.15.4
"@babel/types": ^7.15.4
checksum: 74ec8a86b1e4263f502447409098c71f1461e09794495e11514d659857c1d8794fb0552afadeaebb4a6c93b75f800ad48c531174a672126bd645b1f49f2fa13f
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-get-function-arity@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: c60ed72a9cf00222e20a5c7608f37a649c88af469f3021bd497dada07ccad109772b75cdf83ac363c48d1f135e80c367683f6aa6a015d21e5c4b9fbaf9682e56
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-hoist-variables@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: b500f154f9444b5251548deaa62f3553d0a2ff277ab1478e4f8ec94f2b669474cc968c62b3451a9b9739d48c5e8818d48f03d07d75fe14fa247e574ee6aa674b
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-member-expression-to-functions@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: 7180912838c00f3199dfe5c6299975a0c966b80e1aad7a0a448298b619c292103bd90a7fce2c748c8933f8e4b042138bdf1868d614c8fc303cec13a51fd9706d
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.14.5, @babel/helper-module-imports@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-module-imports@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: efb532958154817da2f5f4e9c12818500f97c2256eb6b99f01c7c537e506b8b2e609b0444d91503956ed3102eaba50826607a3352ef563d04430f9b5f502061b
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.14.5, @babel/helper-module-transforms@npm:^7.15.4":
version: 7.15.7
resolution: "@babel/helper-module-transforms@npm:7.15.7"
dependencies:
"@babel/helper-module-imports": ^7.15.4
"@babel/helper-replace-supers": ^7.15.4
"@babel/helper-simple-access": ^7.15.4
"@babel/helper-split-export-declaration": ^7.15.4
"@babel/helper-validator-identifier": ^7.15.7
"@babel/template": ^7.15.4
"@babel/traverse": ^7.15.4
"@babel/types": ^7.15.6
checksum: 07335b9ffc534a900261dee90237cbfc694b43e1436740f4c427419b0048b8ad58363e0ee94e39111597ac6fdfc19de5beb2f0635f51274a7cece1f220de68c2
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-optimise-call-expression@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: 96d837b5d28679cebd0da6d7d1ead844c8f59854eb228033f290ecfe9385ca8a0201d5f8ff21f7fb04b14d20c94931f115332f283e2d5e73ce49c632566b8651
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: 9f617e619a3557cb5fae8885e91cd94ba4ee16fb345e0360de0d7dc037efb10cc604939ecc1038ccdb71aa37e7e78f20133d7bbbebecb8f6dcdb557650366d92
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.13.0, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.14.5
resolution: "@babel/helper-plugin-utils@npm:7.14.5"
checksum: 76404ef3aadc25879f7b4c5945bafcca935d4af0cf451a95ff9f131f29ac3dc589e2ed19904ce746c7cf6c2a8a7ea33fa4eaf881b9b272d31f2be91984f505d6
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.14.5, @babel/helper-remap-async-to-generator@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-remap-async-to-generator@npm:7.15.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.15.4
"@babel/helper-wrap-function": ^7.15.4
"@babel/types": ^7.15.4
checksum: 84065985fb12ad7a66145001a883f7f5a83b39a7dd4c6a1f5a58c74a876ce80ef66728ff892995feb4f91a46dabf9f101de065d98cdbafd91e6d2c992ac38ac4
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.14.5, @babel/helper-replace-supers@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-replace-supers@npm:7.15.4"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.15.4
"@babel/helper-optimise-call-expression": ^7.15.4
"@babel/traverse": ^7.15.4
"@babel/types": ^7.15.4
checksum: 44291cc084e5c36f9d05948614f0cf8efd36feccba5a291f5644280a5fa03b5eeb2a6fc18caaafd990747499fa4c4115c6e94ae27c46cf2008b28e947566ab29
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-simple-access@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: ac7f1403b4345258181c38640ff725aece0dc880a909e60e8492f0c0a847d11b14743a6b01cc4b53528210e67931e8aa76c21487183265de35aa8186d19fec98
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.14.5, @babel/helper-skip-transparent-expression-wrappers@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: 30cdd0f8b810d45138277dc7a5c60c87d3160ca875205b12f95d392ec73aba412608c2dbb002942aeaf60d6bc77ee113eabebc7f44c8061640444576f27558fb
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.10.4, @babel/helper-split-export-declaration@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-split-export-declaration@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: 17179ddcbaff87aa2fc00ec0c65282265a171918c49b66a7ebfbc519687bf24d584fbf0e535250a1ff76050c425263982f1114c598ea73dbe582b42eb7ce10e3
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.10.4, @babel/helper-validator-identifier@npm:^7.14.5, @babel/helper-validator-identifier@npm:^7.14.9, @babel/helper-validator-identifier@npm:^7.15.7":
version: 7.15.7
resolution: "@babel/helper-validator-identifier@npm:7.15.7"
checksum: eb3eaea69de1e69c0c74e15b3934aa844b248d3bda6d5fa97f8c46fc16eada6153d2f519379ec3801b794bb5b72a88e087a18bbe6682cd72ce0c7a69144f2f7a
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: aded46b377d25f5966aab30506cdb95908bae18ea5d062e86c646e9afcef911327da80e637e06c3542ea2ba01cab903d18e91fc8a12fbf7b15e0b3e8ee0b9d3b
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-wrap-function@npm:7.15.4"
dependencies:
"@babel/helper-function-name": ^7.15.4
"@babel/template": ^7.15.4
"@babel/traverse": ^7.15.4
"@babel/types": ^7.15.4
checksum: 0a33ea44a76e63efa2e691a7c6b7536b80a4af2d9ba57920fd83efdf2391bcfd3902dd1f53d9277c82923aa534e5323e39401589cc5a7932f6eceadaa7792b6a
languageName: node
linkType: hard
"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helpers@npm:7.15.4"
dependencies:
"@babel/template": ^7.15.4
"@babel/traverse": ^7.15.4
"@babel/types": ^7.15.4
checksum: b6e700c85be893ad5594e9d3ec61aa510cc08d0faef493030c3fb9f61ddfc3ce75b94be07989129cf3bcaa62f12296127db2ea80d9b952bf1d4417909181b269
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4, @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: a1ed599c2655eb0b13134875ba2626b547a2634940e532c86a02896fb403f197cd56d1adaa474c7859ae4f53fabc5f1621e90770e75d235ca3350952ba78aa5c
languageName: node
linkType: hard
"@babel/parser@npm:^7.10.5, @babel/parser@npm:^7.12.11, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.15.4, @babel/parser@npm:^7.15.5":
version: 7.15.7
resolution: "@babel/parser@npm:7.15.7"
bin:
parser: ./bin/babel-parser.js
checksum: 17867022ece71d3f6311842f7543f6956d04e480b752539540d117adcdcf82e248adc70924e9ab8233086a039f7835a38fb72fdf776e5748fb60a1d08f1e8b30
languageName: node
linkType: hard
"@babel/parser@npm:~7.10.3":
version: 7.10.5
resolution: "@babel/parser@npm:7.10.5"
bin:
parser: ./bin/babel-parser.js
checksum: c7b4d7183fb89a6b74a4d6c690a9ffd0c33942814ae902a909642fb77495b9ca9ab5420d7f86c2a82e6721469477830e42c7e9f5a49f7471d4ba13819f7913b6
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.15.4"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/helper-skip-transparent-expression-wrappers": ^7.15.4
"@babel/plugin-proposal-optional-chaining": ^7.14.5
peerDependencies:
"@babel/core": ^7.13.0
checksum: b91c51fd1769bf34240d6a35722c1dd7c9f785b285cbd91ef12f563e6534315261f2a8c2ace9ba3c188b743230c6dd4a6793e8115e1fc5d1c468d079c16bed4f
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.15.4"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/helper-remap-async-to-generator": ^7.15.4
"@babel/plugin-syntax-async-generators": ^7.8.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 925fa16239858af106269793ecaa440b1f563bda6c4b3f6d30d9010b717c24f0afc7bf3295bdc1c1a223932a6f4a537ef5f97e44e56247e3787149ff4a3e909f
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.10.4, @babel/plugin-proposal-class-properties@npm:^7.12.1, @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: c2f7bdfaad463080aea6a1ffb0efea93fc814dbc64b9925dcc6ea4f18ad0d324dc69611df03894dcb48ce8b728ecfd3572d80f79908d2367bbcf153ed152350f
languageName: node
linkType: hard
"@babel/plugin-proposal-class-static-block@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/plugin-proposal-class-static-block@npm:7.15.4"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.15.4
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-class-static-block": ^7.14.5
peerDependencies:
"@babel/core": ^7.12.0
checksum: 36ac2676b205969892e1bacd6e36b2c8ae7bf9c6c1a6a11764607917b148294524297a31a06a1bddcc2f5739ba0798360cd77a9c20f88c5146eb348c13a0aef4
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.12.12":
version: 7.15.4
resolution: "@babel/plugin-proposal-decorators@npm:7.15.4"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.15.4
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-decorators": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1a49a3438975031800c4d82fb5f558559fc870533b100b3cc985357c37e7b925606130dbd1b679ac16e4f236ff146e76d385d40a66a3305605b1e268d4ec4130
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: 31e5b2fbfb09156281119678942cbbc09898ad2aa517d306876d36c517abd8523479c44c27463704b2997346838633e55662a7d01839eb2383aa338b2fd10350
languageName: node
linkType: hard
"@babel/plugin-proposal-export-default-from@npm:^7.12.1":
version: 7.14.5
resolution: "@babel/plugin-proposal-export-default-from@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-export-default-from": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 543ce9a0fc743da2310d77ffc248fc24b9e9b63f29edde4e7440a1448c2641c9787851d980d6d0f5b05e17903630f33d15504476f06c1838c340b1d3523701b2
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: 500e36b13e873a54e8fb4565e74055fdd38b021f425a28ff785f1b12747754740d60a7474e611220eb6df8065123982e3bdceaa3b10958923131242288b181f1
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: 679711cf9952a8a66a4b783a9716aeb304b94efec1135496f395e2eca5a7624af23e57db3b544eee0759465d865104cd5edf6699324a95ce1dd871f5d5119009
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: 424577300973379c53e0d057304c8848bcca7e420ae29cf70b69cfcb178e7166e800c71cdf596f396411d111ffb9e6b0b70a3a1bcd496c5f819f6b3ef4ea002d
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.12.1, @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: 2f81d7a9abd237295be1f6eb8dd386cbec801c51ecd4db5d6e9d5009bc2cf4b04d3893ca3105ae977621d2cd5cec683f5a70e214d455a148e523b40f2474ccca
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: 8ff9281e6bb7df4d1f3b398eb7a6221befc0ff8aadc100a5e20409fd9532ff9a886bd8b33437f6c8aa1a95f56bf19d97f16c4c96bb9d09f8ed81f0b2d3f932c0
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": ^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: d14fc95dad725b72bc1d29f6ea3eee0ff436fa5ab2ac2dd486acb9c1e4cda9f68424581c87857fe4e2c58bf48386b38b3eac542157b040b0f25c1fbbd98dd8f0
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.12.1, @babel/plugin-proposal-object-rest-spread@npm:^7.15.6":
version: 7.15.6
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.15.6"
dependencies:
"@babel/compat-data": ^7.15.0
"@babel/helper-compilation-targets": ^7.15.4
"@babel/helper-plugin-utils": ^7.14.5
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
"@babel/plugin-transform-parameters": ^7.15.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 31a1e62f2acc6c733c01041729b97aa4127cd666535f0bcfc2ef7e5247682af951d32ee5d0641f19650fde73ab2e3b640549c4c8033e7fb06bfe7612655d2bcb
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: 8f239b0552322860910cc981d2ea19766aef98374d4ae5b1b2d92cc96f9c0466d68aebc8289d208e8e761b84da4d983283fb7410f1fb7ea1e7f5b532f4016898
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.12.7, @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: c5e74f83ed77ce95c237f5ffe054fb6f65ae0b5b446f476561dc429a376ead34b12475e87bbeb5c24812b81cd7897ef1ed0f78499b97f1b1c83af6fa97f1e0ed
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.12.1, @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: e3e665d1c89af5048ea59536de4ba4b9effcdcb61c13db5ebdf50b969e111afc258eff1bd2762fc558fabc038ae72cff2de09cc40e57a53e169d6b632e6fc3d4
languageName: node
linkType: hard
"@babel/plugin-proposal-private-property-in-object@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.15.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.15.4
"@babel/helper-create-class-features-plugin": ^7.15.4
"@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: 9f740fa8dd6401dcefd520181745959b80b1d64d5706f204afedc1e223519c33e1c510ca3c49d815982bda29991be7300755b83bded8c0807aaf736d2080ce82
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.14.5, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.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: 50471fd3d4e9a79049a20dab15edddf7fd10675ed6cbc32308e048270b504d213365d88e51ee5f70a5c7ae0bb94af76bdaa81c66fd229f2159e605ad9d73a328
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: 39685944ffe342981afb1fe3af824305e94ee249b1841c78c1112f93d256d3d405902ac146ab3bad8c243710f081621f9fbf53c62474800d398293c99521c8ef
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: 3023dec8acd42e0b691d9cdf21bc6931fe3e3d53c2231bdfe3eca3afeab168723f7315991550a163748bc49dbcd3c95632b77ec56f5e1d89bc5029cfeb7f0f7b
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: 43bef611dd3912e3adcea1bcb587eaba1b8c8f24dfb134f191488e3521453d4f0a36408e6a3e27b512bee6e1b569c889db31a270d5576e9c34a80326bbc6bd7d
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-decorators@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a9cf68b8d35f7b3f37aff333a01f23a73527caca255a3516db5fe9321133363e08c2cb5c8322b2b274b30dce44015427ac19ef715e6f998abd3294ff3fa41802
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 134a6f37feac0e6d55f8188232e11798ccf699b02d50a4daf9c040f52a22ee32923a6a979443ecc865f4014937ffe67ac11b81aa5668b6792238c647314f41c9
languageName: node
linkType: hard
"@babel/plugin-syntax-export-default-from@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-export-default-from@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d4e6d61db268ceaa2c30c88491e2bcb30548034cac1341490869726c6e962be09c76d5af58955a0caef5d6f4525bdf16a691850e7d66c8c5c0207f7e5de9879e
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: 832e007319bc5040818012d51eb91c3ad4c38a1ea696e9a9805df4d601d8c4f061032cb61494946e7bdaa5db0422a6bb6f39577cd0e5c8323b6bb2c364406dcb
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1a7dabf0a4b264cb235966c4256aad131567eba20e41de731fa9127d371454a2f702e27fd7bedac65efb0df847e5cece7bcb5507a931604d1c2ecb7390adaa1f
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: 2f0314608b171d0146dcb8283abfb0d48824da19b311b3aa875cb9977db23cb5e64e895390780f1839dd9679e6761b61e109d40741f174d73f200b6eceacfcbf
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-jsx@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d6f998d4c85504c2dfbb1f501c0b43173c972614b438c9a5753ec89ee60ce1adebd2acd004be4d49f2b0ab00e3c0cd6ace29c8a6f0075ef37d1428ac202982b7
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: 5b82f717707d278e58d12649932bf3327923361f051cd4517a5b63d7ebfe39cb6cdfb37aa199b5a441db305301a3c8de01c946d25d1f4c4ecb94322a23ac9e73
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4ba03753759a2d9783b792c060147a20f474f76c42edf77cbf89c6669f9f22ffb3cbba4facdd8ce651129db6089a81feca1f7e42da75244eabedecba37bd20be
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 47ae8782939ccc41f94b1d46b8b7a63363b003b8b7544bddae8dd454a8d51b38bbd4f9c26e91ecfb5fc16dc5f2228700e3030def63c5d07046073ec8fabc4665
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:7.8.3, @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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: db5dfb39faceddba8b80c586e331e17c3a1f79941f80eaa070b91fb920582bffe8bba46f6bebbdaf7c1f9b0bbe2a68493c28e1c9fb0ced864da739c0cd52ce43
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f03d07526674ecdb3388e1d648ec250250968e13c037a7110e37d3eab0b82b07d6605332772afdf19f1831dfd3bdbbf0288a7d9097097d30b9548388ea693a07
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2a50685d023bc609b01a3fd7ed3af03bc36c575da8d02199ed51cb24e8e068f26a128a20486cd502abe9e1d4c02e0264b8a58f1a5143e1291ca3508a948ada97
languageName: node
linkType: hard
"@babel/plugin-syntax-private-property-in-object@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-private-property-in-object@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1f987725a8e705c255bd3f47d4154445ccc8706c021e4abd0e3ac28bd2ea15f2dd9f44a4db04ca476909c86a366c737a9fcd808a38cfd84ee670c817ef05207f
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 642baff7c2150f146aa2ae94f8fa93f8aa81f5d82731241c60054037938cbde8031898194a216ec567af9b35bc4f394be3cd87d76aea39c8e32d68927ea67601
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-syntax-typescript@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1b26952c0fa586460c8be3422e755fcd28a0cbddf5fb5647ade091facddc7a314b0320cb7a63072f32fd63702332ec837dc0e2b21a111c427c21d243596da180
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.12.1, @babel/plugin-transform-arrow-functions@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-transform-arrow-functions@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9f62f77105b14f18128bd024683bf943639db1b0f5d90a9868f01ffa2f9ed224682d51f38bbae47d52e145d222799b96dc2ce360c72ba63a4bca1fb9c51a02c9
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-transform-async-to-generator@npm:7.14.5"
dependencies:
"@babel/helper-module-imports": ^7.14.5
"@babel/helper-plugin-utils": ^7.14.5
"@babel/helper-remap-async-to-generator": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 955b62db7c0da73ecb5eab1d9643bbfff5cca9bf61fba27bf74c23436a19a4c78d64027155a21048a1b8e8ac28f1f0a945f7c8ccee0b3ff52f07c7c4e15fc254
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 389a1286da30b0a42c4707b11f307b5c1025645c6ab0f3e3979dd1fba04d2104c43753f3960201ef6bb0e15d2e5ab7415d8b3092ab333d501bd0224f41eeb349
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.12.12, @babel/plugin-transform-block-scoping@npm:^7.15.3":
version: 7.15.3
resolution: "@babel/plugin-transform-block-scoping@npm:7.15.3"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 22e7411a9d0d390de956e534a21927238b57cc49f50fca139a825ec3f05e5f0d7abd76f0d69a76d4c0ea67b8e57b905c7fde5c7f1f7edc2388ecb1cc29cd09af
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.12.1, @babel/plugin-transform-classes@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/plugin-transform-classes@npm:7.15.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.15.4
"@babel/helper-function-name": ^7.15.4
"@babel/helper-optimise-call-expression": ^7.15.4
"@babel/helper-plugin-utils": ^7.14.5
"@babel/helper-replace-supers": ^7.15.4
"@babel/helper-split-export-declaration": ^7.15.4
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6ab359386a6db4da1ad23bb7193c40b8b04496cfdce86421e3dfc7afe138bef37f188e503d06cff79a934790613d43e62183c0a65c4aae98b0199f28171baf3d
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-transform-computed-properties@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 080dcf2c5940cb9ca9c3b709f5956cd7814cef177f1d337f96200c36bf06c80072dbe28ba2995e7a93b796c76a4b2861c4219c2e19f679f53615cc1d617570f1
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.12.1, @babel/plugin-transform-destructuring@npm:^7.14.7":
version: 7.14.7
resolution: "@babel/plugin-transform-destructuring@npm:7.14.7"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 85f175558999dfac7018a61ba3966d2159b46603084704f28fdb3b4a90ab0118f751f1377f3502d50859187083edb29cb051f454bdf8982ce4a2e5b183540b65
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.14.5, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.14.5
resolution: "@babel/plugin-transform-dotall-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: 1e4564243a9c1492ad9c15bc17e45adeef4630998f724c23b0cf24bd215e688fccdba743275f73eac76858604f9ccfedb3e32707915b3e86aed034c2161c1d21
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 592409a29457e086dd4e960225a8c562e85ed9850e21a6c4fa36abdb83df005f213fd05a76b89802c3458714e07d66a404bdda7261c70491bebb95081d065e30
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.14.5"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.14.5
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d3e3b34c61d49af68a53f63f618dbc7c215afaf20fa4af06eff9398ffab75e4a50182e470631f55648668175e57d9e76cd41e0b960600b44daa2c6055372b379
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.12.1, @babel/plugin-transform-for-of@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/plugin-transform-for-of@npm:7.15.4"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5ab523faf805cce4aa4fc87a7530575c77f101dbe0da6ef650c8453fd0e310e67f17d8793935b3796a567c33c5bb5734e02d68577881028150b1ebe2d9298086
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/plugin-transform-function-name@npm:7.14.5"
dependencies:
"@babel/helper-function-name": ^7.14.5
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies: