-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
11869 lines (10659 loc) · 425 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 8
cacheKey: 10c0
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.5.5":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
dependencies:
"@babel/highlight": "npm:^7.10.4"
checksum: 10c0/69e0f52986a1f40231d891224f420436629b6678711b68c088e97b7bdba1607aeb5eb9cfb070275c433f0bf43c37c134845db80d1cdbf5ac88a69b0bdcce9402
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.10.4, @babel/compat-data@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/compat-data@npm:7.11.0"
dependencies:
browserslist: "npm:^4.12.0"
invariant: "npm:^2.2.4"
semver: "npm:^5.5.0"
checksum: 10c0/afd2722e53b92edb682c362a6c09fbd161b24c7ee428c6ac6aba707a11195e8189ed6fe19814e3ab1e76f686cfe75b581f6d3e3e55794fb3c9e5be7cfe9c3bbe
languageName: node
linkType: hard
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.10.2, @babel/core@npm:^7.7.5":
version: 7.11.6
resolution: "@babel/core@npm:7.11.6"
dependencies:
"@babel/code-frame": "npm:^7.10.4"
"@babel/generator": "npm:^7.11.6"
"@babel/helper-module-transforms": "npm:^7.11.0"
"@babel/helpers": "npm:^7.10.4"
"@babel/parser": "npm:^7.11.5"
"@babel/template": "npm:^7.10.4"
"@babel/traverse": "npm:^7.11.5"
"@babel/types": "npm:^7.11.5"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.1"
json5: "npm:^2.1.2"
lodash: "npm:^4.17.19"
resolve: "npm:^1.3.2"
semver: "npm:^5.4.1"
source-map: "npm:^0.5.0"
checksum: 10c0/bcaaf394d274d0de7a4d189df0cd7460efb46b5e16dfc957bb6627b9d794644d6a3bfe2542fc62cb1007b6e7c7d4770e83bbeacae6bc2281300c00b1f5fd4c14
languageName: node
linkType: hard
"@babel/generator@npm:^7.11.5, @babel/generator@npm:^7.11.6":
version: 7.11.6
resolution: "@babel/generator@npm:7.11.6"
dependencies:
"@babel/types": "npm:^7.11.5"
jsesc: "npm:^2.5.1"
source-map: "npm:^0.5.0"
checksum: 10c0/0050faaddc7111644e0d852289f654fae65155073f1596c3ea8301ba4a4f2ca2870fc7647897cb2849c3831dbef0679338ff45a58091ac57a523bc1344742b43
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-annotate-as-pure@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10c0/0023c4933a4c33267494f65063f3375f8c82671db1caf748db6a8c91682a7bbc72f6d43248a095cb5211cc8ab3812cbbfce99e972a9b1ce44edd25eeffca308c
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.10.4"
dependencies:
"@babel/helper-explode-assignable-expression": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/2e2894d28c7d85573ce34c360fad916e041aa74fe214bff9a9dd3f8bf7c4eba3353b32708b8ba7d5c8e51beb4c4c6e8e431dca112573fcd060b2e1390ea9f322
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx-experimental@npm:^7.10.4":
version: 7.11.5
resolution: "@babel/helper-builder-react-jsx-experimental@npm:7.11.5"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.10.4"
"@babel/helper-module-imports": "npm:^7.10.4"
"@babel/types": "npm:^7.11.5"
checksum: 10c0/2e29045131c95e312687764811eeb71080c252d8d51541c41254ad0931b8bba8355e3e92aca650555aa89a6a940299d128e55485255a498b5f352a2b685e3d3c
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": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/018d9a34ffec7376615020b446de101890c1b48fcb8dbeaf4d8c7e39304960bfaa4db32a7e75a30463425573bf13ec68af7c8326a46cd8913b4e0d29878ee4f6
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-compilation-targets@npm:7.10.4"
dependencies:
"@babel/compat-data": "npm:^7.10.4"
browserslist: "npm:^4.12.0"
invariant: "npm:^2.2.4"
levenary: "npm:^1.1.1"
semver: "npm:^5.5.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/c8f348a298f52b2e211ec133b3ab0f501c9746d1c1f2c6a6361e43160a16e7cec13c00507a4823636410b1e7daf4867bb853eea3d2deb884852a78469adaad16
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.10.4, @babel/helper-create-class-features-plugin@npm:^7.7.4":
version: 7.10.5
resolution: "@babel/helper-create-class-features-plugin@npm:7.10.5"
dependencies:
"@babel/helper-function-name": "npm:^7.10.4"
"@babel/helper-member-expression-to-functions": "npm:^7.10.5"
"@babel/helper-optimise-call-expression": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-replace-supers": "npm:^7.10.4"
"@babel/helper-split-export-declaration": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/b9fc7cf38825ca1c31333dba5fce41e17d06b0cfb8e6b638399253455964244be6f9564ae8761be309b7a6d89d6df73bc3bdc973ab0867423234947d0ea44c00
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.10.4"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.10.4"
"@babel/helper-regex": "npm:^7.10.4"
regexpu-core: "npm:^4.7.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/3a9a9ecf4f8679f590815a0e094e266055676d664d6f51994f4a9923cd8a8ddd5475b15656fd6dbc7035a831f5e661a05d881184df0608b4f6779962a744c01f
languageName: node
linkType: hard
"@babel/helper-define-map@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-define-map@npm:7.10.5"
dependencies:
"@babel/helper-function-name": "npm:^7.10.4"
"@babel/types": "npm:^7.10.5"
lodash: "npm:^4.17.19"
checksum: 10c0/8bacffeb823c238f90fa7d04fbf42fa4331745b0897bc53a0bea0782beb89f2c916d5e801fa91281998607c3e86b717b98f4a49a603d73c8fafbf8ed689ce06c
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.10.4":
version: 7.11.4
resolution: "@babel/helper-explode-assignable-expression@npm:7.11.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10c0/dcd27af7a2fcac799a26188769a008e6d299db2229dee1495543aff76e0122306828cd9277a74e1abdc466c2a9cc281732ba21db7496f71ea8c8a6d97948c32b
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-function-name@npm:7.10.4"
dependencies:
"@babel/helper-get-function-arity": "npm:^7.10.4"
"@babel/template": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/3de73077cc789809d1265154a20e8710043955a949446539f5d27c615ba03065227de4a129dcf4f6ded397d66147a074d622f81e49bb6436aeb8e2cb198fdec0
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-get-function-arity@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10c0/c8cac1968e79d127692f186a778599f84a2037a6778cd1891f5e4b0b3df8dc0570aabe3fa0d51705c5c9a25762696a9acad1cba751c8373b33c594ee1d00a7f4
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-hoist-variables@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10c0/4cb45f0b68566015907dd84bf986bb22981eaac2d6706ada0cec6134647c370591e7a5f0722784dcbac32f0cccb787a038ae4fdf1976e8c07e25c00bf6fff779
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.10.4, @babel/helper-member-expression-to-functions@npm:^7.10.5":
version: 7.11.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.11.0"
dependencies:
"@babel/types": "npm:^7.11.0"
checksum: 10c0/ba8724c4e7055b4771aa02d9d18fa03627881e47df4ec1de99e683d589c06465728cc62f43f92956362e4103ac95b8a317d56f0f9f33f536d215f0e887c5647f
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-module-imports@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10c0/8f22f1f9e7628f2cfd4d3961388db05f16329df0310317f55cfc93f7dac648a45bce5e2680353a33161e0bf6dba8241fcd6827a2e7a2607a82f3798dadcada06
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.10.4, @babel/helper-module-transforms@npm:^7.10.5, @babel/helper-module-transforms@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-module-transforms@npm:7.11.0"
dependencies:
"@babel/helper-module-imports": "npm:^7.10.4"
"@babel/helper-replace-supers": "npm:^7.10.4"
"@babel/helper-simple-access": "npm:^7.10.4"
"@babel/helper-split-export-declaration": "npm:^7.11.0"
"@babel/template": "npm:^7.10.4"
"@babel/types": "npm:^7.11.0"
lodash: "npm:^4.17.19"
checksum: 10c0/0bdfd5a6bcd9550b0979f3c81b6f13e2307d1f583698f0696a96bfa7a164a6b8b4c74b2b1b512d33f4807c82d381dd42f588315bc0798bd68d80d0b090f495f0
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-optimise-call-expression@npm:7.10.4"
dependencies:
"@babel/types": "npm:^7.10.4"
checksum: 10c0/c5b78d1801ecc7a03317dd180d1f736f7e872a3d130b3ee8e461cbc981092a365583f976f38d414c73204759738cd6c5f79868e18eaf1fa408c51e1a69e150be
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/helper-plugin-utils@npm:7.10.4"
checksum: 10c0/113d0405281f5490658f7c1c3a81b4a37927375e1ebcccd2fd90be538a102da0c2d6024561aaf26bd1c71ef7688b5a8b96a87d938db8d9774454ab635011fc7f
languageName: node
linkType: hard
"@babel/helper-regex@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-regex@npm:7.10.5"
dependencies:
lodash: "npm:^4.17.19"
checksum: 10c0/bb068897376190164fc121de124dc131eca02500dc148d23a0d8b0eb61f95446278aad5b7faed8de5740a552b526597fcf210f6e4bdb544991e6c44337f556ab
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.10.4":
version: 7.11.4
resolution: "@babel/helper-remap-async-to-generator@npm:7.11.4"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.10.4"
"@babel/helper-wrap-function": "npm:^7.10.4"
"@babel/template": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/90dcbdf9f9a0893df3765e141c05d05ddb936fb33b7cf68826c13a057ca831daea19a7e8192e46c21f10e0e5f404f8b74f86e908b2ba4054538adb731b14dc2d
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-replace-supers@npm:7.10.4"
dependencies:
"@babel/helper-member-expression-to-functions": "npm:^7.10.4"
"@babel/helper-optimise-call-expression": "npm:^7.10.4"
"@babel/traverse": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/98d2f4cc9cc3e7f21abfaabc9447f3147a053eb7f394bb3ec5a2537356b4745b38aaccc4c504ee5907197ddfad2e1e23758c5c64f81022d96557f4e399eeb863
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-simple-access@npm:7.10.4"
dependencies:
"@babel/template": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/f27b09deadef7f2c57765d7e865f36b74f255f3ef3d5396e8229496aebe18a97bbfcbafb7617c301b91b365c51f3454e96ed8965138aa2ad45652740b031af4a
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.11.0"
dependencies:
"@babel/types": "npm:^7.11.0"
checksum: 10c0/6f2e57c38b4343663c319d3ee1021e0e5ec92ac0647a8f789fede657b1595f7d96445331310960648e013babd3a53e3cc614d7467e6a414e98e16e85d7fd69cb
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.10.4, @babel/helper-split-export-declaration@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-split-export-declaration@npm:7.11.0"
dependencies:
"@babel/types": "npm:^7.11.0"
checksum: 10c0/a17a2612f879348318b0e33196d3f9b790acae2b651f4623ba11bc927807b5ebbb672e036ed685d1bb8eb42ba3222cf459bb04e084629df7e7a731bf3a6190fc
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.24.1":
version: 7.24.1
resolution: "@babel/helper-string-parser@npm:7.24.1"
checksum: 10c0/2f9bfcf8d2f9f083785df0501dbab92770111ece2f90d120352fda6dd2a7d47db11b807d111e6f32aa1ba6d763fe2dc6603d153068d672a5d0ad33ca802632b2
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-validator-identifier@npm:7.10.4"
checksum: 10c0/a381f72f2f714c3c4b5f51f2c406ffcb9a976bb71109d49ceb664e9e60d020fc076cefce883a45cd3c4a36a50e5a80ee3a85d183ce90220309062916adf6aed0
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.24.5":
version: 7.24.5
resolution: "@babel/helper-validator-identifier@npm:7.24.5"
checksum: 10c0/05f957229d89ce95a137d04e27f7d0680d84ae48b6ad830e399db0779341f7d30290f863a93351b4b3bde2166737f73a286ea42856bb07c8ddaa95600d38645c
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-wrap-function@npm:7.10.4"
dependencies:
"@babel/helper-function-name": "npm:^7.10.4"
"@babel/template": "npm:^7.10.4"
"@babel/traverse": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/4544dc96d576519f65ef87eaccca0a9687ba56a277c26a0d3d2e749eb87147cf2dc80b6624f2f8b26caacdfe9027afce38fac711eba849910c5150b06bcd7e75
languageName: node
linkType: hard
"@babel/helpers@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helpers@npm:7.10.4"
dependencies:
"@babel/template": "npm:^7.10.4"
"@babel/traverse": "npm:^7.10.4"
"@babel/types": "npm:^7.10.4"
checksum: 10c0/feed4d9db488a10486939ec4afb48aca21be6a45c7cdf753bbb293505e3fe22f780ec04e859a062f5d63d83192dd43627b8bbdb5d64f01251ffa749fff72dfe9
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/highlight@npm:7.10.4"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.10.4"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: 10c0/1922bb5bd977b9e9958c8b54e13c01673c932de0d1ccffd9e3b77d4d6db5dfc667d05fddc1575e7fc06e69e224765b292595072dd9ae90b16c3b49b5c1e584b5
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.10.4, @babel/parser@npm:^7.11.5, @babel/parser@npm:^7.3.3":
version: 7.11.5
resolution: "@babel/parser@npm:7.11.5"
bin:
parser: ./bin/babel-parser.js
checksum: 10c0/34063f237594d0d83284915366bc4413b9ab9e0af2693383a2b9a17e05948713528450f0b3ed8c7d4354da50f021aa5889d9ea48b38945f63cf22528c4cb439c
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.10.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-remap-async-to-generator": "npm:^7.10.4"
"@babel/plugin-syntax-async-generators": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/3d538bcc42ff02757a350cba436ba59ed688bd1865e95c64f7a77f6f5ec0552e3af8d724cc885161786301c5ab019f961520bfcc5535dc9f3d0787ca8a4f0ab8
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:7.7.4":
version: 7.7.4
resolution: "@babel/plugin-proposal-class-properties@npm:7.7.4"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.7.4"
"@babel/helper-plugin-utils": "npm:^7.0.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/9d9c60ee77be1992f5880f033f49ab477353d28975f1d80e87bc57b5680510685299ed5d93d9a9d62dd7da34834463e84d466157c6792cd67cbeb1c80b717444
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-class-properties@npm:7.10.4"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/843819ef26584ce1861ab7867d6e84b46412c2eb9bc63a808a4a2e69b46f1f8360e72d895145b731a91bc92f5ac417829013c171757f5cbc233938dae6d24f31
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-dynamic-import": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/0c1b5b038a9e596b6022ad2ac8de6f08779ebc0ada258354d2983e970a4894173369564906014848fb7f9e331aa8ce497d951b0f34afa55696cbb85a2b35e7fd
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-export-namespace-from": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/5e2c7bc9d40cfddce6cb0897869c9391eb5133ce20a3d057c57b7ea4ee17907436df38f48718ded14fa619511dbdeae6ca5ee9cfab8cc68581cf68eb333c4467
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-json-strings@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-json-strings": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/64da10712a630ec29102262dae3b304fca4089edebfffb00c5ae9be0c561f6c15cbb3ba65528799d54536242b19b73c5f99d797b56e3f5c0d160278c665e8de2
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.11.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-logical-assignment-operators": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/66597ef975e7beb77f0ced704d0896803d35a5deb48444234cfe88521ffae4e2f5b68f27a22cff92b959f6d5e87bb15ecb3b01d17223f394cb7d3c5428c5621e
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/d74cb9893f2cffe58fdd9eb2047a504f827e5b7257525a6923b0d8f8054239b7f7f8e5620fb6b9d7ff039ec92b28259bebfa935f42d43e60b252299260ef0ac1
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-numeric-separator": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/adb4e4ca2a369f0431e405c368dec4346a085d88edcc6f8234e66dbf39fe015070a15fafdbb78a4603faa8227368e5e087ffd4e65952511ff279eec82f9c7608
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": "npm:^7.10.4"
"@babel/plugin-syntax-object-rest-spread": "npm:^7.8.0"
"@babel/plugin-transform-parameters": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/eee7574936ead0bb38a272cd5648f30547b80faecd02bfb6410d58fe293a303b08ed715fa4c0d86207fc506db6ba6f61200d5e4a9680f3aa81c6321aaa5258de
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-optional-catch-binding": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/4b080e87af368a95598302101f467e4fc8420a619eba3d34511978fcf14d65cc9cf7f5ebc6d85f1184a275c0fbd6788fd5d87d598fb37a0ee0d7ec4a56b526ba
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.11.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.11.0"
"@babel/plugin-syntax-optional-chaining": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/3257687710adcd211303accb67551d5acc3d88fa2c5738cc18baf946817b56479e392fd26e2521fa951835da7ed41dbc05edcd16af0247c715f188bdca9b1b70
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-private-methods@npm:7.10.4"
dependencies:
"@babel/helper-create-class-features-plugin": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/b8fa5dc7f1e5f1aa34f8ec4ce831d5d51ce44be06d4b744d5df1885e3ce4df6e8f8f18a187a3955e14d5f9cbbf4b999250cc348904293f3215501733e5618bf9
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.10.4, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.10.4
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.10.4"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/137555204160aabb5153f96990f9cbb4343b174198752bf05c393dc7f644e293514125c1a4eab6e9bf3631ad5675086993401b80d397e6187b4804b697650ed7
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.0, @babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/d13efb282838481348c71073b6be6245b35d4f2f964a8f71e4174f235009f929ef7613df25f8d2338e2d3e44bc4265a9f8638c6aaa136d7a61fe95985f9725c8
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.10.4, @babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-class-properties@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/89974723a09f24026285c8d99a06add43767448ce853b5cd1414cebbc9556102152febec1f84d74f0e8432c92b083f47cc7d037c8774073c46b421f97ebeecbd
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:^7.8.0":
version: 7.8.3
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/9c50927bf71adf63f60c75370e2335879402648f468d0172bc912e303c6a3876927d8eb35807331b57f415392732ed05ab9b42c68ac30a936813ab549e0246c5
languageName: node
linkType: hard
"@babel/plugin-syntax-export-namespace-from@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-export-namespace-from@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/5100d658ba563829700cd8d001ddc09f4c0187b1a13de300d729c5b3e87503f75a6d6c99c1794182f7f1a9f546ee009df4f15a0ce36376e206ed0012fa7cdc24
languageName: node
linkType: hard
"@babel/plugin-syntax-flow@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-flow@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/2cdc4e93b9723b6b1cce2e103a39167a1f1decfbad1b62bed35a7a9ba6ac34eaedf1487d79b8ad06cf9085626a8507165d649667004b162d04ab7e4665b3a65d
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.10.1, @babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/0b08b5e4c3128523d8e346f8cfc86824f0da2697b1be12d71af50a31aff7a56ceb873ed28779121051475010c28d6146a6bfea8518b150b71eeb4e46190172ee
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.0, @babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/e98f31b2ec406c57757d115aac81d0336e8434101c224edd9a5c93cefa53faf63eacc69f3138960c8b25401315af03df37f68d316c151c4b933136716ed6906e
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.10.1, @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": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/2e2f23cde809aff5035fbbf189cbcd2c8fee68afccb1a5412ac0ed30e3bb101ca76e3f972279f5fbbddc3e790be3bffc52bcd91a8593eee110f1ed590e529cce
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4, @babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/2594cfbe29411ad5bc2ad4058de7b2f6a8c5b86eda525a993959438615479e59c012c14aec979e538d60a584a1a799b60d1b8942c3b18468cb9d99b8fd34cd0b
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.0, @babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/2024fbb1162899094cfc81152449b12bd0cc7053c6d4bda8ac2852545c87d0a851b1b72ed9560673cbf3ef6248257262c3c04aabf73117215c1b9cc7dd2542ce
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.10.4, @babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/c55a82b3113480942c6aa2fcbe976ff9caa74b7b1109ff4369641dfbc88d1da348aceb3c31b6ed311c84d1e7c479440b961906c735d0ab494f688bf2fd5b9bb9
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/ee1eab52ea6437e3101a0a7018b0da698545230015fc8ab129d292980ec6dff94d265e9e90070e8ae5fed42f08f1622c14c94552c77bcac784b37f503a82ff26
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.0, @babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/27e2493ab67a8ea6d693af1287f7e9acec206d1213ff107a928e85e173741e1d594196f99fec50e9dde404b09164f39dec5864c767212154ffe1caa6af0bc5af
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.0, @babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/46edddf2faa6ebf94147b8e8540dfc60a5ab718e2de4d01b2c0bdf250a4d642c2bd47cbcbb739febcb2bf75514dbcefad3c52208787994b8d0f8822490f55e81
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-top-level-await@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/f550c3960ce8bf1011e459dab035586e5ccf9e426ed50f7c9dfe8ee55263b129c68e32d9ef7633a47cb1ffc6cc5f582f5ffa441cdeb5a0d4a26f1a953e7f924b
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-arrow-functions@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/f342194e83442397c1bdf0e143d840d9cbe42a2301e25b852136076b039f98346723c17371dbe4d0d126409de4b3496aea99566003572112cb0a1e77f8aed8ea
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-async-to-generator@npm:7.10.4"
dependencies:
"@babel/helper-module-imports": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-remap-async-to-generator": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/d1549d708b13aee1f8d822aef37ded06f326cc2b164e1b06044b5754605d8ccb1c392f8049cff7868e2b2ab40871c5cb660ae21d659ca3c911485b9e95bbf45c
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/05900a16ccd5b261249070e465d560a08eecfcd6f361c1c3421cc1125ab42c7e20772cb5c4b40c24c0c18be211610a34b6b59184a7bffd96e09224d034f6be9e
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.10.4":
version: 7.11.1
resolution: "@babel/plugin-transform-block-scoping@npm:7.11.1"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/6e0d3c9c35b4e034654f8205eb68e82abfc8811dbaf2977cf7dc6415a84cf7083b423be2f15acaef407722b2b7ad2fe7fde37aa0ea6c4f09ecec4507c004e15e
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-classes@npm:7.10.4"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.10.4"
"@babel/helper-define-map": "npm:^7.10.4"
"@babel/helper-function-name": "npm:^7.10.4"
"@babel/helper-optimise-call-expression": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-replace-supers": "npm:^7.10.4"
"@babel/helper-split-export-declaration": "npm:^7.10.4"
globals: "npm:^11.1.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/ab56dea6fe052f09a087dc25bff848b8054607ce49a6f2a5b4827ddb7d94e5020e2d4e371950ab22ef4726b17df03e883d8f37206f3abfd7abf0fe8e04532724
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-computed-properties@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/73af34407016c375aa28a72cfa7dc534a84f8050841633861c5e995b85a93bb7dd7426708e8b597aedd80f8d94ebeb94655f36ae20a546e340deb45e68fbbcd9
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-destructuring@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/afd0f9f037532d07e5ff0868ccfcbc6fc6d184c8a382915984ab44e6cdeb0d86b35db65ccf7644ad33638a59da66b58426fef15371f3016d39c61f0618683aef
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.10.4, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.10.4
resolution: "@babel/plugin-transform-dotall-regex@npm:7.10.4"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/86375bbf2e4b295a976abead0eab39b6d111160ec110265bf6a22169fb1a02ac11d2bb68b137d51796e6d3dffe6490ff5c754e82857f52ec9e2c2abb1b7f1448
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/39040f50330b75978aed9e6156ae200d808ed801fa8aaa03916053e8f463cccf94ce670cbb3e5a7dc6ac1bffe0b24d7e8bcba8e61beef3a7f763f7cc2fd7331d
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.10.4"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/068e00a5f055d54901d4ab6b535a6bd22bfd5d8e8aa780ba3a567a3bcd931c8c13357696af66800c1f27fa9e63b2ad4bbf2e5f8cc1609f47d2f02729f5eac387
languageName: node
linkType: hard
"@babel/plugin-transform-flow-strip-types@npm:^7.10.1, @babel/plugin-transform-flow-strip-types@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-flow-strip-types@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/plugin-syntax-flow": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/8d585848bb17bd01451fd710d6a6a22b17521e75df967fded023eda5052dd6c149c21094333c776215a7d70dd7a63fe61dc39e273a7ce0fae4ee76f0dd575217
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-for-of@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/33edde05f4995dede981ea69ca85f335ddf12b71844176401b469b646beb500b11c342ccd4a5924507ec7b4379649d4b84f1edd2ec244be5f74a984c7a931fb6
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-function-name@npm:7.10.4"
dependencies:
"@babel/helper-function-name": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/17a821407ea5a478ad6b1a27cfa6d24022dae65527e3439557a42d692da6aa12b0beb8dbb6bd6f59439a50ae792a9302e8615dfea741cb5029bb70b5fe867712
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-literals@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/722e459cb45a31a142bc42b5a00c1090c410673feec2f602d6df6adc79f516fed66298438ebfa86e7e9bc3552d72b29c39e3438b00d1184f32b755d8e83eabd6
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/2546ed9a7db5d985cc49793f72dc48a270fb3ba61907cbc9f854407987abc1fb0827141e4d049e7056ccf0b71adb39d3b3cccb7b131cdb692cb73c21592b475f
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/plugin-transform-modules-amd@npm:7.10.5"
dependencies:
"@babel/helper-module-transforms": "npm:^7.10.5"
"@babel/helper-plugin-utils": "npm:^7.10.4"
babel-plugin-dynamic-import-node: "npm:^2.3.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/eef22281ace47a5c1bd030ca600f59fbb91fcc6c87e8b835080421fb8e02436e5c03257a7aca408cba9a38a0135b8234ab08a86469b63a4ec6231e171f1256cb
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.10.4"
dependencies:
"@babel/helper-module-transforms": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-simple-access": "npm:^7.10.4"
babel-plugin-dynamic-import-node: "npm:^2.3.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/2ec2cd58b96cee5d5c915b3cde80376921552f1b7a46f5fc20dbcbf64f08a44b6308a1b7eaa8e845da4238cbcc39ba67766ced6674558035122b8833071f84b7
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.10.5"
dependencies:
"@babel/helper-hoist-variables": "npm:^7.10.4"
"@babel/helper-module-transforms": "npm:^7.10.5"
"@babel/helper-plugin-utils": "npm:^7.10.4"
babel-plugin-dynamic-import-node: "npm:^2.3.3"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/f279849b29dd5fb085ff1b151f7b4998b641f45f6a742dd9f9d155a948ddbe725a63b26f765486a057c813f3e4528c89bb2584380956ce14859f4fb40da40107
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-modules-umd@npm:7.10.4"
dependencies:
"@babel/helper-module-transforms": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/a8572138339a7b8cfbb49c3df657cb81d12d8fd8c21f06919d7f7601cb1f9b86fb44ed3b24b59811d2e2d6da95d7bd277e2fb2c6193f9f0ad0c8512d7b619ee3
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.10.4"
dependencies:
"@babel/helper-create-regexp-features-plugin": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0
checksum: 10c0/c07a3b141888e2d066e62a16e1362a4ed5614417a00b7c6877d398dc67257a69674a53b58debe593f93ea4da3a787d482f4c798248690b3622fb221402de9f41
languageName: node
linkType: hard
"@babel/plugin-transform-new-target@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-new-target@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/b22f2b86875a2f861570eb72d5d8e48c3ebf6da9c8a2a553b5b618933b6205146afe99fd0520e464fa967c6f3862f59c92fb395b559b83c71ab4ca483033faf0
languageName: node
linkType: hard
"@babel/plugin-transform-object-super@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-object-super@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
"@babel/helper-replace-supers": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/a35cba5fe7ee981757c14ffc105a6d5c3da37c2dbaef1b63ca6277a89879d3fcf96e79f4a55c9b7355a5798f1c480adc28df54c01cc447b2384099e8895b916b
languageName: node
linkType: hard
"@babel/plugin-transform-parameters@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/plugin-transform-parameters@npm:7.10.5"
dependencies:
"@babel/helper-get-function-arity": "npm:^7.10.4"
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10c0/550b72c6c0d044d06473d77c156c6b0bc5fda10610a1855eda3880bf5b2ea4ea34f3e4e6d442283a1dcbcd9f3cc59b1c173244b861146957f3c78c3b0cf9cc8a
languageName: node
linkType: hard
"@babel/plugin-transform-property-literals@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-transform-property-literals@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0