-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyarn.lock
14767 lines (13320 loc) · 506 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
"@artemir/friendly-errors-webpack-plugin@npm:^2.0.4":
version: 2.0.4
resolution: "@artemir/friendly-errors-webpack-plugin@npm:2.0.4"
dependencies:
chalk: ^2.4.2
error-stack-parser: ^2.0.2
string-width: ^2.0.0
strip-ansi: ^5
peerDependencies:
webpack: ^4.0.0
checksum: 61b8c968c09af603bf520be50036b1f60afe4587f1c2f666a0e9b5a22b7c0289b38a0d7c29f3fceeaa60c38acb5af9bc203ead2782ba648c90fe034da1776a29
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.5.5, @babel/code-frame@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/code-frame@npm:7.12.13"
dependencies:
"@babel/highlight": ^7.12.13
checksum: 471532bb7cb4a300bd1a3201e75e7c0c83ebfb4e0e6610fdb53270521505d7efe0961258de61e7b1970ef3092a97ed675248ee1a44597912a1f61f903d85ef41
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.12.1, @babel/compat-data@npm:^7.12.13, @babel/compat-data@npm:^7.12.7":
version: 7.12.13
resolution: "@babel/compat-data@npm:7.12.13"
checksum: ab32dd78b7cb3c511ca557ec042763007cea6d2419dbf76d2716b7d5184b6f3e9c60e2fb4124ee69a0a4b78582e41a6e83330e99b969843d6daada427fecb877
languageName: node
linkType: hard
"@babel/core@npm:7.12.3":
version: 7.12.3
resolution: "@babel/core@npm:7.12.3"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.12.1
"@babel/helper-module-transforms": ^7.12.1
"@babel/helpers": ^7.12.1
"@babel/parser": ^7.12.3
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.19
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: 110eb092da34c8061db81647d3110e72438a805418195238ac0bb5ab5aec0fa9be9a1ce6350d442865254e088c7ee6edafafc2fbb72f105eb70414ac211e0995
languageName: node
linkType: hard
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.12.3, @babel/core@npm:^7.7.5, @babel/core@npm:^7.8.4":
version: 7.12.16
resolution: "@babel/core@npm:7.12.16"
dependencies:
"@babel/code-frame": ^7.12.13
"@babel/generator": ^7.12.15
"@babel/helper-module-transforms": ^7.12.13
"@babel/helpers": ^7.12.13
"@babel/parser": ^7.12.16
"@babel/template": ^7.12.13
"@babel/traverse": ^7.12.13
"@babel/types": ^7.12.13
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.19
semver: ^5.4.1
source-map: ^0.5.0
checksum: 87b621eb25d1c96adb95a4f019659d856aa6c4a45ee3ad234fb8066b1ff40ef9ae0052dcdba549ae92d1505207f1c53203b3e410bdadddedaecd1e45fb1172f7
languageName: node
linkType: hard
"@babel/eslint-parser@npm:7.12.1":
version: 7.12.1
resolution: "@babel/eslint-parser@npm:7.12.1"
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: 4037a62f6a67fbd93a9413312d7365bf9834bd3461f397341bb5460ed57305220093c3023b42e54e7ddfb4d21298b6f29866828173215b41029c12d885ea338e
languageName: node
linkType: hard
"@babel/generator@npm:^7.12.1, @babel/generator@npm:^7.12.13, @babel/generator@npm:^7.12.15":
version: 7.12.15
resolution: "@babel/generator@npm:7.12.15"
dependencies:
"@babel/types": ^7.12.13
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 243c7c8987b9720d7cc8ecec165f69fda4159bb3ab19d3f09a4d5c6d35644d3b62293903aab0ae1f34dda61e39094bfea604d88a035e9f9ec485ffde636a734f
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.10.4, @babel/helper-annotate-as-pure@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-annotate-as-pure@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: e82f457eb92080bba1e0d59386af32596fdf7aa3fd5aa557ef7fab2e1833f45c8818873f135294ee95210856103ae10a6e86789ca72e259a98ee8b6745e70319
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.10.4"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.10.4
"@babel/types": ^7.10.4
checksum: 369530a1971c92d09bd3fae3387bf752abffa9a1f285ab55f45cdf0ac9a2e8ed1a28cd4dc31b0d5672ee0aac91435e3fdcf1196f67870ac0f9a768e3d9295d60
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.12.1, @babel/helper-compilation-targets@npm:^7.12.5":
version: 7.12.16
resolution: "@babel/helper-compilation-targets@npm:7.12.16"
dependencies:
"@babel/compat-data": ^7.12.13
"@babel/helper-validator-option": ^7.12.16
browserslist: ^4.14.5
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 3eadb8722a1037a76ad98cabbea306f6f50f2de3f3116bed3d4a3e0cfc919fd5acbfd4eaf816a732be8477b27c45233071c013a3beadf9b3de1950835a37fbdb
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.12.1, @babel/helper-create-class-features-plugin@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/helper-create-class-features-plugin@npm:7.12.16"
dependencies:
"@babel/helper-function-name": ^7.12.13
"@babel/helper-member-expression-to-functions": ^7.12.16
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/helper-replace-supers": ^7.12.13
"@babel/helper-split-export-declaration": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0
checksum: 535bdbbde5f0d6d3cf1297126c30606c7915847a9a576dc33384ce5d7bbc41a3a94cde458bfe4cdc19539c0fbb11344f84ebe96ae5fd94034a32382f054738ad
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.12.1":
version: 7.12.7
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.12.7"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
regexpu-core: ^4.7.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: cd9907f4e5fc41bbc780cdf870b3ebe0680f0ee5624f7f468b6ebecce9c5ae845eba2bfb68506562f2b5eb6f24f3a0fc6e55b001addeba8ca0c334b04b7de1dc
languageName: node
linkType: hard
"@babel/helper-define-map@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-define-map@npm:7.10.5"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/types": ^7.10.5
lodash: ^4.17.19
checksum: 964cab640de84daa572d75e07216cf9d1aeeca3552acec0516d3aa10533836741f7391ab957e8b22624bd6b25473d8bd53f4b8d4af8713871601af02d31072ae
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.10.4":
version: 7.12.1
resolution: "@babel/helper-explode-assignable-expression@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: cb3b265727e996324cc722e50b6ced468e4a9efced1ed0cd1b31ea7726ec1fd23f5b21dde37bd70ed30fe8870c1179ce1bb384a62b64fd72e66bc02eddd7712e
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.10.4, @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: 25f03f303be790618437dc49c6df758d362112a564361d2eae66b58fda4f5ec09e62875473b18090b939c8d3d60b36aa7c9f688768b7fade511512d02ac9d3d0
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: cfb5c39959ea9f1cc21ee0f4a23054be66a615fa5392f25763ea98f0c690a5b47500af9a63f28a42a2fb3f699684c113c45a95c4ce6303dfecb3358e32e56c76
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-hoist-variables@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 0bc1976366e1535920ac46ecf89700a738bb38f1413ca42f1bc11bef708f297f011078077355dfe81b3e5af8ef696c5fb752408d6b65f85c71839c28ce95afaa
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.12.13, @babel/helper-member-expression-to-functions@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/helper-member-expression-to-functions@npm:7.12.16"
dependencies:
"@babel/types": ^7.12.13
checksum: d4c86c2686343013a4cb1e67085293ec18cd9b5797d8bd97df51250ff55ea9cf111a62dc721c346ada33c05315cbd69f7ab880b1d5d513e9858e000b70d86845
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.12.1, @babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.12.5":
version: 7.12.13
resolution: "@babel/helper-module-imports@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 9832436fb44361b2d7a0b7d99f18b7c0529afb94202ab92b578147aba062447e9a1cff33bc95db33189686fa922c62f23da296870958eee2f862b3aa89809159
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-module-transforms@npm:7.12.13"
dependencies:
"@babel/helper-module-imports": ^7.12.13
"@babel/helper-replace-supers": ^7.12.13
"@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.12.13
"@babel/types": ^7.12.13
lodash: ^4.17.19
checksum: 4cbb439f3488af62f429c69fc6e597d7f5c9d8587847e19c14ce45d976cbbaa684e54e23e91358615256e76bf2f63598265cdc95b3590443a61a16eb0b27c673
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.10.4, @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: 5e4df5da4a45d7b7c100307efdc11f9fb460f943b4db1c60ddbdf57c3a7cbeecc8dea8980f4a9d4f3c38071b04d0e7c95af213229bcc1c13f17eb7293a6298a9
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.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/helper-plugin-utils@npm:7.12.13"
checksum: 9cdfd7790c30ed1d538804544a2f82848533e1532670c8615befa20827332d82810b582035c3e67bba86adccaa7290b981fa31cc5e2881bb346b8ee5d69b1ed6
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-remap-async-to-generator@npm:7.12.1"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-wrap-function": ^7.10.4
"@babel/types": ^7.12.1
checksum: 8bc24e91f106edd627f60ce416a20c4313caa6224f778a81b8ab56612c0ba2e84be403996f449bc8d0132ab47bf8a21a9bc66faea95643e0a50843807cd4591e
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.12.1, @babel/helper-replace-supers@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-replace-supers@npm:7.12.13"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.12.13
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/traverse": ^7.12.13
"@babel/types": ^7.12.13
checksum: 1a433f4e4b0a1fc7fbcf4884a12abd75873269f8978c66a72a63e5ba83614c2208851111100d0dc25b9f3bc15e244356810b581d3e8b8cb2c11f8c42f2673400
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.12.1, @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: 34f19da4b8129006d660ff6d704d493a447852268a1360727a7de32087c7cead4c2548a3bb73c8fee7afa2dcad85087d53f9b0cabe071f3bf5cc27f35de9e7c8
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: 2e690ed5659534f46387bde713d7c511865a309c5cd6f1d64ff94abdb64fe2e4d5e6cb6ed6c9856cbb16e9de60ecac86534b9d1eb93e877830442610889f6144
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.10.4, @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: c8d529558c45855542b7094de7b08e6c6de34922037a71596545dbb7a3be6ebf61b8b3193afe85fa5c9c35bcb0cc94110866deab8028f73e500bdc62427532c9
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.10.4, @babel/helper-validator-identifier@npm:^7.12.11":
version: 7.12.11
resolution: "@babel/helper-validator-identifier@npm:7.12.11"
checksum: 18de432203264b501db2690b53370a4289dc56084f5a2c66de624b159ee28b8abaeb402b2b7584296d9261645d91ddb6bfd21125d3ffd9bf02e9262e77baf3d2
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.12.1, @babel/helper-validator-option@npm:^7.12.11, @babel/helper-validator-option@npm:^7.12.16":
version: 7.12.16
resolution: "@babel/helper-validator-option@npm:7.12.16"
checksum: df6c04030ac3ed5ac49f1eaf5a25b3c86b5c4e1bbb290c595fe1b4b6729976c37f05110b925c03e1450e00adcab70fa1896f4acbbe7b52ac8f7b870917aa163f
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.10.4":
version: 7.12.3
resolution: "@babel/helper-wrap-function@npm:7.12.3"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/template": ^7.10.4
"@babel/traverse": ^7.10.4
"@babel/types": ^7.10.4
checksum: 4731c4ec0e7a255090cb891a986e6d14635730d1598c9983d8b5c0eab0bacb74cbc4f363c7e7e6dea88c4f3ab4a65970665ac751e656ded202c3609f49a033d3
languageName: node
linkType: hard
"@babel/helpers@npm:^7.12.1, @babel/helpers@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helpers@npm:7.12.13"
dependencies:
"@babel/template": ^7.12.13
"@babel/traverse": ^7.12.13
"@babel/types": ^7.12.13
checksum: ebfde3ef2a0bfc4df4a16d51af655bedcb4aa1101f2e2c6f3942a072ee5bd2e53abe2193434c8993379ac480cc4fb2af91d42bf2b8bf0fb5c60ffa40d8162999
languageName: node
linkType: hard
"@babel/highlight@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/highlight@npm:7.12.13"
dependencies:
"@babel/helper-validator-identifier": ^7.12.11
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 83a3a2cc961b9e17fb75bd57ebf90cf07be6ec4263d74b60c435c28bcb045c474f0162eaa921ad7b44429d7624ec49b41cae416e475d3f747ccda678be1f7a8f
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.13, @babel/parser@npm:^7.12.16, @babel/parser@npm:^7.12.3":
version: 7.12.16
resolution: "@babel/parser@npm:7.12.16"
bin:
parser: ./bin/babel-parser.js
checksum: 437970f6cfbe5ffbd1bcb316c3550e5ecd0003a525bf16f3c15ceb4105a6a3db22389c84c37a6d2b266e222dc92a05c25cf268bbeb937b496d9a48b8232c273f
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-remap-async-to-generator": ^7.12.1
"@babel/plugin-syntax-async-generators": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 59f8c4e46900f8982507fc2bee65a39a831469e1ed7862af8b78c4244386c5bb0eaa416c30964c30e64c0ca24abd5e39b900f83686b4e86c45db07263bb6a629
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:7.12.1, @babel/plugin-proposal-class-properties@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-class-properties@npm:7.12.1"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 690cbec3df2c4a1ec12c8a99b87dd4cc9aee07627dea957031549997267ee6ce59727ba44266dd83d3c6fb4cf759d14017ad9a530bf3d8f4447780947031449a
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-decorators@npm:7.12.1"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-decorators": ^7.12.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 148c01c4ce42efc033c5c307c4de3aa32b3babd0e06b4fab03a116ee370614e1e5b82f0b92ae6e11842cb0a759db25a1daa3214331ffe5055323c7b2fbebb7c0
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-dynamic-import": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4428439b483912c898d70a858f86e48f28247f55b05f4ca4ebc1f6746e63cc73e2704ed85c8fc65f2761154f4fcfa08220ac413c9edd5758d1ace03b4dcd4551
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ae5317ca008cc9eb2890b1f238156fbb990e5030fd1b7f123a5d11d89f8617a867b11db129aeafe51ef3bb4dddc4059e8172ddf99e8cdc42cbfa2a45dce1a16b
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-json-strings@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-json-strings": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fbe4f3241c3edfb432138745657386c049cde9c39fbe9cb86f2a6ec10809cb4aafebf3f78b351bae3acf2cffca6cfd319d26d8c899c50b4bd7a39675ebb57f6b
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 08af656aaa40c554ba079c5b6cae9fe9dff95cf817debcbfc2ba5e7b7e051d6b2b04aa727d4e77404ea147758e513da7be8b35626e8053f50caceeaeff8f9763
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9c825901a13aa52330b7ec44f2b6355112d9e2dce9f3e0230c66a7536d542424d19a08b797cd72a00c18fe2e11b1d4037b365012eddfe69c169500b02ed83964
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.12.1, @babel/plugin-proposal-numeric-separator@npm:^7.12.7":
version: 7.12.13
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-numeric-separator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d0480be4c7cc4f7c98bcdfa541cc25d878e70f9f1d37097b9846f1ff8e48756b5015f0f230b794c1b808b4e064606d074c53cb12875111ad080b9d30d2e2adf5
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-optional-catch-binding@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-optional-catch-binding": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ca8c20fb7371a3e16d48d9989ec8c3a38eb46354dcd2edba70231fcb0959967920a01c9dee768f21e715ef679c4d2b10b9f04499655f719228e753e2d884e3e7
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.12.1, @babel/plugin-proposal-optional-chaining@npm:^7.12.7":
version: 7.12.16
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.12.16"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/helper-skip-transparent-expression-wrappers": ^7.12.1
"@babel/plugin-syntax-optional-chaining": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 599e90b1196d6f04f4b32b3f579c1a3f63c4d4ec3a67c738eb613bd97505367f27714c74ee8ec399d8ec613951695ff38d0895c1127a3594b53cd7c0d03073fd
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-proposal-private-methods@npm:7.12.1"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 350a1a8c3df47096fe37f455f6fcedd185f514a72e3aa01df8a773fb4cd86370a34f3c14cdecf0dda609c7715061ebde87563a21ceccf9f5846d1b38dd97b2cf
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.12.1, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.12.1
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.12.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b960b8c1af6f8420e0ae1107f5af00ac954a322117428330585230b3b28c0653be80d463d6c3c18fe629fd2f7439ecbee635c9d5a1867da58331e744b2613f90
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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 39685944ffe342981afb1fe3af824305e94ee249b1841c78c1112f93d256d3d405902ac146ab3bad8c243710f081621f9fbf53c62474800d398293c99521c8ef
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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8c9b610377af48e1d8ec0d5ad5eec5e462fbc775b20f367e0ebc2656b98b4cc73a952e8b5ab8641e6de0d04923f3843dd73ce00a71ef5cac9940822ff776c8ec
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.1, @babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b5e354a0cd18f67f29e59cdaa80f9e50839ed9d3d8e1fca2964431fa474d08c3ca4cd1f61d0bcb577e8451c541e45e0e702e6feca5483ecd4e265ef5a0b70d42
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.12.1":
version: 7.12.13
resolution: "@babel/plugin-syntax-decorators@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6a07456fe84979ff1417cb14db464827c361d685472ece866eed188ef4c4a4d926cf66d904e1d9c194081e10daa68656d19a18bf8759ac608bfd71be242f5de0
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:7.8.3, @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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 134a6f37feac0e6d55f8188232e11798ccf699b02d50a4daf9c040f52a22ee32923a6a979443ecc865f4014937ffe67ac11b81aa5668b6792238c647314f41c9
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-flow@npm:^7.12.1":
version: 7.12.13
resolution: "@babel/plugin-syntax-flow@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: de8845354dda62b7857a518a54f85bf30809ed1d7cc5ace93ced6da16d095cba78487d18651f1b2277db58d8e749cb910c703f96529af198369226e374df5f73
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 685ee8f0b5b675952e02e1cabcde4d92638918a66ed515b2663e2e0b2246210a0768325423d5642f8687653a449357826675ccfcb712676be260a0ae13313828
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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1a7dabf0a4b264cb235966c4256aad131567eba20e41de731fa9127d371454a2f702e27fd7bedac65efb0df847e5cece7bcb5507a931604d1c2ecb7390adaa1f
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-jsx@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 00a832806d85aaf3e1ece466f207705a5c0cde29141f4a8e89281dc42feafe6e40233ec4b72aa4b33038647cffa5ebe151d061850250dcf5ee6d58bcf733bce8
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": ^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.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": ^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, @babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 47ae8782939ccc41f94b1d46b8b7a63363b003b8b7544bddae8dd454a8d51b38bbd4f9c26e91ecfb5fc16dc5f2228700e3030def63c5d07046073ec8fabc4665
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": ^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.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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f03d07526674ecdb3388e1d648ec250250968e13c037a7110e37d3eab0b82b07d6605332772afdf19f1831dfd3bdbbf0288a7d9097097d30b9548388ea693a07
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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2a50685d023bc609b01a3fd7ed3af03bc36c575da8d02199ed51cb24e8e068f26a128a20486cd502abe9e1d4c02e0264b8a58f1a5143e1291ca3508a948ada97
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.12.1, @babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-syntax-top-level-await@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9767e46ddc1add9133a21f5d6c4452e9a62f891fe1db5d8291f62f9036f9e697bc118adad43109a8740ac15769e9489d68d134b17cfe9f3bdf06d2c50c9c6dce
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-typescript@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ea2b4aad35c62fc66c9e1629b70ece2ac060550f2fd10c814d568946121ec0790690c5dc65c8888bc3b543e71691e553e2ed8becac769384484c27ae6ddcb21e
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-arrow-functions@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 602be39f30dd1937a2ff8bb40af594a150998d6914fae61421cbfb99cc91ab7dbb9bd156f4f092e789fa0a8c16034d3e0f663b25521561a63da219529d816506
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-async-to-generator@npm:7.12.1"
dependencies:
"@babel/helper-module-imports": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-remap-async-to-generator": ^7.12.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 96a48e5cbfb44f9d2a5d561ff96c9821a1dcb15c9b61d8cb7b0ba0f78ff21873f0e8f486075d5d75122dca53d87ae25f6743f04f4129ec912379127be1b4de74
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2da63c6b92d35928d51d2d9782b5fac6a0aef07051bed78eeb8b6d1a57260ebb830c68b8eeb374e169c49ffaa032e49a04fe468259cf1dd7d7010ef07b1251c9
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.12.1, @babel/plugin-transform-block-scoping@npm:^7.12.11":
version: 7.12.13
resolution: "@babel/plugin-transform-block-scoping@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cea49384ce946e14a4d8141cccadd09f7d9467964ee2df83e7f7e0c8cbd3ef1901125caf5a4013720539780647092ceb875cef214841126aa2e68dc05381f1f5
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-classes@npm:7.12.1"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-define-map": ^7.10.4
"@babel/helper-function-name": ^7.10.4
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-replace-supers": ^7.12.1
"@babel/helper-split-export-declaration": ^7.10.4
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ae895d1a201be7c038f220f49f00eb804cf5e2280199127469ce0962080574b9515117807c0f1c5d446df543b2fa8af1325d6bafb46aa4e6ecdfe1d30aae2047
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-computed-properties@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b3680b9c0327e55ae58b16e9f77cebc857a30fcda45b863750396ff46e1714b5d57fe55b57ef6552004b0e110d5b66c6994753fa45d658b13c245907ffb72757
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-destructuring@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 704057fa7c9107efd19615e111517377a75f9c52c518870779effa225a220ba9f77206d60574e8ff15bc8be32996f0c0d21c01bf4095c4ca04a18e0b194a1f75
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.12.1, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.12.1
resolution: "@babel/plugin-transform-dotall-regex@npm:7.12.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: dd522110c9a981194cecbf8dbb8b9c668b6bdbffdbb4e601db3edca35398d778a9d4bc26a60af5965eba1230fc960e9a7588c3b90db87b5f243bd29332d788d8
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a8c45815fb51048ac6b6f8fdad583b6d9d48affc9d00c9ef67b030e3262e12694d51b026db90dae26bce5420c8e26bc7ee663fea973c1aebafb4636a0ffcbd20
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.12.1"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9a01b9350660ea68318fa94c1486833e006f75bba236854e714662dc4f2674604b8cb377844fa45727f6a63fa3a379d10da9090f5f1cc6b95d59ed5e63f77c5c
languageName: node
linkType: hard
"@babel/plugin-transform-flow-strip-types@npm:7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-flow-strip-types@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-flow": ^7.12.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0c69d33f8a6b56c8643ed3bd9b0a117176a6b08d40ce0faf21782c57f4f1402e7e53e460dc6d114a9e48a248cbd0e07f8318e44a32f8d6217a5f3517d0f5f417
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-for-of@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d51761cecb966bcde390a9ecb9651679d9a8c96e5f74182066028d496abeda26091986f64817e34c8cb2895fb722e364dd875645ca35ec1d6bcd759fd37b8907
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-function-name@npm:7.12.1"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7dff23e9b56f4b2f715c5bbdb21388c67820c5a543344f01aaca580ce124fb6646d36786fb4e8a9ed550113b28946c559f4b3402fce8cffe0c8e124213bc1d0e
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-literals@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1bc7a828e06ac4484cd26b521a3ce3da221899fd1dbf747e353c5d560749160ac104fb505d1deaccb46dc01d5f6fed134577c14a67f1608d1522223e22d3cfcf
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2a216ee882d6046e2ccb949bf353c23f729f306a660139277b432c0cbe1db03e04cb9c0b03db86098799c705654a215dc9be714e22b91a8c238bab2c0ecea726
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-modules-amd@npm:7.12.1"
dependencies:
"@babel/helper-module-transforms": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0b22d7ccf3bf91aebc9a751bbb88f108ee553a047756dc5d83d34294561f94ee1f63cc23479eb2f17f34d118234143e8627c2a29beb14d151d04294721dd4fd0
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.12.1"
dependencies:
"@babel/helper-module-transforms": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-simple-access": ^7.12.1
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7201ad5f82f51f992e855909a99adc9dbade07146d86bd3b219fb6bc4111169adca4b082365365657f03ae025b5ce18d749125251a1aca111d06c2c647cfbfbe
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.12.1"
dependencies:
"@babel/helper-hoist-variables": ^7.10.4
"@babel/helper-module-transforms": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-validator-identifier": ^7.10.4
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f47d070edac6c064a7a86764885b84bdb62ecea6ca8a6c33ae8bfa516bf4f3827df0ec72c720d8daa8d376a9a1669e9a9be3f1d6576544288b709f0556a4c806
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-modules-umd@npm:7.12.1"
dependencies:
"@babel/helper-module-transforms": ^7.12.1
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9998266d1ea4eada5fdda84fddc1611e733eb75ff363419c7884827cbb3229bc0c14e7abfbb1436354102ce085175f9a850cbc7a2bbe7c1493021414da3127ba
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.12.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.12.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: 96eb5b35875d6065a934110bb04ce18feff437f085651c75cd64f32cecf3e87ac7526ff55b7592129bde3b1d61c9352da64fccd99baa6f5c58229bde67ab9d0b
languageName: node
linkType: hard
"@babel/plugin-transform-new-target@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/plugin-transform-new-target@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d3b9f4f0c28211d7e2cafe7c20691259da9ec8931d870154c46132a9b6e4dfc575caa76bf60684eff58f0da75423cebae1ecc8b53f35f93eab4ccdf68bb0f633
languageName: node
linkType: hard