-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
7794 lines (7002 loc) · 269 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
"@babel/cli@npm:^7.13.14":
version: 7.13.14
resolution: "@babel/cli@npm:7.13.14"
dependencies:
"@nicolo-ribaudo/chokidar-2": 2.1.8-no-fsevents
chokidar: ^3.4.0
commander: ^4.0.1
convert-source-map: ^1.1.0
fs-readdir-recursive: ^1.1.0
glob: ^7.0.0
lodash: ^4.17.19
make-dir: ^2.1.0
slash: ^2.0.0
source-map: ^0.5.0
peerDependencies:
"@babel/core": ^7.0.0-0
dependenciesMeta:
"@nicolo-ribaudo/chokidar-2":
optional: true
chokidar:
optional: true
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
checksum: 6259a752460c92685ce6c4d4a63f2010081add799388bce003b8a2278e9ce94fd6b470ab511fbab509da2034631539d030932059ca343b1a09433ed88032e91f
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/code-frame@npm:7.12.13"
dependencies:
"@babel/highlight": ^7.12.13
checksum: 471532bb7cb4a300bd1a3201e75e7c0c83ebfb4e0e6610fdb53270521505d7efe0961258de61e7b1970ef3092a97ed675248ee1a44597912a1f61f903d85ef41
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.13.0, @babel/compat-data@npm:^7.13.12, @babel/compat-data@npm:^7.13.8":
version: 7.13.12
resolution: "@babel/compat-data@npm:7.13.12"
checksum: a7165243d68ee4d3f22cddd431175678df9c01dc12c11621ba8a76af9907d922d68afaa9f32a05ce2b85e55895dd8ca5c9407a8ec72ffcda12400ca24714d15a
languageName: node
linkType: hard
"@babel/core@npm:7.13.14, @babel/core@npm:^7.13.14":
version: 7.13.14
resolution: "@babel/core@npm:7.13.14"
dependencies:
"@babel/code-frame": ^7.12.13
"@babel/generator": ^7.13.9
"@babel/helper-compilation-targets": ^7.13.13
"@babel/helper-module-transforms": ^7.13.14
"@babel/helpers": ^7.13.10
"@babel/parser": ^7.13.13
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.13
"@babel/types": ^7.13.14
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: 36b0d604078b735d8f248990b2c578cd73f5b691512175c45d95f0a3d841e11695f0816c8a4386a7ae884f5b5b865fcffe39d2105f6aa6065f261dda8c7f0313
languageName: node
linkType: hard
"@babel/generator@npm:^7.13.9":
version: 7.13.9
resolution: "@babel/generator@npm:7.13.9"
dependencies:
"@babel/types": ^7.13.0
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: d9cf7db910dd703a55c3ba147a8024564d51de06f5e3e61aef6ca197bcd80a6cb0a633fe4688c8c9f6226c70ee6f32a747050a8e420972b45cc98a6b3fc5ae66
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-annotate-as-pure@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 535cdf631e1e6c0bfd6820d2509c69373e2f48148505ddc2325ce8fe85302dc5681d6f6fd41261cacc458a0431edeff7c6115056144b80b02c10e111d2941c36
languageName: node
linkType: hard
"@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.12.13":
version: 7.12.13
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.12.13"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.12.13
"@babel/types": ^7.12.13
checksum: 38bd626f3893fa82267c9e5fa43353c897b75dc18259ffdc1c81b0fa5ac26284a4aaca465550fff14daed159f4d1502c4c95028740dacef1018d787d58173e2b
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.13.10, @babel/helper-compilation-targets@npm:^7.13.13, @babel/helper-compilation-targets@npm:^7.13.8":
version: 7.13.13
resolution: "@babel/helper-compilation-targets@npm:7.13.13"
dependencies:
"@babel/compat-data": ^7.13.12
"@babel/helper-validator-option": ^7.12.17
browserslist: ^4.14.5
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 2d77381d5fa0e488e86b2abbf5c299a6c1b0e490c95d3ca9a63fac8d45713a182a32fedabceb207588681ae09fc1c19c5418c26e686ae752d46102c9537f9ec7
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.13.0":
version: 7.13.11
resolution: "@babel/helper-create-class-features-plugin@npm:7.13.11"
dependencies:
"@babel/helper-function-name": ^7.12.13
"@babel/helper-member-expression-to-functions": ^7.13.0
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/helper-replace-supers": ^7.13.0
"@babel/helper-split-export-declaration": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0
checksum: 14da13eeb919216abd1f933a6ee0d7fab3a04899c091b6a4e7857be547249c0ac4e071689d97c2af5649e8688dcc99139039f74a500ca6728f9f7297a59e8d8c
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.12.1"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-regex": ^7.10.4
regexpu-core: ^4.7.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: bf4b72eaedfb09c15177d83ce31988b6eba0afffae1de51b0932c767affbe0091bc5306e22e2b5af1f12cd85a46fa13b324a7ec851e496b9b7cf7c55f5676780
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.12.13":
version: 7.12.17
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.12.17"
dependencies:
"@babel/helper-annotate-as-pure": ^7.12.13
regexpu-core: ^4.7.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: ffb4fbca4026ac733bc43e1e6751120fecd377476373ad6bafb3eb653431beaee1de1664293f9233921f96db56c489175c162b70002237f1dc235e12b9111a93
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-explode-assignable-expression@npm:^7.12.13":
version: 7.13.0
resolution: "@babel/helper-explode-assignable-expression@npm:7.13.0"
dependencies:
"@babel/types": ^7.13.0
checksum: 7379d0f0e9448da9c446c867413e23da7c17a5efa6e7dac8803d491b16c61854e8c1cc4f01c0c65030c0ae96542df7d3977825f834c70a3beef8016c3466c4fe
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-function-name@npm:7.12.13"
dependencies:
"@babel/helper-get-function-arity": ^7.12.13
"@babel/template": ^7.12.13
"@babel/types": ^7.12.13
checksum: 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.13.0":
version: 7.13.0
resolution: "@babel/helper-hoist-variables@npm:7.13.0"
dependencies:
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
checksum: dae64c4d490fe1721f3bde984297711e7009a9d595e275cf725f3aec0e2183eb3cfcff00bbb2823c4e3845c5852dcea99be0db339941ba9a3229fa6e0314afc5
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.13.0, @babel/helper-member-expression-to-functions@npm:^7.13.12":
version: 7.13.12
resolution: "@babel/helper-member-expression-to-functions@npm:7.13.12"
dependencies:
"@babel/types": ^7.13.12
checksum: 2c075f72e5bda1432c74484548272577485d45c4d6c7cc9e84c5d053eaa6e0890e93c9b018bab97f65cbb81ac04dd9cdca73d5ae0e94b03cfc00d10972b99185
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.13.12":
version: 7.13.12
resolution: "@babel/helper-module-imports@npm:7.13.12"
dependencies:
"@babel/types": ^7.13.12
checksum: 4d1d3364bec0820e50c782b5a5c81e7987c260c14772bc594ca8dbfdb3b6e43bd9b4e5071fd2a5f777c822dc7440781fa904f643e2069755db9ba5033cb2beac
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.13.0, @babel/helper-module-transforms@npm:^7.13.14":
version: 7.13.14
resolution: "@babel/helper-module-transforms@npm:7.13.14"
dependencies:
"@babel/helper-module-imports": ^7.13.12
"@babel/helper-replace-supers": ^7.13.12
"@babel/helper-simple-access": ^7.13.12
"@babel/helper-split-export-declaration": ^7.12.13
"@babel/helper-validator-identifier": ^7.12.11
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.13
"@babel/types": ^7.13.14
checksum: 576e86d0d41674e01703754a16e94495e424c7972f932e1eedb30206092b410b3659c0d0a7a06c61e024cee9b6020215db4732903ae49ebbd19d813feb0a90da
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-optimise-call-expression@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 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.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
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.12.13, @babel/helper-plugin-utils@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-plugin-utils@npm:7.13.0"
checksum: 229ac1917b43ad38732d2d4a9a826f87d8945719249efe1d6191f3e25ba6027a289af70380d82d62a03fc9e82558a0ea6f12739cbb55b64bb280d6b511b4ca65
languageName: node
linkType: hard
"@babel/helper-regex@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-regex@npm:7.10.5"
dependencies:
lodash: ^4.17.19
checksum: 956b9f22da2e996670b5f0b61450d3ed4efa462a5ebec5af7967da7a7759670a04ec4887152d43ea6b695c320370cac022987a9647d4caa86f0662605d7fc82f
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-remap-async-to-generator@npm:7.13.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.12.13
"@babel/helper-wrap-function": ^7.13.0
"@babel/types": ^7.13.0
checksum: d4211801d482dd4ad48273a7500fcdadc3eb71f44c4d647a3cf5fbe1bc7486abb011976e8842fb8b8374b50d64bae20639a1092e84c2bcd566dfb9f033151b53
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.12.13, @babel/helper-replace-supers@npm:^7.13.0, @babel/helper-replace-supers@npm:^7.13.12":
version: 7.13.12
resolution: "@babel/helper-replace-supers@npm:7.13.12"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.13.12
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.12
checksum: 38b79cb56a9a5324e32567660fcafbac4efae6f2c2c2ef048deb2d022476fc1c7acfda5ab841f7135d07b4f39e62142f9d253cfe824232030432c86f94d226f1
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.12.13, @babel/helper-simple-access@npm:^7.13.12":
version: 7.13.12
resolution: "@babel/helper-simple-access@npm:7.13.12"
dependencies:
"@babel/types": ^7.13.12
checksum: eff532a1572a4ac562c5918a409871ddf9baee9ece197b98a54622184d3b9e01bdd465597f27ca3d452e71638c913a14819cf261dc095a466032dfd92a88bc73
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.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":
version: 7.10.4
resolution: "@babel/helper-validator-identifier@npm:7.10.4"
checksum: 25098ef842e3ffecdd9a7216f6173da7ad7be1b0b3e454a9f6965055154b9ad7a4acd2f218ba3d2efc0821bdab97837b3cb815844af7d72f66f89d446a54efc6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.12.11":
version: 7.12.11
resolution: "@babel/helper-validator-identifier@npm:7.12.11"
checksum: 18de432203264b501db2690b53370a4289dc56084f5a2c66de624b159ee28b8abaeb402b2b7584296d9261645d91ddb6bfd21125d3ffd9bf02e9262e77baf3d2
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.12.17":
version: 7.12.17
resolution: "@babel/helper-validator-option@npm:7.12.17"
checksum: 9201d17a5634b05a6f3d561b95e73a4e4f9ba2e56c55cfc3b9a2a9618c4090b4b507720ac7a2e77209e68dc9bdc00a59b5ba7ad9ecbca3fb2c9217e814b7b5a5
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-wrap-function@npm:7.13.0"
dependencies:
"@babel/helper-function-name": ^7.12.13
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
checksum: 89426304e5409454fe3a5082becb434152820d04b3de0687c8478ea15248a646a1598bc725659dd22d7ae651558fae65f9c352914a3562a4e657ba28195fcea9
languageName: node
linkType: hard
"@babel/helpers@npm:^7.13.10":
version: 7.13.10
resolution: "@babel/helpers@npm:7.13.10"
dependencies:
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
checksum: 1bc93126957b51108080ab1aa24997a9a10d5f395de54621ce9df7825cdbce878ad9d26886c927c3d9bcfd75d24972037ed5fb904fcd83fb92e5c8f8628f6b40
languageName: node
linkType: hard
"@babel/highlight@npm:^7.12.13":
version: 7.13.10
resolution: "@babel/highlight@npm:7.13.10"
dependencies:
"@babel/helper-validator-identifier": ^7.12.11
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 8f23d3b728422713bfab45bee1e7584f2a3d2e20c9c4d6153312b898c82e776bdc5b1b2afaf9433fddb21d70417f5b477c0bb1a48613324fd761117e19a5702b
languageName: node
linkType: hard
"@babel/parser@npm:^7.12.13, @babel/parser@npm:^7.13.13":
version: 7.13.13
resolution: "@babel/parser@npm:7.13.13"
bin:
parser: ./bin/babel-parser.js
checksum: ae20be2d964cec7c6e8f1c8154b0b6457852a6269f957964b5cc7f39baa5b71dc733b9e88cc3f5b91de171f4c023d272040bf31065bef1573aa0e88dd0f3ee75
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.13.12":
version: 7.13.12
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.13.12"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/helper-skip-transparent-expression-wrappers": ^7.12.1
"@babel/plugin-proposal-optional-chaining": ^7.13.12
peerDependencies:
"@babel/core": ^7.13.0
checksum: ad0b508a5c3f3436ff0ff598b7aad63686bfe7f846b19c862c09397bc987ab9244b866204440496cf6d1b7ec07ea01a6fe95fd3067dbdf58ec48d9d4d4d9a440
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.13.8":
version: 7.13.8
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.13.8"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/helper-remap-async-to-generator": ^7.13.0
"@babel/plugin-syntax-async-generators": ^7.8.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 56610a31dcd26e8613a715dfd7ed2308ce6e3a8357325e3562996468104aae45c4780db373d8b12b659b56175e9ace2e078420838ae3246573499a5ab74b1632
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-proposal-class-properties@npm:7.13.0"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.13.0
"@babel/helper-plugin-utils": ^7.13.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c96bd172765edf25ec821f5b4d0620d26bd94f8a4cce9614458f7b3626d5ef8933b20cf031263fb4672ad1d5d72f3cd87fd65cc3c621846d179a1fb7acd65a20
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.13.8":
version: 7.13.8
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.13.8"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/plugin-syntax-dynamic-import": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 47ff82e3e3731f93a9e51a7f16f1807ee5fbd627df67b423bcf9bb206ae9230385d62c7310e41ec6ef732f01f0af81061bbbf5f6cbfe6b95aa8fa01571166c9e
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 831dcc6711b9181978a62a5955104ef3f23de0c9a6740af0ca7395153cd4d481665fd557aa178ac53146cdbf49cf95f3ab06e51f2c79343a69639ed09877f7db
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.13.8":
version: 7.13.8
resolution: "@babel/plugin-proposal-json-strings@npm:7.13.8"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/plugin-syntax-json-strings": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 54f950f8824e4dd1a9a8b621507e0b3764a5d3a3b816231c70fdc18be42ed7e500a73c51da19a7a7503a50bd1e7227d71edff0999c189c9b1c20c90525b84552
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.13.8":
version: 7.13.8
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.13.8"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e0bed6050b35e0b89fc4bbc8e934bafc14fec0192105c4ace15a244ba3d2ba2dc1bb682e9529328aa7350712c0fbde2ae8a3c4cd1b3ec04458eeb3916ccbea49
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.13.8":
version: 7.13.8
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.13.8"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 19c0e20a9d3fb3fc689432c87ce53709220a6556b633396f8a35b3c0967b4a32f200805fe5602908a8ca2130d531769ba321ea61d0361c82b99ccf87dea356e5
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.12.13":
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.13.8":
version: 7.13.8
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.13.8"
dependencies:
"@babel/compat-data": ^7.13.8
"@babel/helper-compilation-targets": ^7.13.8
"@babel/helper-plugin-utils": ^7.13.0
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
"@babel/plugin-transform-parameters": ^7.13.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e560572e0090a229596e9b42e33f6767194bf3f1a410757286cd55d2bdc7de7a0b073e888089f4b0a81d25f6cca1a249442ea7daf1a0ef0fb89810c7440091e5
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.13.8":
version: 7.13.8
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.13.8"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/plugin-syntax-optional-catch-binding": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a91f361d3df099b79206f11b55800a8d4974c6b63d26a2af841da79e8ee7636383e650bb016198e35cbc5d9e9bd70189cc1b84702b12111165ebd27e0be7d998
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.13.12":
version: 7.13.12
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.13.12"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/helper-skip-transparent-expression-wrappers": ^7.12.1
"@babel/plugin-syntax-optional-chaining": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8663cfbf5cdfe41f8765976b94de9525c223085d53bb48bd481a03539a7680f2aa3b3fd525d80144e1c1c646cbad817fea7ef8da573bbf0600ddde32fab7420b
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-proposal-private-methods@npm:7.13.0"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.13.0
"@babel/helper-plugin-utils": ^7.13.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cc074c97ae3b1446722a2c4735d8bee188aa4f5ff390929a85e766cac006389bc254f30dcbeea93e869cf632c7096f808b830f73cb6e2743cda5dab8905fccbb
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.12.13"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4877865ea8482c467e7ba527014e346680d7e391a4f426e398d738fd1ce33c28f97012a07d1d47103e678e78c26a21961bc59719bfef2a295fb087c761e09988
languageName: node
linkType: hard
"@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.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-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-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-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":
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-top-level-await@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-top-level-await@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5bd0a65b01a39e5636169f830ade7511d046f2db63831e226fa99139d97aa30ee6958ac04a1e114954ace8c64875269fc450ed3304a4204f4be82c1b8aa21be7
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-transform-arrow-functions@npm:7.13.0"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 26edbba649037ff59dbebba9479e7598c69b108200e1e6f39650ef9339d73d595d62716f45b38caac211800134f3ebba7960ea5bf4f43d6143cd9518d3f5c697
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-transform-async-to-generator@npm:7.13.0"
dependencies:
"@babel/helper-module-imports": ^7.12.13
"@babel/helper-plugin-utils": ^7.13.0
"@babel/helper-remap-async-to-generator": ^7.13.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 32d484b30f658c1a9470305c6db04f5297ebd20e83486cc596cc52253b04fab7b75c1fe0fceef271622b91e61321906c94d37d1913dfacb7b5396fd6a8979de2
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c914fa2874ccee83a03d5323dee942b90b42a3ff57fa92703ffc14e9c3feabccf30225766db2977bdcde49c487118f1e6bd19dd284a97a527f8fcd30a1003933
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.12.13":
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.13.0":
version: 7.13.0
resolution: "@babel/plugin-transform-classes@npm:7.13.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.12.13
"@babel/helper-function-name": ^7.12.13
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/helper-plugin-utils": ^7.13.0
"@babel/helper-replace-supers": ^7.13.0
"@babel/helper-split-export-declaration": ^7.12.13
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: dffa76e8ba757cee8c031ab40aca14cfcafae9c329db1bf82977e7f20fbb3ce1d8c625666ec4ec75baf1b95c7f3bc72d014a1437b7d0cafaa08f1fd9ed0695e6
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-transform-computed-properties@npm:7.13.0"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 83d9d2e776c8617ba53d562da6d8fb859902158115c600f7abeeb9cea2b949a1b71883d8003698093c758cee016b1194af14b7af7c983c39f3fb669550f0cf55
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-transform-destructuring@npm:7.13.0"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4c9640ac1571b7c82caa6ffd99e8269c532d85ee375e9ebde2211d4ace9792b5def42d48cbeed037519e838afdb871ed90064ad6f59ccd714722d3d2405be022
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-dotall-regex@npm:7.12.13"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cd33e1adfb1e081468dbf72bbfa310490abafc9a4f87d50b1d084c10655669494554d0e2695578954e710642b52e1869916680fa90e4caf8408ffa507c99d4d6
languageName: node
linkType: hard
"@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.13":
version: 7.12.13
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7565f2dc697006edcfe50c02f2c0f18c71aa9e4c68dd2d3b663781054e680b70c78f616ee1a2c2349099797175e426d6d6086f3cfbe547fd4f0adfe9e3c3f9fb
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.12.13"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cbe6a6bb2b9a54c687e9364c876afb31f75fa21b1409a78bb7f405100a082f7dce5255d2cd2937c8b0d2c6040b9a10c67ed80a98b4684eee0b939c9d2c65b35a
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-transform-for-of@npm:7.13.0"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 86f725a86084f9ba9291a67c25c4e9be1555cf690fd28a5bfb75d2d694d39fe0703beb551f7d0608b03a16bb3c863e8672c00f0723f116dec6573b4a4c0d1531
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-function-name@npm:7.12.13"
dependencies:
"@babel/helper-function-name": ^7.12.13
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 26b8af8882dc7684e124ba88494cafbdf8252768eac351b0b7913578dee4e906a8ecc7c1cc2d53ae5c6f1e241bfbaede40cb28d38d4312770b22842bdd7943cb
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-literals@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8dbc807354a81339a0161676c3daae619277797a7181b94bef013360aa3d6003603717cf2380aa6ee062f75f39e69a36803bdd3b39c530ebbca368cf7b8dc0d4
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d8f20320680c042cde2a6328d002e924b3e8fa6ff481d5002a331146a5a092e5ec0797a7c63de4ee1de9c2731eba2f7da220a29f9bf83673f6572d28a8b5bd6d
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-transform-modules-amd@npm:7.13.0"
dependencies:
"@babel/helper-module-transforms": ^7.13.0
"@babel/helper-plugin-utils": ^7.13.0
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f6251627aecab324e57d2f331e11a7dc6c6d9165b0f54f50c3ea2adfd05fbfcbc0367e519cc54e71c8256d88e899f505bf25d78511db4d7af8f5957a4d7844a9
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.13.8":
version: 7.13.8
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.13.8"
dependencies:
"@babel/helper-module-transforms": ^7.13.0
"@babel/helper-plugin-utils": ^7.13.0
"@babel/helper-simple-access": ^7.12.13
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a20eb54e966231d1e6eb773aa2421f6aaaf4497b3541c5b9c34f83d7163ae240309f955b236bce3ad2356ddb9415384323eb93fb6644979fdff964b39d877825
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.13.8":
version: 7.13.8
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.13.8"
dependencies:
"@babel/helper-hoist-variables": ^7.13.0
"@babel/helper-module-transforms": ^7.13.0
"@babel/helper-plugin-utils": ^7.13.0
"@babel/helper-validator-identifier": ^7.12.11
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4d654938e59e5856bda301e35d07085b481a5cfb454a50c14e0be258232165cb6b8e3e4684125dcdf30ba58a22d5340e112bb082cd25234d5fc4a5b0a8778c60
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-transform-modules-umd@npm:7.13.0"
dependencies:
"@babel/helper-module-transforms": ^7.13.0
"@babel/helper-plugin-utils": ^7.13.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: efc00d0e18e91fd01853c1b88e3f79b317ad56854090aaf017bf0a4435e9112794252622348bd87baf2b13b1889805d29e7e654150929ac6793e550d2a529755
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.12.13"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0
checksum: 67680cf0b171040eaf42679c6beb3ea264bfde31ecb7cc1d9f06bea3bb85e2b90b8d96f32c5e8f5995a2f4ac64a185c380531bd10c3d4e5c14ea773c6102d4e4
languageName: node
linkType: hard
"@babel/plugin-transform-new-target@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-new-target@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7f72f3d80a1764258203e5e0298abab3f323c108dd3d026d0eb8f40eb361b3344027489f5e6dbcfeff2ee9065ae3eed678ec852d6ab8fb91bcbd1e89ac829808
languageName: node
linkType: hard
"@babel/plugin-transform-object-super@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-transform-object-super@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/helper-replace-supers": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: abcba36ad6ae028ac008e71195dd7fecabcf5e9a5d9bcc736cc8cdc5ea2bdf0acae78562f18d6619cd551238520b1d1997f3d85d03508a91372379352dd66a4b
languageName: node
linkType: hard
"@babel/plugin-transform-parameters@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-transform-parameters@npm:7.13.0"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f23977501cac4712bb0fdadc5e5c394d69ca67a111e337dce7c2e92e3bf2cd47fe23f7b5a316c0b175e14725c7554b8c044bff8af690a6188e80b16ae7a10935
languageName: node
linkType: hard
"@babel/plugin-transform-property-literals@npm:^7.12.13":
version: 7.12.13