This repository has been archived by the owner on May 11, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
yarn.lock
24966 lines (22540 loc) · 843 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: 8c0
"@actions/core@npm:^1.2.4":
version: 1.2.6
resolution: "@actions/core@npm:1.2.6"
checksum: 23206c718a0fa2cc9e7fa08e3b11bc24631131746f6c306a21df8cfd663360c1021afc713d4f1c22cf7f97fb55b202484678032f685fa71d5d958a5279d75d4d
languageName: node
linkType: hard
"@actions/github@npm:^4.0.0":
version: 4.0.0
resolution: "@actions/github@npm:4.0.0"
dependencies:
"@actions/http-client": ^1.0.8
"@octokit/core": ^3.0.0
"@octokit/plugin-paginate-rest": ^2.2.3
"@octokit/plugin-rest-endpoint-methods": ^4.0.0
checksum: 190a5db09e210bfb15dcc95079b4c32ceb021f96b6008095f71f3747aab47f003510f2e08a663a0a5bac61b418d42ef3f70aea8c1a06080d32c5bf701a5b2bb9
languageName: node
linkType: hard
"@actions/http-client@npm:^1.0.8":
version: 1.0.9
resolution: "@actions/http-client@npm:1.0.9"
dependencies:
tunnel: 0.0.6
checksum: afdd1a8c103f139c409a6bdc76ed375c7b32cf5557e13c688dcddeaaf804019433f2ab1d2b6e1cdfe4715b27440beef019dcd1242296c6c9575fb748868390e4
languageName: node
linkType: hard
"@aduh95/viz.js@npm:^3.1.0":
version: 3.3.3
resolution: "@aduh95/viz.js@npm:3.3.3"
checksum: 619b5b6fd8f7399eb7923672100244d4f52851aabfd0c28d3829cd18e44ba364c888b75dcb32ea492eb41b86da51d28150df7ec9cdfc1e253aab7daea9f4e312
languageName: node
linkType: hard
"@babel/cli@npm:^7.12.10":
version: 7.13.0
resolution: "@babel/cli@npm:7.13.0"
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: 80a736b19c096c827922112b8cb073625620d8c14cf56d9f01878658e27a7dcde9d5a4615f69899c12105c7656eb962a891e14fd17733e9128169608bd19c0f9
languageName: node
linkType: hard
"@babel/code-frame@npm:7.10.4":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 69e0f52986a1f40231d891224f420436629b6678711b68c088e97b7bdba1607aeb5eb9cfb070275c433f0bf43c37c134845db80d1cdbf5ac88a69b0bdcce9402
languageName: node
linkType: hard
"@babel/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 836ffd155506768e991d6dd8c51db37cad5958ed1c8e0a2329ccd9527165d5c752e943d66a5c3c92ffd45f343419f0742e7636629a529f4fbd5303e3637746b9
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: bc966d2d7900c54009c6abb472548390d405601c09ec91ee7a0fd0e503e51c407e5bb5adbc656c3052b7944631c4f599908e6efbc8e59ce62166e285a15f97be
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.13.0, @babel/compat-data@npm:^7.13.5":
version: 7.13.6
resolution: "@babel/compat-data@npm:7.13.6"
checksum: 88187017a28589e37049886545b0264d54a1d4a9f0a0c7be95bd5b62dd518a9bc338f8c1c81cab42552179d3bd320582e3848836d3575ddbbe2222622d9e7a02
languageName: node
linkType: hard
"@babel/core@npm:7.13.1, @babel/core@npm:^7.1.0, @babel/core@npm:^7.12.10, @babel/core@npm:^7.2.2, @babel/core@npm:^7.7.5":
version: 7.13.1
resolution: "@babel/core@npm:7.13.1"
dependencies:
"@babel/code-frame": ^7.12.13
"@babel/generator": ^7.13.0
"@babel/helper-compilation-targets": ^7.13.0
"@babel/helper-module-transforms": ^7.13.0
"@babel/helpers": ^7.13.0
"@babel/parser": ^7.13.0
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.1.2
lodash: ^4.17.19
semver: 7.0.0
source-map: ^0.5.0
checksum: 3a6e4347184b8cf7e2025064536f108f3051579b69dce6fe43210142d1ef5b16d9c2b9e1ff874cc7b0837e85409786045ebfde93f0420e4b37d71b7f64ecd552
languageName: node
linkType: hard
"@babel/generator@npm:^7.13.0, @babel/generator@npm:^7.4.0":
version: 7.13.0
resolution: "@babel/generator@npm:7.13.0"
dependencies:
"@babel/types": ^7.13.0
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: cf3bc4ca52dc774790bd838fd57790f2c7b1ded7fe06eea3d40bf93d0d898c8bc3d34f46428c7f0c8c23017b6ce0828348896dc226e0c3bde2e532a1ce765c7b
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: 9c4c0e738d42dedd40c87757bffb1454d1bdcaf1e6318f9768bc71874319c4ca5c45d5ed38b9dfb3b9980b27658fd0bf8fc44e53a2a43652a25d9a66c649f98a
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: eda7c1f96c91229ab8b9f28a13104405278fe6a9a439e8db03cb073199e085291214ae85e360e4e5c8e320e3cb1f9e94bdc0f228b1bd66cbfc15e29e2b653d84
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-compilation-targets@npm:7.13.0"
dependencies:
"@babel/compat-data": ^7.13.0
"@babel/helper-validator-option": ^7.12.17
browserslist: ^4.14.5
semver: 7.0.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: a1fa4c1739990357f6ef62cdeb5a4649e84e8d77199fb0f79d8719b4d690e52998626ae9744f9d71a40fbf2707159d7d23c8da635af544806e505f0d09f03591
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-create-class-features-plugin@npm:7.13.0"
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: 6066d5f21af2bb8f58c3fad4b04c91aeb465862e5ed51bbfb4a9a6d8eb7f1339ebcc9d038bcb93b6c84cb50c0b703bfc5945bc01062a9ef6f7647c0577d2b9e1
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: 771a4aaf9d1e25872d7aa40c222cb0c1e603ea968441385dae9d35aeeb6ee5b568a5cee73b5922fe5a74768cb313be92219d65101dba7ee509a9711a0022403c
languageName: node
linkType: hard
"@babel/helper-define-polyfill-provider@npm:^0.1.2":
version: 0.1.2
resolution: "@babel/helper-define-polyfill-provider@npm:0.1.2"
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: 6773a42d7c8d5d98b276e1bcedbde24bc2267660a145650f9f1e0aefd0747d2d8cb9f8477153e8beea732273a576c87e9a4332fa4dd0543a700eaea22c621d18
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: 9c9369110b0b29f8fdb40ebec1cecdc5f52d23ce39e7fb63281579515df30c7fee4c2f14881bf3d1d342c5981f6ba55f56e382cbe88f95b586ae9f5d9c541591
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: 4f1107fdfeefea2096d4564346938fd7ef5411d819f50076a15fd65cf2c390d849723ba2a329e12859929b60d03af7e9271b63b461affadf56cfdc643f42a99a
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: 12c34afd52e88f52f313d7b6acff2a62f55de93bdf2f57086417147e20c8391b2ee18da30dedf7102775f291c0b340240ed4538bbcfefc3b55e8eae1899c1227
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.12.13":
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: 97a09741b81b4c9092ab5245c25b97f734711f939e1071638812159d15eaba3f39e23c5fb2d38e896aa14f3bbaafbfa9a4689e84407d1c2decff45d475b9ebb2
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.13.0"
dependencies:
"@babel/types": ^7.13.0
checksum: dedc176b169139fb3c6898182956a4fc8e81b55c4886714af87fb4984aa9fd4374f1c154002fd0707999d0a98dabe0f3deac75e1402349a7b5f1ec8310078ca8
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.0.0, @babel/helper-module-imports@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-module-imports@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 7e09f1b0a7de16767802d64cf0e916d49c6655c9a5d38c9c72880cacc61f68f4971069b7c973a575d3c3a3d676ab591cd820aac3ee2091058d8c89c94b30e65c
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.12.13, @babel/helper-module-transforms@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-module-transforms@npm:7.13.0"
dependencies:
"@babel/helper-module-imports": ^7.12.13
"@babel/helper-replace-supers": ^7.13.0
"@babel/helper-simple-access": ^7.12.13
"@babel/helper-split-export-declaration": ^7.12.13
"@babel/helper-validator-identifier": ^7.12.11
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
lodash: ^4.17.19
checksum: ef54b290f5bc87c868fbec6aa1556f9669ba7caf7d05d3b8fcb5b502bec144b67ad1a0ceab26e0b4f5e29c5b6f416c1bf0b8e32c6f87b69fbeae99bc376e6ccd
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: 5858d42a6119d0e4e68e3f916d08748a02f4f7d2a346453f5c61a0003aa79b40a3280010f3691e3d05aa4db04b3665dd872b31b1cfe55048c7d7201df37678a6
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.13.0, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.13.0
resolution: "@babel/helper-plugin-utils@npm:7.13.0"
checksum: 49bbc12940fdc2f3afb744141a8af037325eb5d1c78cd30de90ffefc440dde3abc9b979ddc9c5e681f4257e158329179c7c2dc353d3791faa9af32ef6b8356d5
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: ad41b8b8e152ab1a4713369cbe1aa75974ba6971bd3f104d606b512a952284baef3d4c919fc12066c82a55fd4aad9ff5d87e93d440b10a5eb2fa8cf7f076b0c5
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.12.13, @babel/helper-replace-supers@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-replace-supers@npm:7.13.0"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.13.0
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
checksum: 5b12509319f5c7d2770cf0a6727ff3f0394afe194ede4b98c36b98e6000d66fe4aa74f182f8634c7da784b25c9321eceda897cce4c0e46b9f6977c8c77e9eed8
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-simple-access@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: a9317bbb25637b87bf6977e24c1fc3f46cbc729655b2603eef561cc3b7a54f4f2c56c9411c7b3e9f6354bbc4836061801f2f7c89547625460b2f287b7f2e881a
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: ce2f7aa07f625d985e7f9783d552826d1645f7a29e57452691512feae7948f9f1c0ec7657c584a30b63f894cdb290e182b7596b0b77f332878ba0715adb3bb86
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: c73d211c706926ddca15c165384fe33ffff51952d0b654823175430c366d37787f6ce5de77d7ccf09cdf9c1c4dcbebc528334715e3b922d84e7f7c05a2effd85
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: b88e813b950bcd935edb5a59cab948c39d94fe108477ede3ff7eb38098e25f093793aa4d7f5a0012deff1f6c448f5a33fda0cbb4b662cee3ef33151c18d4d748
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: 9574ee40afe9fa26a61f651aa4fb1ad0befc84f3b7e5713937beab4ba8e2a02d0e4a8b3969b0e67baad676d0e65fed99b72a862638c28a155ca2514664a0986f
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: 85d229c68510dc07e876e70f4055b198700a0b8d7e0d7321c08494a2749b21257e81e4242096b7d50522aa06e6bfc5f0c694e7367063ea1be21cbc2ab39b0720
languageName: node
linkType: hard
"@babel/helpers@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helpers@npm:7.13.0"
dependencies:
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
checksum: 108057336b8e69b5048ca92112488bb698d6e63b0e42c539cc1f8246759d7a20546e05a7736a5f64474775dd78230f013867e41273118e86496f90dce7c5eaa5
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4, @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: 41a17ddda1e1a89c091b24a6ed2804ce0065f447518247d18c62d6df7655cd36f56caa26693881d45c387525d3423bb750936efd938aa900c301296640e51f39
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.13, @babel/parser@npm:^7.13.0, @babel/parser@npm:^7.4.3, @babel/parser@npm:^7.7.0":
version: 7.13.4
resolution: "@babel/parser@npm:7.13.4"
bin:
parser: ./bin/babel-parser.js
checksum: f6ff20cf118b3b5d854f19c86f68a06fb9fc975e24afb11c0a25c52c79c994a44eab123051e997eedbd8c86e443af54d269047b8916bbdf763c25758db62f4e7
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.13.5":
version: 7.13.5
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.13.5"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/helper-remap-async-to-generator": ^7.13.0
"@babel/plugin-syntax-async-generators": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0da1aa53d8f047934db60162e421e6bc8642f0b667bd472f90c09db83c23ab96274efa6ef7b63f77fbf43b9c47c333c5ec11cecc2610c669a4f8141690c72432
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.12.1, @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: 6d17cb4a92acc11212d4590141b96f6e242f52fb9e34d7f874237077983284fba1c31856860bf8d31aff5a2578828cf6b9276d29be29c03ad1e6956676ecc2bf
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:^7.12.12":
version: 7.13.5
resolution: "@babel/plugin-proposal-decorators@npm:7.13.5"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.13.0
"@babel/helper-plugin-utils": ^7.13.0
"@babel/plugin-syntax-decorators": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 72fc1fbc4555b83c3f98efc06f333105a3a8f059db42f53ae6a2949825d005b36fbead6ed63a8ab8a424e68b427c6e61fdb4eb3d026eed2aa33fc819fa833554
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.12.17":
version: 7.12.17
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.12.17"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-dynamic-import": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 496e48b5f7e1a48f65a1613cf7dbe05d22cd9a4d4d4ceac977c98bb952e29866e824207d98ac12d2cc431bace5bcacf6b1c98e820cfc11993fe017b28a06106d
languageName: node
linkType: hard
"@babel/plugin-proposal-export-default-from@npm:^7.12.1":
version: 7.12.13
resolution: "@babel/plugin-proposal-export-default-from@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-export-default-from": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a7bac466560f7ff6e37063c71cb87ff78c4cb5ce3ca06a4e246173a99f3a40a7f9c1f712c5198a54936d4f73a20fbdb5d0f04abe69cfa4b52206f364060df0ed
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: 64cf46fd3c98be85a05616d370bc2186640b5d764231e4ab50961c2d58da340356cb4e33f00c20504a9c3cb156d374023114ab012a1922008d41951a796ab04f
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-json-strings@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-json-strings": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c05d58aeb689f73b1731f46f7a7834dba751d404e18b624700f6d9a611c7f372557b797af7c3d368097bf56fb51513f2ec1a4cafeb9058e987edf0a1a768043c
languageName: node
linkType: hard
"@babel/plugin-proposal-logical-assignment-operators@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-logical-assignment-operators@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 58c61df0dd1afbb56084f84bef9b54044a035ade6008d3162964a5050bc58c2bff89bd0e8651c7fcd7b73bbf550e6c96a0d0ca28ec75bd620b18ba98402011d4
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.12.1, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.13.0"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c759395a1bbb631d21dfa0819c2de06a1ecfe11c3ddd3862fb6ada475fe39c01aadd7a65a7a7e1727d40d940fb05f144c48c8ba6a0b25eae8d85d8318da44e04
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: 78692bad57c47591d58a5351175dc172a580db45af22bb613886cae8cdab93dcdebdd98fc0185ff7d90ad6d87dab2749cbabb26455843c6f47fbdda3aa9e0211
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.12.1, @babel/plugin-proposal-object-rest-spread@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.13.0"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/plugin-syntax-object-rest-spread": ^7.8.0
"@babel/plugin-transform-parameters": ^7.13.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 14c4598edc4419690524994663b4c559890e9bf682eef59c7a10f902767d59f089e4f2a0b7b663339c39fce698bab4eaa682622e956810716ebac72a26637c8a
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
"@babel/plugin-syntax-optional-catch-binding": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: db8715650c31a6a75869b058491fd2764747d049fc254e3b6f6556242f4de0db9d788b18cdd7aec8efd23cb11dd8905821cac120495d81d46ff8f6db462b0911
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.12.7, @babel/plugin-proposal-optional-chaining@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.13.0"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@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: 89b33bac53e8f57f8db03086109b97fdcc00c0cad0e822a7d7de4789db30ee058f0bac6523174db3e5970281aa495ea1c5e93fd11ca96f06692d083affec51b3
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.12.1, @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: 886d7b55db81f771a2ce6c5341a5512f2a04140bc63d954ba34e1964b8946e295a6b4cb9f296c9b98e1cefc6cb29f2489972c2483ab8ad5e0f29721ebf9cab04
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.12.13, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
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: e1474b4394627c588051886d28c5c53b23b0e5da23c64aa7ecd10517722e359d1c1eb3af7480774b6240d77e0f3aa84f7f5b0e1424a9afcca2fab1f2e47fab82
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: 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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 686891b81af2bc74c39013655da368a480f17dd237bf9fbc32048e5865cb706d5a8f65438030da535b332b1d6b22feba336da8fa931f663b6b34e13147d12dde
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.12.13, @babel/plugin-syntax-class-properties@npm:^7.8.3":
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: 95168fa186416195280b1264fb18afcdcdcea780b3515537b766cb90de6ce042d42dd6a204a39002f794ae5845b02afb0fd4861a3308a861204a55e68310a120
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.12.13":
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: 6f0b1c437dd94946caf72f1b1bb31cf07c82fcc20f89825e84faad0de9383f01936288a67de11eed968df2e4f6c147126cf4bd76d07c7953f675d10862cecced
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:^7.8.0, @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: 9c50927bf71adf63f60c75370e2335879402648f468d0172bc912e303c6a3876927d8eb35807331b57f415392732ed05ab9b42c68ac30a936813ab549e0246c5
languageName: node
linkType: hard
"@babel/plugin-syntax-export-default-from@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/plugin-syntax-export-default-from@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5385351faa1444508a79339e1ef236473b40e367ef892acb6546d7d2b26a36023a9716d33dc654a63814aeee69fd8706eda766862c16384b14fb74fd56ab54e7
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: 5100d658ba563829700cd8d001ddc09f4c0187b1a13de300d729c5b3e87503f75a6d6c99c1794182f7f1a9f546ee009df4f15a0ce36376e206ed0012fa7cdc24
languageName: node
linkType: hard
"@babel/plugin-syntax-flow@npm:^7.12.13":
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: 947074fbe042c1842d585f51e531376ed23a76b4ec714e7661a8a9cf967ccc9c653958d4f7b1d89218e4cf6817f60c3d35cac63affb817fac2c75ca35e329585
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: 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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e98f31b2ec406c57757d115aac81d0336e8434101c224edd9a5c93cefa53faf63eacc69f3138960c8b25401315af03df37f68d316c151c4b933136716ed6906e
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: c79976ba737f7eba2a84f6bc04f3802b5c63faf73b8a85902600610c9596adf4e8ebb06bb2fb9dcfb92d4e8deb508f1182fb50a74317e2c8f7a7121d2374e693
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: 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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 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": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 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": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 46edddf2faa6ebf94147b8e8540dfc60a5ab718e2de4d01b2c0bdf250a4d642c2bd47cbcbb739febcb2bf75514dbcefad3c52208787994b8d0f8822490f55e81
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.12.13, @babel/plugin-syntax-top-level-await@npm:^7.8.3":
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: a74e6954c784d7ae44009f06195dd6a8166ce43e3c3edda23af5c8b319733a4b3e1fe8cee12404f7662285273e7eb1f76727b2b28a8a098bf0bce54683cbe1ab
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: 98b8354e8b0dad1aa612f144afe63a9d08eb5e371821627ee0a4efd4f50855624fa64f9c14826c968f75695e02428cf20642d568f540404ef7612d50627e21ed
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.12.1, @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: f648eba00af332928bb4e105b0df207c1e0cc95934f9e76694d86def2c61bf449e2b0e45298d1bdfb3fdd8c60e2594785a999e2277979bc554325cbf54bc5e0f
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: 83b1070ea2662cc59297399f90947c61e26f62ab6e3abd17872c04f7f998514a2590b9cc56f090f5be0536ffeff53313680dc36cca08ede2e8a836692fbf0972
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: 79006bbfc62c7bc38493b5944de5bd6ec5231af25cff0abc00ad9b8bc430743ff011adeace60db3e3b3fef2d2174d8680169e87731b078a0066d018a6943be9e
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.12.12, @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: 6e7832c98d6f891c61f25200fddce85d4daadfdb6bc4512ff3ad30ae2720db2ecb0c5ca46d0223d0ab9f79a15ccd2507c2e2fb3b8e9c5ed9bcea14c924915b1d
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.12.1, @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: 29b7d353ea6e9b5a553dd6f7305b4f08d3b4c701a1adcb4aa8e926dc19b1f671d887a60ca284db542b44d52fb549856623b63fb57b2754523c73955d5ea2ffeb
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: 923d090b8085d842ad5e2d8682a78d2e1830f7390107dd4e58249bdba9f8c523e0982f8a859745fe5a89c09276c2ea7ec5fa7d8fbc83b23988b92a2e399a5668
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.12.1, @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: b888043d061e98b16989700b7fceb432b07cb2f32da89a478a9b7cd1535f85afc6494273d88fbfc1b70853268753e5728f5f38e74e05021c9e28d8f09a9fe343
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.12.13, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
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: 40d79120e22e2533bc424bd3afff8cc5fada593c8f12b30e4df3e1f5409b75d9da37ca7626d700c6e29f7017d5b43eef32e5130bf72f5daa292e43b83a4756e5
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: 62e699ce5e6a56cfea72e45fe7ed631676df2b9077e53e498bfde81b5cee7866e44405e48df475226ed3247af4b96ee5d68540914b6883322cbb337ad07e0f38
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: 1d19053b6ab15d140dbeee9a0015333bdd28b47b4bb247059f676ff425f95dbd4cc97ba43b4b47ee5d0e571c56a8d717ccb3039104f353479aa7a31429dcb66a
languageName: node
linkType: hard
"@babel/plugin-transform-flow-strip-types@npm:^7.12.13":
version: 7.13.0
resolution: "@babel/plugin-transform-flow-strip-types@npm:7.13.0"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/plugin-syntax-flow": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 58eedf07b4b8d28faedd837cd8e3397bc207cf3d57bfe9e03217d1e1e5fdd4faef4340bb06928a7296853bfdc54fa037d7227dd44dff941f47786563d469df5c
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.12.1, @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: bc5edfe7d4f3985e68005240c3743265dea919de17ec5a069c5ed14c859fe2cfe528b0dacefd718e6e817a3af21e6d8f2b21467f250f7f39fdbb7b2f3d2c3a23
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: ad12739bd44c1d545775bcfebc75b905e3ee6b358a36534d8d3e2b923aff652ebba13960b34e15dc4d9aaed0e45ef04291d9fdf79d0c005a64837122013a479f
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: e2a3f82375ed1542434993790d83c9374b36235e56776e9df02849985e088b7bfcef2f9449ef3d95c96cd76247d32e6aa8a0c6234f28398cd5cbca074f9e4902
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: 0f974b47a199883b00a49faff71368c66128f5dd7f74e3f3d447760cd5fcb389c5f3020672d2115b1a8ec2030c785031d9ed6440df8cf3d1208dfa552e7857b0
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: a364a1cc9ff0abfe5f128c1214649d78de9145b584e6b4b7b65599f67b359f27344a7383fc46cc677d3734b1a8ea4392bd5da646274c8141531426bc34b9e485
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.13.0"