-
Notifications
You must be signed in to change notification settings - Fork 9
/
yarn.lock
12386 lines (11143 loc) · 419 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
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/code-frame@npm:7.8.3"
dependencies:
"@babel/highlight": ^7.8.3
checksum: 2/0552a3e3667ad5af3bbffd537a7d177f321af3ff416522a9e9c7c671b9fc5d7f5eb6847e676e8de7a7362819e9670d9fe684e95d1c98adad0c0a0763c096955e
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.8.6":
version: 7.8.6
resolution: "@babel/compat-data@npm:7.8.6"
dependencies:
browserslist: ^4.8.5
invariant: ^2.2.4
semver: ^5.5.0
checksum: 2/b1c6e66f32b4f30326c0376adfb4b55fc5da6471c03d918ca7383b645834d644cb069ac4c5a8867704707bb0e41575e57d99cf6e648b8719ccaf09f452701cb6
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/compat-data@npm:7.9.0"
dependencies:
browserslist: ^4.9.1
invariant: ^2.2.4
semver: ^5.5.0
checksum: 2/f76f1866a00c3e52d7bb24e1b46eb25ce21d366844b2eb75c8ca231450f517bb0b0f8b1f9d8697f91a4e0608b66d0b2f6297d69e28d14fa40118f14955c432ca
languageName: node
linkType: hard
"@babel/core@npm:7.9.0":
version: 7.9.0
resolution: "@babel/core@npm:7.9.0"
dependencies:
"@babel/code-frame": ^7.8.3
"@babel/generator": ^7.9.0
"@babel/helper-module-transforms": ^7.9.0
"@babel/helpers": ^7.9.0
"@babel/parser": ^7.9.0
"@babel/template": ^7.8.6
"@babel/traverse": ^7.9.0
"@babel/types": ^7.9.0
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.13
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: 2/969b99c3aa93836cda851b28cd5d254ce197b3c78274c2c0aff4c42682a10d105b2052c2808d526a9d39c5e2d4fc26e78c88f2c33aeeb9c5cfcdb4019fc1c3bd
languageName: node
linkType: hard
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.7.5":
version: 7.8.6
resolution: "@babel/core@npm:7.8.6"
dependencies:
"@babel/code-frame": ^7.8.3
"@babel/generator": ^7.8.6
"@babel/helpers": ^7.8.4
"@babel/parser": ^7.8.6
"@babel/template": ^7.8.6
"@babel/traverse": ^7.8.6
"@babel/types": ^7.8.6
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.0
lodash: ^4.17.13
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: 2/5bd2d3b0f3948cb0b42dac716dbfa573f3c165c3a5067970e76410eec745126062aecc6540a274aea7c6cdd21c2ad243d4bbe4a99084863ce2f79b0441cc8491
languageName: node
linkType: hard
"@babel/generator@npm:^7.8.6":
version: 7.8.6
resolution: "@babel/generator@npm:7.8.6"
dependencies:
"@babel/types": ^7.8.6
jsesc: ^2.5.1
lodash: ^4.17.13
source-map: ^0.5.0
checksum: 2/d76ef6252d85f1a7c24193dabe41f9cb3a489a81b761c369e3d6370a71a45ed75113ffbe809b0098c6eb9b201a5a116aaeec00bb8e65785dec6cc62acfc82aea
languageName: node
linkType: hard
"@babel/generator@npm:^7.9.0":
version: 7.9.3
resolution: "@babel/generator@npm:7.9.3"
dependencies:
"@babel/types": ^7.9.0
jsesc: ^2.5.1
lodash: ^4.17.13
source-map: ^0.5.0
checksum: 2/7240246f2db0c89239ca3dc7cf03f2fa09aeb2bacc6ceffbed1ea72f12b2449b0a151845ae2f17bb05f13bf9fe97ee42f788533e97bd9bd3d9370739198f80f9
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-annotate-as-pure@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: 2/594212a764dc72bbcb1afea1f3a08481693049d19de80a86e0fe4affb3dc112def836ee9bc45eecc5ca34d0ec44db345c9ae2c477209dc92e1c8bb4914a06a8a
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.8.3"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.8.3
"@babel/types": ^7.8.3
checksum: 2/e6729cf99bad9095ebd43deffd5f2d26646a500f7356aafab7e9f5a58a99956782e6220579ac014e972925882d84c026fb06625cdd66fc935eb513af282d98cd
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx-experimental@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/helper-builder-react-jsx-experimental@npm:7.9.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/helper-module-imports": ^7.8.3
"@babel/types": ^7.9.0
checksum: 2/ba01416eeefd84a8a1bdd96ac8799927984ce85674d856d959602d572423248e0e2bed24d76294396bb3805edd66ebf59aea3221ff6a0eba65fa65fb9729e464
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/helper-builder-react-jsx@npm:7.9.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/types": ^7.9.0
checksum: 2/3c1b38de180ecaa415fa90c23ebc49fb611a72b8cef88cf2d7754cede305869aea6b11742b69444c1a58bf2f9614d9ac674d90f061ba39acd24a54150b55bd57
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.8.7":
version: 7.8.7
resolution: "@babel/helper-compilation-targets@npm:7.8.7"
dependencies:
"@babel/compat-data": ^7.8.6
browserslist: ^4.9.1
invariant: ^2.2.4
levenary: ^1.1.1
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 2/7761feb66a93ac29a5e4a570ba434b08c85907ebcde1030dd93280258404119c7e10cba57e965cf6380457b5b1bac9061e04b74c3671b147e8c104e9f386bdb4
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.8.3":
version: 7.8.6
resolution: "@babel/helper-create-class-features-plugin@npm:7.8.6"
dependencies:
"@babel/helper-function-name": ^7.8.3
"@babel/helper-member-expression-to-functions": ^7.8.3
"@babel/helper-optimise-call-expression": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-replace-supers": ^7.8.6
"@babel/helper-split-export-declaration": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0
checksum: 2/a481490b68586d63ad9182d54a210d6ae3fbaae08c456a80d38ebf973089962bfac9ee028e3aaaa78a82ec12ec0c870c4d99b1fad11618ad3688387935d12fae
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.8.3":
version: 7.8.6
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.8.6"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/helper-regex": ^7.8.3
regexpu-core: ^4.6.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 2/c4695aac3c5b27aac537a6692fb0cfe2fd41676766b1219f96a949a2a7e37be44fbde9288e5b930f9f4875157d5039c3b7933ca54f660864d86d4ca772961938
languageName: node
linkType: hard
"@babel/helper-define-map@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-define-map@npm:7.8.3"
dependencies:
"@babel/helper-function-name": ^7.8.3
"@babel/types": ^7.8.3
lodash: ^4.17.13
checksum: 2/3a570d152ab5c3710c5bd48eadbb3d5c31f0bb74fb569f0dd5081e301613f3adb0daf3d6dc7e0597cc760f833fe66c80e2c1c3c9a8fc6083135d705f4e53e933
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-explode-assignable-expression@npm:7.8.3"
dependencies:
"@babel/traverse": ^7.8.3
"@babel/types": ^7.8.3
checksum: 2/e6cab12b350c74f3317bca6eafd5eea18773a3d413629a12073670d3472ef14943759a4112ff3762e91dd125b053f498e3071d31f3f69cd6ba3a90b6b47cda9f
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-function-name@npm:7.8.3"
dependencies:
"@babel/helper-get-function-arity": ^7.8.3
"@babel/template": ^7.8.3
"@babel/types": ^7.8.3
checksum: 2/9435f12534d853bfb61cb15fbbfcdea1c7586eb499b22141ba31e787f88a18067e1976037b5988a673c7a10f7bffe6f64edc4b25aca215fcf127336bfae86599
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-get-function-arity@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: 2/173ce64f2bc357ca6deb6c639c02fc3842b9c88750501decfe1fa3b7cfe449280f1ced0b7d754a9bf338e7227300af3b28a3447d60048dfceb6405c017b0b84b
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-hoist-variables@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: 2/b5a95ca28dfc44d2bafbc9c9e4e39a592988113eaa14dcf218832e8480388ec857cd06b0816316de5add6951d844b3de1d5ecfb2d5c4bdd9f04cd52e6c9761fa
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-member-expression-to-functions@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: 2/75dc46c0f64d21985fe62f39c67673fea925815f7576a6a83eec70ec50c0baa969d672df1bee6d0d65cea4c0fd11bcfcebfe1f3642ec57009bf3d3195034ba18
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-module-imports@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: 2/48a64ca882aa5fcbd8969ae57f10ff44d68c45507675199f8c6d750e4695524072dbd00102155b89106a6f06ca466ad8a607475eded156471d45d5014ce410d7
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/helper-module-transforms@npm:7.9.0"
dependencies:
"@babel/helper-module-imports": ^7.8.3
"@babel/helper-replace-supers": ^7.8.6
"@babel/helper-simple-access": ^7.8.3
"@babel/helper-split-export-declaration": ^7.8.3
"@babel/template": ^7.8.6
"@babel/types": ^7.9.0
lodash: ^4.17.13
checksum: 2/a667ba69306ede8dc1a710f0d5e08fa1f7ef15677c489153f0a6b26b97e4f31557392c884ad72c6f7024ab2953c2aba3851a20d7594265090ea986a9ef93c725
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-optimise-call-expression@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: 2/db54d15185bbe12affcc013db3f8e556490f3ad82e2a56ee9e927056a10adc37c8d1cd6c6db4900bb45ae557e572f571089f276001ea34308b775b1ad7dabf19
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-plugin-utils@npm:7.8.3"
checksum: 2/56f09626f24511aadd36a96aacd8658274ededc2e94f5e85bb6e51c9e6ad72eb1dd9f9a28a4ee5a8691de7601cf2a8e63ce235db01dda8964779940281f2787f
languageName: node
linkType: hard
"@babel/helper-regex@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-regex@npm:7.8.3"
dependencies:
lodash: ^4.17.13
checksum: 2/b36d0111bc99e4b8c2e6d338bd2c321f51eeb281dcf3763cbfbb8d91cfe7da8cf8df0dc6ee7892848abb1794eeae8650275b8787de62d51f62cbde02a8d1cbad
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-remap-async-to-generator@npm:7.8.3"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/helper-wrap-function": ^7.8.3
"@babel/template": ^7.8.3
"@babel/traverse": ^7.8.3
"@babel/types": ^7.8.3
checksum: 2/50f71e309d45f1c8f30e7228cef7e406d9d15cf2af63d875e114e1fb8fe4229c508340809b6d479159424b78c8f66b5a670358ea6ce387f1a30f8a332bfd25b7
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.8.3, @babel/helper-replace-supers@npm:^7.8.6":
version: 7.8.6
resolution: "@babel/helper-replace-supers@npm:7.8.6"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.8.3
"@babel/helper-optimise-call-expression": ^7.8.3
"@babel/traverse": ^7.8.6
"@babel/types": ^7.8.6
checksum: 2/159fad039fe54a415d2c74b79b2fe70d7a22b049da9402bf006de8a832ad2f12015852f7abd2f77cc9ac783c960c6a7cb04c0862234c5b21f1c8ec81f74a0a1f
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-simple-access@npm:7.8.3"
dependencies:
"@babel/template": ^7.8.3
"@babel/types": ^7.8.3
checksum: 2/1cdd8a6710e97238d15f1200881b86366b2f0b10c3c04c726b4092919afd1fdba9dd43fad8648a5e565c10fdb9654a9885ae1679526128aca7cf6e746ad458f3
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-split-export-declaration@npm:7.8.3"
dependencies:
"@babel/types": ^7.8.3
checksum: 2/dd72c412171315f1952f30a7a71a237fb4f1b11edfc4ae8945db905f000e945f6c7a791d166a5c3fb90dd8336bbf9891091bd7f139eaf7ea4dfb30c54c888eb1
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/helper-validator-identifier@npm:7.9.0"
checksum: 2/c8b67b61fe59ba40d28729bda49579b89022b3ac8ab2eb135fa0a41b2dec600e11240bb4b71a95195217404d02ea89d25a0f1dac01a93f37c50658cbf8b95115
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-wrap-function@npm:7.8.3"
dependencies:
"@babel/helper-function-name": ^7.8.3
"@babel/template": ^7.8.3
"@babel/traverse": ^7.8.3
"@babel/types": ^7.8.3
checksum: 2/ab1956051d3a731d8e2fe5fbc493aaf8581f6681ffbf654239b0370e37873a5fbc670a0f949a4062aef6630cf8e782ca87761c254af32bdf14f51ef192c7320d
languageName: node
linkType: hard
"@babel/helpers@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/helpers@npm:7.8.4"
dependencies:
"@babel/template": ^7.8.3
"@babel/traverse": ^7.8.4
"@babel/types": ^7.8.3
checksum: 2/eb415dd046030854a94f316ad744a7dd6d01515ae84fea9df4bb69982fd7e6fb3ed58b328cbc5569b5e0dd4653b72b034b75348eb813d0e975777c80d6819abc
languageName: node
linkType: hard
"@babel/helpers@npm:^7.9.0":
version: 7.9.2
resolution: "@babel/helpers@npm:7.9.2"
dependencies:
"@babel/template": ^7.8.3
"@babel/traverse": ^7.9.0
"@babel/types": ^7.9.0
checksum: 2/7b660a84f129a7193d6b235a0ef6c6c6dd946569f243acefb8d76cda54bb980cde1dc60b2ec4c631811fc58a0c260c8b0649cd0a007abd9df77fda8ecfb42d70
languageName: node
linkType: hard
"@babel/highlight@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/highlight@npm:7.8.3"
dependencies:
chalk: ^2.0.0
esutils: ^2.0.2
js-tokens: ^4.0.0
checksum: 2/ce11281e4e101fac60cd1b7a5aab94424a8da248195262d75b3f1a0ff8490aaf20d62569bae91ba1f94bd805d53ea5c77b363054b18e0ea16be26065902ad97e
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.7.5, @babel/parser@npm:^7.8.6":
version: 7.8.6
resolution: "@babel/parser@npm:7.8.6"
bin:
parser: ./bin/babel-parser.js
checksum: 2/371c336cf3cf62b4c4541f592f82e5224c5a67ea8777d34863f02a20bfb369cc62c6e5ab153001a05d04caaeb2ed48b3012ef67dbab1a7a3d50881b560a09128
languageName: node
linkType: hard
"@babel/parser@npm:^7.9.0":
version: 7.9.3
resolution: "@babel/parser@npm:7.9.3"
bin:
parser: ./bin/babel-parser.js
checksum: 2/013c421da56e7d80459cb5b4cba308803c196c2edcfadb3fac29ff40b51871baeaabf098e3dac13586e0e02739af6c4661954ed2766354721a103bcc7c404676
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-remap-async-to-generator": ^7.8.3
"@babel/plugin-syntax-async-generators": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/4844ede310563e7f030c58217b0b33bb96d17a698b689f5d3b5fbca9245802061afe68dd025a9ea5d243765c180f470c1a2e145afd3c274ac20b318c763027c3
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-dynamic-import": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/7dacffad8c9027589c038bd5d58eae5ed1786623312485411a6c11d168c2ba8b96ab6638344c08b48c9aa224fe7013f9371cf9baf0ccf4591b3516440517dc1e
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-json-strings": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/d77c14cf01d41440345ed963fafd16a7da3df8f1ba778780672fa7cbd730e1114a88dbc4c1411ee3dcb29a2fc8565081c9ad2f887f04b4c124e10842986c88fe
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/99b6683ae81309453ae55b2a8681e02de52efc7c5cdf30342cb0585ad4a2ef07d1a7781cfa6c4b0b7329538e11576263a5f217043b56ab15980e3ae9007738db
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-numeric-separator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/8ab823d0d2d20e6439787fbb2c1b52e634fccf414e92268914b482edfb5d863cb9b85a0b2e37f0956efb20d968335420afe0b7d31197c9f84faaf9af3c65fd74
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.9.0"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-object-rest-spread": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/e465b412c0801930e85fb48c6b165a19a5570d661d207e2706c4b3410942e5ace8f5f30e61621c27fdeb643375c71378ff1c0ab9c654a7b56c3d6aa6588e5d79
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-optional-catch-binding": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/6241b347b611e91f436022649def5f08359608db5b9b133c4d32ab8ac1e5d693bd95799e6bfd9dac4f641f561ca9f65f424f7813ffaddf33b88878bfe2714107
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.9.0"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-optional-chaining": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/88c2000597877a1bae264aa7fb3529225123772d4680b4468032ebcbc170b7fe3f2d3028712cfad2180af147a2bfdb50ad36d191a7753b05ef7f502c66b48e70
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.4.4, @babel/plugin-proposal-unicode-property-regex@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.8.3"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/c117334154a92a77309d005bcce009035409e38b895819042dc6692975f651ccf969a8b94401a13aa6899f6d43f3ab75fe70b4b1b4554cacba8b4d4d4b39a36c
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.0":
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: 2/39685944ffe342981afb1fe3af824305e94ee249b1841c78c1112f93d256d3d405902ac146ab3bad8c243710f081621f9fbf53c62474800d398293c99521c8ef
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.0.0":
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: 2/8c9b610377af48e1d8ec0d5ad5eec5e462fbc775b20f367e0ebc2656b98b4cc73a952e8b5ab8641e6de0d04923f3843dd73ce00a71ef5cac9940822ff776c8ec
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:^7.8.0":
version: 7.8.3
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/134a6f37feac0e6d55f8188232e11798ccf699b02d50a4daf9c040f52a22ee32923a6a979443ecc865f4014937ffe67ac11b81aa5668b6792238c647314f41c9
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.0":
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: 2/1a7dabf0a4b264cb235966c4256aad131567eba20e41de731fa9127d371454a2f702e27fd7bedac65efb0df847e5cece7bcb5507a931604d1c2ecb7390adaa1f
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-jsx@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/461a8bc58f90b6f0bb2ec8545671b17621aadfe2c0423af06b73299c6be63c35324c9905dc12c6671cacdc5798f9137cdabb69ab0c041973142bab26322fa4e1
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.0":
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: 2/4ba03753759a2d9783b792c060147a20f474f76c42edf77cbf89c6669f9f22ffb3cbba4facdd8ce651129db6089a81feca1f7e42da75244eabedecba37bd20be
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.8.0, @babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/b12fb19d0cb795b26c2b7262ee6ca20effbd4556ec6aa1fa1fa579979c08541d2b2db33e3cae2a333f22460c6a36dd646af79a70a662b7fe22675cdbe6bc3001
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.0.0, @babel/plugin-syntax-object-rest-spread@npm:^7.8.0":
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: 2/db5dfb39faceddba8b80c586e331e17c3a1f79941f80eaa070b91fb920582bffe8bba46f6bebbdaf7c1f9b0bbe2a68493c28e1c9fb0ced864da739c0cd52ce43
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.0":
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: 2/f03d07526674ecdb3388e1d648ec250250968e13c037a7110e37d3eab0b82b07d6605332772afdf19f1831dfd3bdbbf0288a7d9097097d30b9548388ea693a07
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.0":
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: 2/2a50685d023bc609b01a3fd7ed3af03bc36c575da8d02199ed51cb24e8e068f26a128a20486cd502abe9e1d4c02e0264b8a58f1a5143e1291ca3508a948ada97
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-top-level-await@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/db2f0ca5cba56605068f9d5c5d0b11cf2d77c66f85bcf4afe91c73395ac334364f27d7f3bd4a1a145c10a80c55cf11bb41269baf11fcebf3d349dd4010d9f7b3
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-typescript@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/56807f1cf9db0002359d0cc92153f8f038436236fc424f50100dc7f24f420e77422d9054ab9622238aa869ef3fa28835c0432cd365c7e3f60ec7016f62ff7a99
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-arrow-functions@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/8389bb8d1beb83645fb68dece0d6f254c6b6e976d1c4e28dfe2cb18a9e24cd690403e8220a69f1c4ada060df948c098e2f86bfb8f3c17fde0f59f28cbf0e50c8
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-async-to-generator@npm:7.8.3"
dependencies:
"@babel/helper-module-imports": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-remap-async-to-generator": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/51442df3b7169357f99296f08c1a712d3bd722c7a2c722b61b1e5b0515b3c4ba1a0cfc850186db98c0086cba61a910fec306e7bd3fa2819c15588d601639f4a0
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/250fca457ca771043013f14b76788790546830b60f4b044e44fec2b93b0b8b51ed81232030624dfa74760f8d2eddebcb0035c067872701e63fd2361c727c2781
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-block-scoping@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
lodash: ^4.17.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/95008d867dda564832fc8029d50d1d07126b74bbb25f5a1a39e9814c750c73d4bf2c07806e0effec0c35ed39ec009287261310067c0a8c4301ffbdad552ed087
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.9.0":
version: 7.9.2
resolution: "@babel/plugin-transform-classes@npm:7.9.2"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/helper-define-map": ^7.8.3
"@babel/helper-function-name": ^7.8.3
"@babel/helper-optimise-call-expression": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-replace-supers": ^7.8.6
"@babel/helper-split-export-declaration": ^7.8.3
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/6d179e561951dbead6ac46621c43c7db54c5bcfaeee03c79acdaa0c94f07905409f190216e7ba4e9d01f5e1215aac3fae93d292ab432bd9c003efa343cc193c9
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-computed-properties@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/9f480ca11bb97b9a4968699c0d8ac1d0af26014cbfe2375df471c5275d23f864156de6ef353a64711689f3aa9459a3d3db71b5c72f9faff602305770975684ba
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-destructuring@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/8511250ac2b1caf7218e8f31a626af59ebf9d968953e5953020a8b55fdb48f6c6ee296890e133e47d8c45e496a26425bd22ae0e1f78f4ccf8f8454ca0d378d2a
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.4.4, @babel/plugin-transform-dotall-regex@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-dotall-regex@npm:7.8.3"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/e0b28ea6b224f3e00b81bd447f42aff82a2f6f3722ba5c9763e8cf3bc3994a55bd9a142fc68d83f41595d663528791d671d5bfc08637443fb13ee5296a7de73d
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/1606142c396786b95ec353de211a4734d3e7f1d4bb4a1b2ebe5317438d23484658e547b206449cb6ad96b7955f6da3a27073c8df953658a201c3a57ce2fea65b
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.8.3"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/f68397ade893ea719c9d1c6b141f3e73d1b8be88225245ba1dc9d50a86a3cad2827bc4e1ed75b32950617fc9becba4b6d3b679e6162e8b100f2dd2cf6acf9dc4
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-transform-for-of@npm:7.9.0"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/63d6eecfc84af7dbe5cc54f35557641e34d5ca12e54f30927f33d24707c9202efee0ecfdd0a9d74e277ed5555311e9de5e7dd63d2f55975b12163320ee981dc9
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-function-name@npm:7.8.3"
dependencies:
"@babel/helper-function-name": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/29e7934c9f232c33586f28eab2c0cbf7a9c864a36ad1ef6283f572b6758d91915e8172514ce5a26063fa616c98733479e78c6a6ec510d92a8915752ba19e662c
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-literals@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/0bb20216e93eb78d6cc2b85451546902e3584b6f6249e4e4c8e63453b62e551af5454ef7bbe65811e5b37ff6e5b56a177da72283a36d11554132e4a881daa83f
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/14c6d08cc193364ebcd3f76edf20fa22ce5a0f9689c2f16b5feb2a032f2ed42f71a083a13a0e525f4394ea8d4beb68dbd38cb6a80ccdac219e5bb70aaea8f839
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-transform-modules-amd@npm:7.9.0"
dependencies:
"@babel/helper-module-transforms": ^7.9.0
"@babel/helper-plugin-utils": ^7.8.3
babel-plugin-dynamic-import-node: ^2.3.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/466399ed95771deeca5b56215793286ee8b0d81760fd15eb0a3082e51e3fd7029d23e54947957859290817e116f7c0e1a3a3e9c3cae4fc689c5fa553f198ef29
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.9.0"
dependencies:
"@babel/helper-module-transforms": ^7.9.0
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-simple-access": ^7.8.3
babel-plugin-dynamic-import-node: ^2.3.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/ae3163616d38db20385291f2d34eb7741a079dd642e8ed531a744a71be942a96cff320c4a4e6ee76d40cdbecf96d40e03f6d040f5c3a105de6ffc8011cf90c77
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.9.0"
dependencies:
"@babel/helper-hoist-variables": ^7.8.3
"@babel/helper-module-transforms": ^7.9.0
"@babel/helper-plugin-utils": ^7.8.3
babel-plugin-dynamic-import-node: ^2.3.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/93d6c921b0d96c72b05376189b1f14352ae907420e46b2bd70f35521d38ea6a2cc77d310de02f0414fb9e66a4ee1cd23d7a81e52c8d76793c0b4f6b77cc5c4ab
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-transform-modules-umd@npm:7.9.0"
dependencies:
"@babel/helper-module-transforms": ^7.9.0
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/4cb238a0d8999f0e000994cd312087ba8c7e2f99684fccaccea5dc12f4c3a646aa923ec13fbc3a656330925d086cb10bfec80e6753e8c24002982ad5a45d2812
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.8.3"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0
checksum: 2/ecd54239cc288bdb29c6194459323059c26e21248bac28398055e29e340a623c14fd69a94583886d47b2d062c043bb25d7f1aa00908addf4e5b7194b4aad91db
languageName: node
linkType: hard
"@babel/plugin-transform-new-target@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-new-target@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/f51014eb823a81483316b2806ab54bef6ca069e5b9dd215ced713ef32cc31424454d040b4e852fd4dd3b00ffd3ea951458c387fe0b790577fa70e03370e94239
languageName: node
linkType: hard
"@babel/plugin-transform-object-super@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-object-super@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-replace-supers": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/d0cbf2214f30a005f92e6f2e9037ad7528f88c32e402253532201036aea069b2bffc600bbc63417281e101e2a70878a25fc12dedb2df9f151ee6953d5be400c5
languageName: node
linkType: hard
"@babel/plugin-transform-parameters@npm:^7.8.7":
version: 7.9.3
resolution: "@babel/plugin-transform-parameters@npm:7.9.3"
dependencies:
"@babel/helper-get-function-arity": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/eeb45630034565671efbea7098c55d981ac465967e9ae85d1a521da990d416c2ceaaa195ff6ba38f63d59512aa3d7d8a95253c8841f55291799f6faadba60cdc
languageName: node
linkType: hard
"@babel/plugin-transform-property-literals@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-property-literals@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/5158b25f752072030513ac9ac332d8ba0479664e140d2bdbd663ae63b3ae93a66fc4946c3dd7d10efcd62d74a1464637ad03d461a6b57cc7b1b2fd3a718be51b
languageName: node
linkType: hard
"@babel/plugin-transform-react-display-name@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-react-display-name@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/9e25364d9509a5f5bca8748fbb4337b1c9fc5d4c9bc698f6abffb14cfb0928782d55ec91d13e6e239f8a4c4532aa2267c9a3ad0a99a6c6f4ad0e1e24f5ee710a
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-development@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-transform-react-jsx-development@npm:7.9.0"
dependencies:
"@babel/helper-builder-react-jsx-experimental": ^7.9.0
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-jsx": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/33cc1dd4df808ce4396d2db91560f34de4cbefe1806ab4dba268f4da1ca8b937020db449bc6134df832f99bfc38b59d589a2281bfcd9de060b0291ffa41e6eb2
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-self@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-transform-react-jsx-self@npm:7.9.0"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-jsx": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/74db297c3181c6f3712f6109b844feeb18ab9d7298e132b31dbf04f1055fd32843098d108d53867eb44de1ae289b39dd127c57fc82b8fb930e7a50ce0f81c309
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx-source@npm:^7.9.0":
version: 7.9.0
resolution: "@babel/plugin-transform-react-jsx-source@npm:7.9.0"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-jsx": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/b5759b24e6f39048a68136e133988302f18efb1134260c0a98e98c8961fadeacaa8b93f24b5ba94a755e8f570981f662e7992d164e7af0e8be2de69cba4fdb6a
languageName: node
linkType: hard
"@babel/plugin-transform-react-jsx@npm:^7.9.1":
version: 7.9.1
resolution: "@babel/plugin-transform-react-jsx@npm:7.9.1"
dependencies:
"@babel/helper-builder-react-jsx": ^7.9.0
"@babel/helper-builder-react-jsx-experimental": ^7.9.0
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-jsx": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2/62a170ee3e06176686a123f6a056e761c555b7127b34b73643b8ef63c403a88eb2ada616e1ed47a73608ebe620018abbbcde9f652ec2afddc39b9e378c093fdf
languageName: node
linkType: hard
"@babel/plugin-transform-regenerator@npm:^7.8.7":
version: 7.8.7
resolution: "@babel/plugin-transform-regenerator@npm:7.8.7"
dependencies:
regenerator-transform: ^0.14.2
peerDependencies: