-
Notifications
You must be signed in to change notification settings - Fork 24
/
yarn.lock
20153 lines (18184 loc) · 680 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: 5
cacheKey: 8
"@alfalab/postcss-custom-properties@npm:^9.1.2":
version: 9.1.2
resolution: "@alfalab/postcss-custom-properties@npm:9.1.2"
dependencies:
postcss: ^7.0.17
postcss-values-parser: ^3.0.5
checksum: d5f90a4acef3aaaf3a36c0443d05a32c9c6bb4c6fd16e40ce677989a2f4b0507cd5ea51a7ad1f52a526a8e9a4a61eda514e3b46a8bafd4d37cbceed3ce7a77d1
languageName: node
linkType: hard
"@alfalab/stylelint-core-vars@npm:1.3.0":
version: 1.3.0
resolution: "@alfalab/stylelint-core-vars@npm:1.3.0"
checksum: 7a6c30d6757464901ea606d3c27690790ae2c4a47a5159e0ea7dfadfb7511842ae81a6b339ea063020ab1c257613081eea2c72098e69bf8b7020f0df58ec4be2
languageName: node
linkType: hard
"@babel/code-frame@npm:7.10.4, @babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
dependencies:
"@babel/highlight": ^7.10.4
checksum: feb4543c8a509fe30f0f6e8d7aa84f82b41148b963b826cd330e34986f649a85cb63b2f13dd4effdf434ac555d16f14940b8ea5f4433297c2f5ff85486ded019
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.5.5":
version: 7.12.13
resolution: "@babel/code-frame@npm:7.12.13"
dependencies:
"@babel/highlight": ^7.12.13
checksum: d0491bb59fb8d7a763cb175c5504818cfd3647321d8eedb9173336d5c47dccce248628ee68b3ed3586c5efc753d8d990ceafe956f707dcf92572a1661b92b1ef
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.10.4, @babel/compat-data@npm:^7.9.0":
version: 7.11.0
resolution: "@babel/compat-data@npm:7.11.0"
dependencies:
browserslist: ^4.12.0
invariant: ^2.2.4
semver: ^5.5.0
checksum: 482a80dcb8e7878ad8a6c91c17882a3dfadf880c25984de8c7cb1bfbb336e55a15da373a75ce91d0cf42db6f9f62bbe9dd166bad4912b7883624654080b336a1
languageName: node
linkType: hard
"@babel/core@npm:7.9.0, @babel/core@npm:^7.1.0, @babel/core@npm:^7.7.5":
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: 0886b35c9cda80628bc61e47172c79d51ab1d1e693f95c037df371bf0a84ca5cd72c0183fb3d01f47c59395d7805d2e79d46660488d73b9966db5fb726ad561c
languageName: node
linkType: hard
"@babel/generator@npm:^7.11.5, @babel/generator@npm:^7.9.0":
version: 7.11.6
resolution: "@babel/generator@npm:7.11.6"
dependencies:
"@babel/types": ^7.11.5
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 11f0c3480c1cb324336b695179432994e3fe0c867842170ee17ce87041ae71dfef71ebfee9ed5cb5c7f7d17ca5d453acce4e8b64ec988a9b9abfa725ac44558b
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-annotate-as-pure@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: a0b82b2ed731adc173db5dcc53731b7ab6de4cbe1a66908badcf492889fc1e86c17e1d482aabc6b5dde0453caf8024329485d3e2ba3e81056951720862ab8bbf
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.10.4"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.10.4
"@babel/types": ^7.10.4
checksum: 2f3256e6a87a890e1e84ab7d22734179450f0578f2a9621250329d34601cbf3b4f7ee7e53e088f68dd4522ce6d55d70f14bd469b81b4d6b3afaa0cd578402bcb
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx-experimental@npm:^7.10.4, @babel/helper-builder-react-jsx-experimental@npm:^7.11.5":
version: 7.11.5
resolution: "@babel/helper-builder-react-jsx-experimental@npm:7.11.5"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-module-imports": ^7.10.4
"@babel/types": ^7.11.5
checksum: e7743e63b13f671864ba0e4d639d451b796923b4bc5e191f9e59705ffb033b44b5b1379c74c2dce76b6a4bdec4edeeed66769567dd1e4cf730309e3062fe361c
languageName: node
linkType: hard
"@babel/helper-builder-react-jsx@npm:^7.10.4, @babel/helper-builder-react-jsx@npm:^7.9.0":
version: 7.10.4
resolution: "@babel/helper-builder-react-jsx@npm:7.10.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/types": ^7.10.4
checksum: 32907788def4b3e50a23d1527777365529a721750a7dfdef7494a4abbe6f77e30b5939891d28860e83bb1fc7faca6ba68229b3cff8832c2720fca9e8e9390e66
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.8.7":
version: 7.10.4
resolution: "@babel/helper-compilation-targets@npm:7.10.4"
dependencies:
"@babel/compat-data": ^7.10.4
browserslist: ^4.12.0
invariant: ^2.2.4
levenary: ^1.1.1
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: e40e1a88e3aeb7849fa157fa45b0cdca6f50f5fb590b1f63ae01fd95e9fc0d19d6f5b876364b2ee5cb6bda468bcf497c448b04afecf7eb5eb16b1a1d0378db93
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.10.5, @babel/helper-create-class-features-plugin@npm:^7.8.3":
version: 7.10.5
resolution: "@babel/helper-create-class-features-plugin@npm:7.10.5"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/helper-member-expression-to-functions": ^7.10.5
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-replace-supers": ^7.10.4
"@babel/helper-split-export-declaration": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0
checksum: 207c218b15bd9ec855eb3bc0374cde646bf749722f7f9263cc156c05d113818d1510a743a72fc8fa0ef286b1627bf5d62fe959c19632a7c4adc870cc3170b68f
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.10.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-regex": ^7.10.4
regexpu-core: ^4.7.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 00cd8c31648dffc4a0e50096da15ef51898fd6c8ad710addcef128f5cb1c419e4f17b8ae7cc3aa3f4f0d3aefffd67894c8d3d1c2f5ee6e840edb210e9ae48a36
languageName: node
linkType: hard
"@babel/helper-define-map@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-define-map@npm:7.10.5"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/types": ^7.10.5
lodash: ^4.17.19
checksum: 4b257fac6f92cfa051a4a8d646116d19da963161b4e8e00f4f9f125b4b1e13d0e0cc7bbbc540fcc76c9012833d1eb782377018eb7c42d50ea98ee2e99fc49bc9
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.10.4":
version: 7.11.4
resolution: "@babel/helper-explode-assignable-expression@npm:7.11.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 29d26e29998b1a36c4bf3161cc2857d8d691c2e8336c9cbcb93c3924103d866d45a5276314a9296e467326aa1e18100ea45bc7dfdb8a22b6bf0db41aba88d43d
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-function-name@npm:7.10.4"
dependencies:
"@babel/helper-get-function-arity": ^7.10.4
"@babel/template": ^7.10.4
"@babel/types": ^7.10.4
checksum: eb9226d1c768b974f30a20fafd809353a2dbc359f66d6d27e4dd917fb471df9a9c2b771e0f1a838b21aa195b3cbba8a472d95327b80b3bd0e12edf407a3c0d53
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-get-function-arity@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 798e2eb6cd5d2ff91a6cc3904ad626fca366fb33e631cb214477f100207ef26acdf78280a31f8adf59a988f020221165834902d5e201a8b5bbefab361d502daf
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-hoist-variables@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: efb6adceec6fa202f911e9f3efe849ebc6dcbba89b110f957bfe0ca93e29e5593490ce34b9e67f170deb3532564947a5350d2fdb8f1f95407dcf7c9af5b8a855
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.10.4, @babel/helper-member-expression-to-functions@npm:^7.10.5":
version: 7.11.0
resolution: "@babel/helper-member-expression-to-functions@npm:7.11.0"
dependencies:
"@babel/types": ^7.11.0
checksum: 79c50984ad0cea556628e28d68abdc1dc6546398484bdf5477521c6f38fa7c065a9de227bdf7c48405535542a3c52850f49b0ec3475c254bd56ad47c6730d0f5
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.10.4, @babel/helper-module-imports@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/helper-module-imports@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 051e75c8052881316c654b6d58a9f9743317c63f9230badec565095c9102448620bc3038461d2853dace841d1a271c84acb958dd7c39d74af1b2dda4f649b2b0
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.10.4, @babel/helper-module-transforms@npm:^7.10.5, @babel/helper-module-transforms@npm:^7.9.0":
version: 7.11.0
resolution: "@babel/helper-module-transforms@npm:7.11.0"
dependencies:
"@babel/helper-module-imports": ^7.10.4
"@babel/helper-replace-supers": ^7.10.4
"@babel/helper-simple-access": ^7.10.4
"@babel/helper-split-export-declaration": ^7.11.0
"@babel/template": ^7.10.4
"@babel/types": ^7.11.0
lodash: ^4.17.19
checksum: e784af9d4143b1e72026f6a63935b0586e20b0cb1739ae5d022611e80b8b028b19ade9ac4aa19b0304c547dde8e03058dad4ac232b05ec55f8e45e1adecb802b
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-optimise-call-expression@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 358b904a5067c19d3d09e8e9a8ba1bdfb8dad71bb6fa3777d64f04e78d8425bad0b8ea7969bbcdf14bad0a7815d3575fc3323a085cbea6c36c47063e3aee4b00
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/helper-plugin-utils@npm:7.10.4"
checksum: 639ed8fc462b97a83226cee6bb081b1d77e7f73e8b033d2592ed107ee41d96601e321e5ea53a33e47469c7f1146b250a3dcda5ab873c7de162ab62120c341a41
languageName: node
linkType: hard
"@babel/helper-regex@npm:^7.10.4":
version: 7.10.5
resolution: "@babel/helper-regex@npm:7.10.5"
dependencies:
lodash: ^4.17.19
checksum: 920a424cae7c1bb5c0c30675d564b025ca249a40d850565c3372d00c9ca1d68b806824465e154e8d555afc0f5a9ab50267806745fd4ef20b671ebabe5ee2579e
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.10.4":
version: 7.11.4
resolution: "@babel/helper-remap-async-to-generator@npm:7.11.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-wrap-function": ^7.10.4
"@babel/template": ^7.10.4
"@babel/types": ^7.10.4
checksum: ab15bcdab4b0169654606af194cfa9139343148eb41b1708872695c54f2202afa0578a7058573c39104391af4e3ad9d466c4e56083a1dae85416768f11b0f84f
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-replace-supers@npm:7.10.4"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.10.4
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/traverse": ^7.10.4
"@babel/types": ^7.10.4
checksum: de4d52d5442dc7e549fbc59b287d189fac02e98ef0b7ca788448f8e8fc6e351d63523b3a3f844105f701ff35985266021f75360aedfd1686cc7e7324e1dfd1dd
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-simple-access@npm:7.10.4"
dependencies:
"@babel/template": ^7.10.4
"@babel/types": ^7.10.4
checksum: 4a2c9073c3a864528f0bee135b2b1f07ac0fd0ef60c43e1a67de4ca6bdd3cc73cc32393637ab8fd61bafc6ed9742b8104a75577268d4568440f9551cd256f9b9
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.11.0"
dependencies:
"@babel/types": ^7.11.0
checksum: 4e7ec809ce4ed2db5d96953e7a107256cb48742ebb7532400fa1d2d27c9dbff93908e59e21137ef9dfd33330d6de54484922e5548f76b4ec8245ad605482cec0
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.10.4, @babel/helper-split-export-declaration@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-split-export-declaration@npm:7.11.0"
dependencies:
"@babel/types": ^7.11.0
checksum: eb03088c44e70ba3039b4608b0d108dcb1659f951b976044a487961c725b7c18e3d14b30f78180b8375c4bdbd0410494de56f716d30bc9ae6493e53c17047ec1
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-validator-identifier@npm:7.10.4"
checksum: 3cbfdff0efea8f3bca050cfe408a156604293d3313c7279c8c02d916a0b3ef82617f28f7729877a94c0e8e922d4b7623c4f0a108ae2853bf762d933e101a5f8c
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.14.0":
version: 7.14.0
resolution: "@babel/helper-validator-identifier@npm:7.14.0"
checksum: 6276d57677bac403dd2e99176b4c7bc38ecdf757ac845c4339a2bf2f6f1003203caaa5af24880bcc7084ee59b6687a897263592cab21f49da29eb8c246f2a0d8
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-wrap-function@npm:7.10.4"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/template": ^7.10.4
"@babel/traverse": ^7.10.4
"@babel/types": ^7.10.4
checksum: 8ad9e9d4b3aa5398fa149c2ea538d733313249747f7e55a47bdc12ba0e802f8096cb8217446fc75d519893802971f606510215f5edec53f7fae974cb36830342
languageName: node
linkType: hard
"@babel/helpers@npm:^7.9.0":
version: 7.10.4
resolution: "@babel/helpers@npm:7.10.4"
dependencies:
"@babel/template": ^7.10.4
"@babel/traverse": ^7.10.4
"@babel/types": ^7.10.4
checksum: c6bad75fa5136b7dc06c3dbedc38abb46820d1fb6227cdf511d62a169de57b5a5c56da718eaa200bb4f9de9ed13ae94f839dcdda4e6f8d4bb8117ffc8409fef5
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/highlight@npm:7.10.4"
dependencies:
"@babel/helper-validator-identifier": ^7.10.4
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 6fab4679162562907942acc3647bc8c405b955f3bef7c654ef160491d0801ebdc12651c2051144dc0e22b69044fe3059d630151d5d7fb84b10ed4093da707707
languageName: node
linkType: hard
"@babel/highlight@npm:^7.12.13":
version: 7.14.0
resolution: "@babel/highlight@npm:7.14.0"
dependencies:
"@babel/helper-validator-identifier": ^7.14.0
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 5aae226c0d4caf66bbb2d11e961449b470eb952aa827b06da5921d845a5dc233789e2537aa1e7b0f567d1cae93feca3976d6b52c9d6d87481ed9ded0bebf13a2
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.10.4, @babel/parser@npm:^7.11.5, @babel/parser@npm:^7.7.0, @babel/parser@npm:^7.9.0":
version: 7.11.5
resolution: "@babel/parser@npm:7.11.5"
bin:
parser: ./bin/babel-parser.js
checksum: 3cd9834e0e072114974b214473002b40792c3f19779a39d63dd832d99a48762b9ab158762f45547f2cc8f0fbdac2727a07d1f005f175b14c1af3ec6cd9916d3d
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.8.3":
version: 7.10.5
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.10.5"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-remap-async-to-generator": ^7.10.4
"@babel/plugin-syntax-async-generators": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 726d7ea6b6f7bf4edfce758bd475a56ed42813594dab4c26bc41be62fea5b7f9109d13c17a7cd68d3f13446a73c2584192a19853771f81d000dd8b10348db6bb
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-class-properties@npm:7.8.3"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5ac3435b0393b09162234f8e4c56c6321f038d205af447563f8389e7ed447904c4cdedf958e6a5ed092692fcc2eff980913efff19589c0969dd9846be4710867
languageName: node
linkType: hard
"@babel/plugin-proposal-decorators@npm:7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-decorators@npm:7.8.3"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-decorators": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f9aa852dd77657d29c19b16bc3a7d8c30e5964a9aa8eb541bf440f34659693631793d4c798c92e344e767c9ccc43baae9e595d86e589bfa4bb157fc07a5e0c05
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-dynamic-import": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: dc72d1ed765db571cb3a2784ec1ca58ec6be97c657694a2335972f1335e21242eb79a1fa2ff0e2e6097a4039a88cd8ec21cf8cc5d14f7232209bf926e9d33134
languageName: node
linkType: hard
"@babel/plugin-proposal-export-default-from@npm:7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-export-default-from@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-export-default-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bbae178eeb6f67da2b6e602119b177e1703f5de39c256c3d0077f7bda275759412cfc561bf840e2494366dc2fb416837fdaa6bcdbdafdb2bbf3020196d2b7b38
languageName: node
linkType: hard
"@babel/plugin-proposal-export-namespace-from@npm:7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-export-namespace-from@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-export-namespace-from": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 560035d4218e93b139ba9c9657081156bcbdab45426520761ec32118ad9acdd4fd4ce92cf0bb3763745f4c159a09117d6587ccf1de31e5fe07696bd6b8b73991
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-proposal-json-strings@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-json-strings": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 68a718bc82177c21c31e9d63c0981dd220cc472272e01bef9775e6c689111a7761201d7faf9af765daf281ae7f203e2d0a6cc46f01c27c24c7d9b6f18e83693e
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:7.10.4, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 553988b4bc03ec51d97e16233a5d650b3e8ceb5e990bb7e412372c23fd3cd9192d145e5d8cd09d74e9302d0301e4992b9f427375601ca6607ff27d4836f9ffea
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:7.8.3, @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: fd2d926e5bba27180e79c7511cb62d423a74690419f97ae1804b4a36632017ab2ef763ce2a84810b7c350a5d3e42a8e263780dadefa4ad6288923a2d13950170
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:7.11.0, @babel/plugin-proposal-object-rest-spread@npm:^7.9.0":
version: 7.11.0
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.11.0"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-object-rest-spread": ^7.8.0
"@babel/plugin-transform-parameters": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9449913e8724ef24cefef39886a6a8168015bef336de4c9b167aeeef6ceef03debc615dfbb8f657546bcd2bef611337e0fb4f7f10bce55e78c25010b7acef8e7
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/plugin-syntax-optional-catch-binding": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ae8437ce12e6125b773507a4efd9bfdb132ccbefd7588d9aa8af48f9b48c8310d19daaf4009b0b338d8a5c9f631daef3cc5d32ff8ed02e421c449b193756ed9c
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:7.11.0, @babel/plugin-proposal-optional-chaining@npm:^7.9.0":
version: 7.11.0
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.11.0"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-skip-transparent-expression-wrappers": ^7.11.0
"@babel/plugin-syntax-optional-chaining": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2f5ac45b390d149e7d2ad19b4602c7b730e1c6473fd1ddda2358e9abdd380b7a937fcb1dd49b6621b0e50049be463824d3dc67eb0212ea71ccbf6ca98ab20487
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.10.4
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.10.4"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 43e1aca45597a3aa32f6258bace5922cf416c2f6fd175f5a5f483bfb8345f5607bb9a63702e69f0d2fa79c9397d0d14a82a08811b694a885d7d62acf81e62369
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: 7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367
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: 3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-class-properties@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 454db1392c5415abf0681a619e71c667df94f7c7587767016b804c4b84180ed4fc00cefcae677850fa356c991085ab61ae524c4d4bab95445cb4aa0a3af96017
languageName: node
linkType: hard
"@babel/plugin-syntax-decorators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-decorators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1703f1ffabde16dcaddac880132689ba62b0f8138b43490c4fae95007aef6763c7eb490ef058f860c0d62bda11b99acf365cae569373cbf86b97c3875dc41cca
languageName: node
linkType: hard
"@babel/plugin-syntax-dynamic-import@npm:7.8.3, @babel/plugin-syntax-dynamic-import@npm:^7.8.0":
version: 7.8.3
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ce307af83cf433d4ec42932329fad25fa73138ab39c7436882ea28742e1c0066626d224e0ad2988724c82644e41601cef607b36194f695cb78a1fcdc959637bd
languageName: node
linkType: hard
"@babel/plugin-syntax-export-default-from@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-export-default-from@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f7feca121ab30110a740e6e0af59361dc2993a7bb1990c6366278c5a140705cf99353ff9cfc09ddcd73995cb1d359a3c00a3a28f823bba5fa959250d2abe81eb
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: 85740478be5b0de185228e7814451d74ab8ce0a26fcca7613955262a26e99e8e15e9da58f60c754b84515d4c679b590dbd3f2148f0f58025f4ae706f1c5a5d4a
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: 166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b
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: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-jsx@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 89dca777c5c203342506c27ac0770e0203c7af154800880739d62abb1b1b82de42a7de2eb63ba417f3a922d60a8bcaffc473a9f78ab76b68e9637127eb19afce
languageName: node
linkType: hard
"@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: aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886
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: 87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.8.0, @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: 01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1
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: fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf
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: 910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9
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: eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-top-level-await@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 415b336142684dc48d9276b96631d04f3eeaa2d575696197455f3370fb184d7f846f3bcf4193cf33b936fcaa5bfa4b4fd9b53d116d61adffa8c7d9b8a3174df0
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-typescript@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5cc12f2d14378c9cdcd012964ff0787ff016b7bb1bc1fae772a185570dbe1a8382c7f31d30d8522b41280d6f51c7bc4bbab0b9001c1d37798c9a73f044006ef4
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-transform-arrow-functions@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c40bb8f643848cbceeb4a5b9f97aa7cbd9d7bc5a42668dfdcd0954dcc28773aafc401a03aa6734a1795de1b877fddc6ecf3c4cfd8fa45bf4b5b03f905cb39c62
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-transform-async-to-generator@npm:7.10.4"
dependencies:
"@babel/helper-module-imports": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-remap-async-to-generator": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a20ef71854d23b7bfd2fd3fdc69c3941d9ace40a0db09c73af029cbc0ceb3664da1cf4471bcaccca53c4ce5c53a5cbd7158c05b0bdb979343e9136642f9418b8
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bdd2d4511b86b88c8efb82a94742fa0f8afef74c82fd9506a9a991cecd0561d6f54e01cc71abf7b42122034b7df0362a6d741c58474ac621b02f188133449a8c
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.8.3":
version: 7.11.1
resolution: "@babel/plugin-transform-block-scoping@npm:7.11.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 64466d2878f2efd41282b7ed301d71c49585be415c82e02e956bbc52e138ae21b022c2a62ebf430c23e6abd402c49c5f128f4e2b83bfc8d77dfdfce963575ad2
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.9.0":
version: 7.10.4
resolution: "@babel/plugin-transform-classes@npm:7.10.4"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.4
"@babel/helper-define-map": ^7.10.4
"@babel/helper-function-name": ^7.10.4
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-replace-supers": ^7.10.4
"@babel/helper-split-export-declaration": ^7.10.4
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ef829c1ca8f0156483d3564aaf07aaf201c337562bb1c5157da5d429f73565b27b9cdf1ff02293c9cf6e82f5a82aa3f98c579bd86326a5cc5057c7a2361674da
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-transform-computed-properties@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5a507c63a73db5630681ca293c3d9c5c258fad28c2667ea3d62eba1a6ece0cff77abe4124d18d95ebc305a7309a502fdb1b966b039824daa070c2855bf260aaa
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-transform-destructuring@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2938ea94b70b08ad13e4cc64ae945bd296490532f7cbbbae8e26ad54679c8721c0c6998974345ea692d6022cf6fb5027d587241d354578d8655c09c6a8914bce
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.4.4, @babel/plugin-transform-dotall-regex@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-transform-dotall-regex@npm:7.10.4"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d72a01d3233aaef7afe8e1249cd20f13230ffee7dddacf05a696f3281e4b4edb11dd078085f9063d72a2521a83a80d79d177ef401e62446e7573008b35101915
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2d5b0f916d7742cee01bbe834e577b8c6fc2a3b41a319dae4b0a2f41e87d4d1e3dec6d95e669eb3cb5ae3ff96f5796502b79a2f40cf1884586d6617d0187f2d8
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.10.4"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4a497e3764428c212a1a1b15c7e6882655785536abcc4b39b6dc0f1867d4e50427acaa9bd35ace1c5ce0ef4d77de131defbb079fcdb02620f635a18e1473f8d4
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.9.0":
version: 7.10.4
resolution: "@babel/plugin-transform-for-of@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: dddadb30d877f0470e97e22e61c3e9803c93778f869b62141939bd69477dda385fac197bb22bd545b9e5098e28202b26d3881df2df1cbf0bc81216d267304ac8
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-transform-function-name@npm:7.10.4"
dependencies:
"@babel/helper-function-name": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 36034ed09a89f34ef3b97ae7658406b94d9bcaaa34987e8e78162c1bb1990f0d7414ef0d5107fbdd07f307c444e7d8aece3bf36ae843221ca0f5d86be875b4a6
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-transform-literals@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 067fe39a79d5acd4d16957cf6d1e62086f63d039176c3ca21afabae21cd51accdad43db54788a6d693163322b70e0c397e519b5642e9c0be347b2330bfb3e141
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: af26325ab40e7e16c014aa816de211e19dab7212fe401bd544123eaa96a200de52d81ef5531f92f1183fa452a423d72036a545bdca836376e9cf61ac269debe1
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.9.0":
version: 7.10.5
resolution: "@babel/plugin-transform-modules-amd@npm:7.10.5"
dependencies:
"@babel/helper-module-transforms": ^7.10.5
"@babel/helper-plugin-utils": ^7.10.4
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 568f0fcce4f7710c259c430bd288c9915e0c2ec4559398e4880948c952a1d0459ed3e512fda35e647e068b486e889b0522d7887cc4ae099e0e7f57116f3b4f58
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:7.10.4, @babel/plugin-transform-modules-commonjs@npm:^7.9.0":
version: 7.10.4
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.10.4"
dependencies:
"@babel/helper-module-transforms": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
"@babel/helper-simple-access": ^7.10.4
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 62c43303805ebe9c545f5994cc033d911e5b23385f8fad80ea40b1ea3e83809c43685d91175d04400a979a7e3148dfd0d11511af6f13540890c46d649510ca6c
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.9.0":
version: 7.10.5
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.10.5"
dependencies:
"@babel/helper-hoist-variables": ^7.10.4
"@babel/helper-module-transforms": ^7.10.5
"@babel/helper-plugin-utils": ^7.10.4
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ee2d06c2e6f4338a581239e312879c0db3b2fa55d02b48a2e8ade54ef86e6baeafc7c31726f330c0d69624b639ffc63da9c771c65655a92be1df74ba4d7f5158
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.9.0":
version: 7.10.4
resolution: "@babel/plugin-transform-modules-umd@npm:7.10.4"
dependencies:
"@babel/helper-module-transforms": ^7.10.4
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d760a231ed49b2b96ba7be1c50432a87ba9d893eb3b78b033a3c8df569e10af4fa5d6e38194bb21d65dc9887878482d7c85c99c6c33dcdd2bba7a851591fd7bb
languageName: node
linkType: hard
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.10.4"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0
checksum: 6ada7bc95e34c083f4d54b29ee866369a5d1b51db0df504aa5a16680bcf049d96f05469ba727da2225b6b74c6bd09303db63d79744d618da812fcdc208ddbb7d
languageName: node
linkType: hard
"@babel/plugin-transform-new-target@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-transform-new-target@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b803c12ef5282984c4de40a651768da924c3650e3d4ca26da11859e60b12c8b89c4bf1bc06d73eeb2387397480ee0dd98f4642ba4553f8a708ab53d0ae4c918b
languageName: node
linkType: hard
"@babel/plugin-transform-object-super@npm:^7.8.3":
version: 7.10.4