-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pnpm-lock.yaml
5477 lines (4771 loc) · 181 KB
/
pnpm-lock.yaml
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
lockfileVersion: 5.3
specifiers:
'@babel/core': ^7.12.10
'@babel/preset-env': ^7.12.11
'@babel/preset-typescript': ^7.12.7
'@rollup/plugin-typescript': ^8.1.0
'@testing-library/dom': ^7.29.4
'@testing-library/jest-dom': ^5.11.9
'@types/jest': ^26.0.20
'@types/webpack-env': ^1.16.0
babel-eslint: ^11.0.0-beta.2
babel-jest: ^26.6.3
concurrently: ^5.3.0
eslint: ^7.19.0
eslint-config-ts-important-stuff: ^1.1.0
husky: ^4.3.8
jest: ^26.6.3
jest-cli: ^26.6.3
prettier: ^2.2.1
pretty-quick: ^3.1.0
rimraf: ^3.0.2
rollup: ^2.37.1
rollup-plugin-terser: ^7.0.2
single-spa: ^5.9.0
tslib: ^2.1.0
typescript: ^4.1.3
dependencies:
'@types/webpack-env': 1.16.0
devDependencies:
'@babel/core': 7.12.10
'@babel/preset-env': 7.12.11_@babel+core@7.12.10
'@babel/preset-typescript': 7.12.7_@babel+core@7.12.10
'@rollup/plugin-typescript': 8.1.0_197d81323e2bd4007f1f08e0d668f722
'@testing-library/dom': 7.29.4
'@testing-library/jest-dom': 5.11.9
'@types/jest': 26.0.20
babel-eslint: 11.0.0-beta.2_4040d347f50623727eb9d26c8bacfc4b
babel-jest: 26.6.3_@babel+core@7.12.10
concurrently: 5.3.0
eslint: 7.19.0
eslint-config-ts-important-stuff: 1.1.0
husky: 4.3.8
jest: 26.6.3
jest-cli: 26.6.3
prettier: 2.2.1
pretty-quick: 3.1.0_prettier@2.2.1
rimraf: 3.0.2
rollup: 2.37.1
rollup-plugin-terser: 7.0.2_rollup@2.37.1
single-spa: 5.9.0
tslib: 2.1.0
typescript: 4.1.3
packages:
/@babel/code-frame/7.12.11:
resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
dependencies:
'@babel/highlight': 7.10.4
dev: true
/@babel/code-frame/7.12.13:
resolution: {integrity: sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==}
dependencies:
'@babel/highlight': 7.12.13
dev: true
/@babel/compat-data/7.12.7:
resolution: {integrity: sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==}
dev: true
/@babel/core/7.12.10:
resolution: {integrity: sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==}
engines: {node: '>=6.9.0'}
dependencies:
'@babel/code-frame': 7.12.11
'@babel/generator': 7.12.11
'@babel/helper-module-transforms': 7.12.1
'@babel/helpers': 7.12.5
'@babel/parser': 7.12.11
'@babel/template': 7.12.7
'@babel/traverse': 7.12.12
'@babel/types': 7.12.12
convert-source-map: 1.7.0
debug: 4.3.1
gensync: 1.0.0-beta.2
json5: 2.1.3
lodash: 4.17.20
semver: 5.7.1
source-map: 0.5.7
transitivePeerDependencies:
- supports-color
dev: true
/@babel/generator/7.12.11:
resolution: {integrity: sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==}
dependencies:
'@babel/types': 7.12.12
jsesc: 2.5.2
source-map: 0.5.7
dev: true
/@babel/helper-annotate-as-pure/7.12.10:
resolution: {integrity: sha512-XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ==}
dependencies:
'@babel/types': 7.12.12
dev: true
/@babel/helper-builder-binary-assignment-operator-visitor/7.10.4:
resolution: {integrity: sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==}
dependencies:
'@babel/helper-explode-assignable-expression': 7.12.1
'@babel/types': 7.12.12
dev: true
/@babel/helper-compilation-targets/7.12.5_@babel+core@7.12.10:
resolution: {integrity: sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/compat-data': 7.12.7
'@babel/core': 7.12.10
'@babel/helper-validator-option': 7.12.11
browserslist: 4.16.1
semver: 5.7.1
dev: true
/@babel/helper-create-class-features-plugin/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-function-name': 7.12.11
'@babel/helper-member-expression-to-functions': 7.12.7
'@babel/helper-optimise-call-expression': 7.12.10
'@babel/helper-replace-supers': 7.12.11
'@babel/helper-split-export-declaration': 7.12.11
transitivePeerDependencies:
- supports-color
dev: true
/@babel/helper-create-regexp-features-plugin/7.12.7_@babel+core@7.12.10:
resolution: {integrity: sha512-idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-annotate-as-pure': 7.12.10
regexpu-core: 4.7.1
dev: true
/@babel/helper-define-map/7.10.5:
resolution: {integrity: sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==}
dependencies:
'@babel/helper-function-name': 7.12.11
'@babel/types': 7.12.12
lodash: 4.17.20
dev: true
/@babel/helper-explode-assignable-expression/7.12.1:
resolution: {integrity: sha512-dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==}
dependencies:
'@babel/types': 7.12.12
dev: true
/@babel/helper-function-name/7.12.11:
resolution: {integrity: sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==}
dependencies:
'@babel/helper-get-function-arity': 7.12.10
'@babel/template': 7.12.7
'@babel/types': 7.12.12
dev: true
/@babel/helper-get-function-arity/7.12.10:
resolution: {integrity: sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==}
dependencies:
'@babel/types': 7.12.12
dev: true
/@babel/helper-hoist-variables/7.10.4:
resolution: {integrity: sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==}
dependencies:
'@babel/types': 7.12.12
dev: true
/@babel/helper-member-expression-to-functions/7.12.7:
resolution: {integrity: sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==}
dependencies:
'@babel/types': 7.12.12
dev: true
/@babel/helper-module-imports/7.12.5:
resolution: {integrity: sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==}
dependencies:
'@babel/types': 7.12.12
dev: true
/@babel/helper-module-transforms/7.12.1:
resolution: {integrity: sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==}
dependencies:
'@babel/helper-module-imports': 7.12.5
'@babel/helper-replace-supers': 7.12.11
'@babel/helper-simple-access': 7.12.1
'@babel/helper-split-export-declaration': 7.12.11
'@babel/helper-validator-identifier': 7.12.11
'@babel/template': 7.12.7
'@babel/traverse': 7.12.12
'@babel/types': 7.12.12
lodash: 4.17.20
transitivePeerDependencies:
- supports-color
dev: true
/@babel/helper-optimise-call-expression/7.12.10:
resolution: {integrity: sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==}
dependencies:
'@babel/types': 7.12.12
dev: true
/@babel/helper-plugin-utils/7.10.4:
resolution: {integrity: sha512-O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==}
dev: true
/@babel/helper-remap-async-to-generator/7.12.1:
resolution: {integrity: sha512-9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==}
dependencies:
'@babel/helper-annotate-as-pure': 7.12.10
'@babel/helper-wrap-function': 7.12.3
'@babel/types': 7.12.12
transitivePeerDependencies:
- supports-color
dev: true
/@babel/helper-replace-supers/7.12.11:
resolution: {integrity: sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==}
dependencies:
'@babel/helper-member-expression-to-functions': 7.12.7
'@babel/helper-optimise-call-expression': 7.12.10
'@babel/traverse': 7.12.12
'@babel/types': 7.12.12
transitivePeerDependencies:
- supports-color
dev: true
/@babel/helper-simple-access/7.12.1:
resolution: {integrity: sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==}
dependencies:
'@babel/types': 7.12.12
dev: true
/@babel/helper-skip-transparent-expression-wrappers/7.12.1:
resolution: {integrity: sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==}
dependencies:
'@babel/types': 7.12.12
dev: true
/@babel/helper-split-export-declaration/7.12.11:
resolution: {integrity: sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==}
dependencies:
'@babel/types': 7.12.12
dev: true
/@babel/helper-validator-identifier/7.12.11:
resolution: {integrity: sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==}
dev: true
/@babel/helper-validator-option/7.12.11:
resolution: {integrity: sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==}
dev: true
/@babel/helper-wrap-function/7.12.3:
resolution: {integrity: sha512-Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==}
dependencies:
'@babel/helper-function-name': 7.12.11
'@babel/template': 7.12.7
'@babel/traverse': 7.12.12
'@babel/types': 7.12.12
transitivePeerDependencies:
- supports-color
dev: true
/@babel/helpers/7.12.5:
resolution: {integrity: sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==}
dependencies:
'@babel/template': 7.12.7
'@babel/traverse': 7.12.12
'@babel/types': 7.12.12
transitivePeerDependencies:
- supports-color
dev: true
/@babel/highlight/7.10.4:
resolution: {integrity: sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==}
dependencies:
'@babel/helper-validator-identifier': 7.12.11
chalk: 2.4.2
js-tokens: 4.0.0
dev: true
/@babel/highlight/7.12.13:
resolution: {integrity: sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww==}
dependencies:
'@babel/helper-validator-identifier': 7.12.11
chalk: 2.4.2
js-tokens: 4.0.0
dev: true
/@babel/parser/7.12.11:
resolution: {integrity: sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==}
engines: {node: '>=6.0.0'}
hasBin: true
dev: true
/@babel/plugin-proposal-async-generator-functions/7.12.12_@babel+core@7.12.10:
resolution: {integrity: sha512-nrz9y0a4xmUrRq51bYkWJIO5SBZyG2ys2qinHsN0zHDHVsUaModrkpyWWWXfGqYQmOL3x9sQIcTNN/pBGpo09A==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-remap-async-to-generator': 7.12.1
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.10
transitivePeerDependencies:
- supports-color
dev: true
/@babel/plugin-proposal-class-properties/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.10
'@babel/helper-plugin-utils': 7.10.4
transitivePeerDependencies:
- supports-color
dev: true
/@babel/plugin-proposal-dynamic-import/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.10
dev: true
/@babel/plugin-proposal-export-namespace-from/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.10
dev: true
/@babel/plugin-proposal-json-strings/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.10
dev: true
/@babel/plugin-proposal-logical-assignment-operators/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.10
dev: true
/@babel/plugin-proposal-nullish-coalescing-operator/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.10
dev: true
/@babel/plugin-proposal-numeric-separator/7.12.7_@babel+core@7.12.10:
resolution: {integrity: sha512-8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.10
dev: true
/@babel/plugin-proposal-object-rest-spread/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.10
'@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.10
dev: true
/@babel/plugin-proposal-optional-catch-binding/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.10
dev: true
/@babel/plugin-proposal-optional-chaining/7.12.7_@babel+core@7.12.10:
resolution: {integrity: sha512-4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-skip-transparent-expression-wrappers': 7.12.1
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.10
dev: true
/@babel/plugin-proposal-private-methods/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.10
'@babel/helper-plugin-utils': 7.10.4
transitivePeerDependencies:
- supports-color
dev: true
/@babel/plugin-proposal-unicode-property-regex/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==}
engines: {node: '>=4'}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-async-generators/7.8.4_@babel+core@7.12.10:
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-bigint/7.8.3_@babel+core@7.12.10:
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-class-properties/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-dynamic-import/7.8.3_@babel+core@7.12.10:
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-export-namespace-from/7.8.3_@babel+core@7.12.10:
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-import-meta/7.10.4_@babel+core@7.12.10:
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-json-strings/7.8.3_@babel+core@7.12.10:
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-logical-assignment-operators/7.10.4_@babel+core@7.12.10:
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-nullish-coalescing-operator/7.8.3_@babel+core@7.12.10:
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-numeric-separator/7.10.4_@babel+core@7.12.10:
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-object-rest-spread/7.8.3_@babel+core@7.12.10:
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-optional-catch-binding/7.8.3_@babel+core@7.12.10:
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-optional-chaining/7.8.3_@babel+core@7.12.10:
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-top-level-await/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-syntax-typescript/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-UZNEcCY+4Dp9yYRCAHrHDU+9ZXLYaY9MgBXSRLkB9WjYFRR6quJBumfVrEkUxrePPBwFcpWfNKXqVRQQtm7mMA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-arrow-functions/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-async-to-generator/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-module-imports': 7.12.5
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-remap-async-to-generator': 7.12.1
transitivePeerDependencies:
- supports-color
dev: true
/@babel/plugin-transform-block-scoped-functions/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-block-scoping/7.12.12_@babel+core@7.12.10:
resolution: {integrity: sha512-VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-classes/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-annotate-as-pure': 7.12.10
'@babel/helper-define-map': 7.10.5
'@babel/helper-function-name': 7.12.11
'@babel/helper-optimise-call-expression': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-replace-supers': 7.12.11
'@babel/helper-split-export-declaration': 7.12.11
globals: 11.12.0
transitivePeerDependencies:
- supports-color
dev: true
/@babel/plugin-transform-computed-properties/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-destructuring/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-dotall-regex/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-duplicate-keys/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-exponentiation-operator/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-builder-binary-assignment-operator-visitor': 7.10.4
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-for-of/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-function-name/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-function-name': 7.12.11
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-literals/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-member-expression-literals/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-modules-amd/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-module-transforms': 7.12.1
'@babel/helper-plugin-utils': 7.10.4
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
/@babel/plugin-transform-modules-commonjs/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-module-transforms': 7.12.1
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-simple-access': 7.12.1
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
/@babel/plugin-transform-modules-systemjs/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-hoist-variables': 7.10.4
'@babel/helper-module-transforms': 7.12.1
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-validator-identifier': 7.12.11
babel-plugin-dynamic-import-node: 2.3.3
transitivePeerDependencies:
- supports-color
dev: true
/@babel/plugin-transform-modules-umd/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-module-transforms': 7.12.1
'@babel/helper-plugin-utils': 7.10.4
transitivePeerDependencies:
- supports-color
dev: true
/@babel/plugin-transform-named-capturing-groups-regex/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==}
peerDependencies:
'@babel/core': ^7.0.0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.10
dev: true
/@babel/plugin-transform-new-target/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-object-super/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-replace-supers': 7.12.11
transitivePeerDependencies:
- supports-color
dev: true
/@babel/plugin-transform-parameters/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-property-literals/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-regenerator/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
regenerator-transform: 0.14.5
dev: true
/@babel/plugin-transform-reserved-words/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-shorthand-properties/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-spread/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-skip-transparent-expression-wrappers': 7.12.1
dev: true
/@babel/plugin-transform-sticky-regex/7.12.7_@babel+core@7.12.10:
resolution: {integrity: sha512-VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-template-literals/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-typeof-symbol/7.12.10_@babel+core@7.12.10:
resolution: {integrity: sha512-JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-typescript/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-create-class-features-plugin': 7.12.1_@babel+core@7.12.10
'@babel/helper-plugin-utils': 7.10.4
'@babel/plugin-syntax-typescript': 7.12.1_@babel+core@7.12.10
transitivePeerDependencies:
- supports-color
dev: true
/@babel/plugin-transform-unicode-escapes/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/plugin-transform-unicode-regex/7.12.1_@babel+core@7.12.10:
resolution: {integrity: sha512-SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/core': 7.12.10
'@babel/helper-create-regexp-features-plugin': 7.12.7_@babel+core@7.12.10
'@babel/helper-plugin-utils': 7.10.4
dev: true
/@babel/preset-env/7.12.11_@babel+core@7.12.10:
resolution: {integrity: sha512-j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw==}
peerDependencies:
'@babel/core': ^7.0.0-0
dependencies:
'@babel/compat-data': 7.12.7
'@babel/core': 7.12.10
'@babel/helper-compilation-targets': 7.12.5_@babel+core@7.12.10
'@babel/helper-module-imports': 7.12.5
'@babel/helper-plugin-utils': 7.10.4
'@babel/helper-validator-option': 7.12.11
'@babel/plugin-proposal-async-generator-functions': 7.12.12_@babel+core@7.12.10
'@babel/plugin-proposal-class-properties': 7.12.1_@babel+core@7.12.10
'@babel/plugin-proposal-dynamic-import': 7.12.1_@babel+core@7.12.10
'@babel/plugin-proposal-export-namespace-from': 7.12.1_@babel+core@7.12.10
'@babel/plugin-proposal-json-strings': 7.12.1_@babel+core@7.12.10
'@babel/plugin-proposal-logical-assignment-operators': 7.12.1_@babel+core@7.12.10
'@babel/plugin-proposal-nullish-coalescing-operator': 7.12.1_@babel+core@7.12.10
'@babel/plugin-proposal-numeric-separator': 7.12.7_@babel+core@7.12.10
'@babel/plugin-proposal-object-rest-spread': 7.12.1_@babel+core@7.12.10
'@babel/plugin-proposal-optional-catch-binding': 7.12.1_@babel+core@7.12.10
'@babel/plugin-proposal-optional-chaining': 7.12.7_@babel+core@7.12.10
'@babel/plugin-proposal-private-methods': 7.12.1_@babel+core@7.12.10
'@babel/plugin-proposal-unicode-property-regex': 7.12.1_@babel+core@7.12.10
'@babel/plugin-syntax-async-generators': 7.8.4_@babel+core@7.12.10
'@babel/plugin-syntax-class-properties': 7.12.1_@babel+core@7.12.10
'@babel/plugin-syntax-dynamic-import': 7.8.3_@babel+core@7.12.10
'@babel/plugin-syntax-export-namespace-from': 7.8.3_@babel+core@7.12.10
'@babel/plugin-syntax-json-strings': 7.8.3_@babel+core@7.12.10
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4_@babel+core@7.12.10
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3_@babel+core@7.12.10
'@babel/plugin-syntax-numeric-separator': 7.10.4_@babel+core@7.12.10
'@babel/plugin-syntax-object-rest-spread': 7.8.3_@babel+core@7.12.10
'@babel/plugin-syntax-optional-catch-binding': 7.8.3_@babel+core@7.12.10
'@babel/plugin-syntax-optional-chaining': 7.8.3_@babel+core@7.12.10
'@babel/plugin-syntax-top-level-await': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-arrow-functions': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-async-to-generator': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-block-scoped-functions': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-block-scoping': 7.12.12_@babel+core@7.12.10
'@babel/plugin-transform-classes': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-computed-properties': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-destructuring': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-dotall-regex': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-duplicate-keys': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-exponentiation-operator': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-for-of': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-function-name': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-literals': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-member-expression-literals': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-modules-amd': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-modules-commonjs': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-modules-systemjs': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-modules-umd': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-named-capturing-groups-regex': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-new-target': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-object-super': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-parameters': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-property-literals': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-regenerator': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-reserved-words': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-shorthand-properties': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-spread': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-sticky-regex': 7.12.7_@babel+core@7.12.10
'@babel/plugin-transform-template-literals': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-typeof-symbol': 7.12.10_@babel+core@7.12.10
'@babel/plugin-transform-unicode-escapes': 7.12.1_@babel+core@7.12.10
'@babel/plugin-transform-unicode-regex': 7.12.1_@babel+core@7.12.10