-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathyarn.lock
8792 lines (7866 loc) · 296 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/cli@npm:7.8.4":
version: 7.8.4
resolution: "@babel/cli@npm:7.8.4"
dependencies:
chokidar: ^2.1.8
commander: ^4.0.1
convert-source-map: ^1.1.0
fs-readdir-recursive: ^1.1.0
glob: ^7.0.0
lodash: ^4.17.13
make-dir: ^2.1.0
slash: ^2.0.0
source-map: ^0.5.0
peerDependencies:
"@babel/core": ^7.0.0-0
dependenciesMeta:
chokidar:
optional: true
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
checksum: 02467836257466d41f18a31002cd1846450be191b0d8e89cbcd60b25fdee6e7e3bb7331c2f576e21a5abbb436d8078cf78f82fd700b3001fc23de7cbcb316f3d
languageName: node
linkType: hard
"@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: d57fde42b4403e78c783112564c3a83a2618834ff1aebf90226825171862aea4b24e4b750a2ca2b22f23a3216e1601df2c720c8f0e5041e81033b6f77a2a21d8
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.8.4":
version: 7.8.5
resolution: "@babel/compat-data@npm:7.8.5"
dependencies:
browserslist: ^4.8.5
invariant: ^2.2.4
semver: ^5.5.0
checksum: 40f6e2882709b3af9aeb0dd58ded44e7117c105f29cb3eca22eb25f003a1458a833704a333ab77ceebf2517c7cf626d5fc62bd4be061c15fb1127437bb3761a6
languageName: node
linkType: hard
"@babel/core@npm:7.8.4":
version: 7.8.4
resolution: "@babel/core@npm:7.8.4"
dependencies:
"@babel/code-frame": ^7.8.3
"@babel/generator": ^7.8.4
"@babel/helpers": ^7.8.4
"@babel/parser": ^7.8.4
"@babel/template": ^7.8.3
"@babel/traverse": ^7.8.4
"@babel/types": ^7.8.3
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: 6a4b0f2b9343982fe4e9902c2a61484341b8b0db5623e492ef6240e54875b2c7054e4dd6c273c94ba439176872c8ae05a60f62a4aaea39d8d2acbf01fc11cb2a
languageName: node
linkType: hard
"@babel/generator@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/generator@npm:7.8.4"
dependencies:
"@babel/types": ^7.8.3
jsesc: ^2.5.1
lodash: ^4.17.13
source-map: ^0.5.0
checksum: 986f510234d883953f13126feaef439e67147fb9cae58a08db2cd6652410041736af3ee6b2f80151b79ceeb918c3718cfc23ef245e6c4bc6f44df8a28fdfb8ca
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: 58e3e9b63b5a843bfe19313b18e0ed21e944698bd3e0782127ebed9ec4afafa172e7af23f6cd0316880d3d5b6a67f375a24835fdc28b6df1b5c7a7a1f99f1a6c
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: 3ad33abf05b01952ad2dd9f8d3974070e89864ece087a51a97570e37e79a75b4283a66a395501bb3dbc36e4f0afaaf43213bc75703e78dd45c8f500392490806
languageName: node
linkType: hard
"@babel/helper-call-delegate@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-call-delegate@npm:7.8.3"
dependencies:
"@babel/helper-hoist-variables": ^7.8.3
"@babel/traverse": ^7.8.3
"@babel/types": ^7.8.3
checksum: 942eaa80118fdc81ee8c17b28b387265d541fc2dc736237a03ed3201faf985d89f48bb08f93830cc974cbaa3cc19817cc106f020f06b14f5465ad429abacacdc
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/helper-compilation-targets@npm:7.8.4"
dependencies:
"@babel/compat-data": ^7.8.4
browserslist: ^4.8.5
invariant: ^2.2.4
levenary: ^1.1.1
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 8320794f9abdfee062739759dde574bfe97b110ecc91a9210f247fcf03e279f7b6d18974e766853d7c3a5e8058d50a62438ee718d2d8289b121bf1f5e98f16dc
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.8.3"
dependencies:
"@babel/helper-regex": ^7.8.3
regexpu-core: ^4.6.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: fb304595bba75fa1ca770fc10008af425208182b45f0a916d077640088d8e00581a610cc5a52a5f710994e87698d4d790995aa438bb87d320ad0f24bbb12f11b
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: 79257f064a0d18d7080724d08a4f92fc086c3c5c3b2db4536222eb0506704f3126ae5576bb31bfac2c74b9ca98e11b69518a44d7381f1c046981c6bd3c44a8f8
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: 4554c4356b391ebe70a692cb69f76a2764cf56afcf74c198a0805555fcbaafaa8ed64b973a5ee5ddd166abb11653d9aebb846d8f01391cd0da773bb7ab110703
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: 71711d0a6ae991579a715deb8a754b893f18d65a459ae04371ac215d76654ee0fdff84990f39165563caaf5866f52e4da4ef2be6ca8e5ebaee425d1cea0135cf
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: 6f846d71ce4c09712ce8a7f3222284258d55ae175bed82d79709a0d904d05c1d7d9782148936ccd5b8dd49abb72348bf6c343a8f04aa26e9c462d3789fc3d03d
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: b9a10376f8abd285028bd30bf56bb2deae510c72f86133e8d0ef85fe71c6791812f2c1a942a14f48a4617425def2c4f7eaedc0dba46fdab89e2f885529db7848
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: ddbff59c0a3f4f2b9b2ad8b9acc3133aab02de9a0e3d97196c6dc64c2ce9a477a87677e1a49cdf7760fb392d3408318694eff95551fb883198956cfa0766352e
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: cb4ff93391045b91465b3f41550c067d1928ef0c08a1520f2fed107bbd0e9bfc1f48aea9351868379ff3b837b0bca947e542d9a1a97ddd76e96ca6790d9d33c9
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-module-transforms@npm:7.8.3"
dependencies:
"@babel/helper-module-imports": ^7.8.3
"@babel/helper-simple-access": ^7.8.3
"@babel/helper-split-export-declaration": ^7.8.3
"@babel/template": ^7.8.3
"@babel/types": ^7.8.3
lodash: ^4.17.13
checksum: 14f22f81ca34e1c54961d0506e46b41c18a34c047913a7e8fd803ecbb6f52ca6fae9296a101d445072fd83e67108ebc7171ed8491a0c14523a81d373741d6b4f
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: 890b3af77e9ad8f210d6510323af8ca8071ec37090f5d3690fc6a8a9f01baf13c136b149b18f52b117ad9838a6955778a3b997c62b506f3f7a8963ebf7fbacd1
languageName: node
linkType: hard
"@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: cfcd5cec63d22b10dde61a92b5c2283540b149286c1506b002c023057e17de0cdb6ff94e2428b7d0330cb63a3229f2b07b67bc532bd4c9a3097c9a09be8b516d
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: 0dfc2855dfd01de08c30a39f98e731921bfe23584999fe34231b78dcfe1cdb7746478505f8c3d9e79e095b58904ccc926bcbc83a2f41bd0ccec95bb12ab7b349
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: 7bd932777850ac3955ffd5303e07e841e84e564b9c4719dcc3218523b63a3f50b02ab1c6b592ce7a3be8a031cfe3a613e40ee215532540c82270ca379a8688c1
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/helper-replace-supers@npm:7.8.3"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.8.3
"@babel/helper-optimise-call-expression": ^7.8.3
"@babel/traverse": ^7.8.3
"@babel/types": ^7.8.3
checksum: 9a3256142419e04adc1bfff03e826731af611eec380e06a09de7982b49d563949955002448f0b5687878ad76780591a77460c396d9a8424375c159605eaca7a0
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: 23cecf5be21afb32e7413d1c5c45afe0cd6864503e2dc9871d330eafc5894018e94486c145138c5aa48595587402661df48c383380eade31ce682e7f8d833351
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: 20b0dc2498a17df1c71599c13c439fc9bb8fb987d5e47679f7dd88f723447afd76b02048f68755dc8c2032eb6860ef8a540ecf4145c01e7eddac38ac954c9f28
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: 3491aa291f106918acf75c8427f1d242a50a560816929a9def0a2c0ae78338569cc9a9aceff93b6f05e4cda3f27e4f3998b2609714a227afba10b754ae69b37a
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: 6debb608626dcf94bc37f89b6f8851c5dd2fe969dbda2f24a7c5f41fcd17d49d223823cd6ace6eb2b9a9df1b049f42295d9c65f40a452e5d53ea2038fdc8ee88
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: 45074f1f6a9d79d3af6c6d20bd08cf2fa139bba6db0ad9224cba8835b4c49dc385c77e249f8a83ffa7a1bda3d72a382ba0e789e39a5ea8c5531cc35e06db2de4
languageName: node
linkType: hard
"@babel/node@npm:7.8.4":
version: 7.8.4
resolution: "@babel/node@npm:7.8.4"
dependencies:
"@babel/register": ^7.8.3
commander: ^4.0.1
core-js: ^3.2.1
lodash: ^4.17.13
node-environment-flags: ^1.0.5
regenerator-runtime: ^0.13.3
resolve: ^1.13.1
v8flags: ^3.1.1
peerDependencies:
"@babel/core": ^7.0.0-0
bin:
babel-node: ./bin/babel-node.js
checksum: 80c88289bedc9a2808067df54b56b7faa9f2f1222cc588490e7a0afce46c82ea4685b1c42a752271b74cee825279e36e6b383d413023391178f2f4a006de0861
languageName: node
linkType: hard
"@babel/parser@npm:^7.8.3, @babel/parser@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/parser@npm:7.8.4"
bin:
parser: ./bin/babel-parser.js
checksum: 95a27d5c49d26576ac092da2c8e4ccbbd560dc0a198d0888411124ccd834535459ec35f0c33f50f3e8b189df392cf4e5e974243cdda884f4812b6537b419d309
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: cc47570818ef7c2598563fa3e2cec9dbcfd98e59ae8c8b1b21cad9b5f525d62da634d353175ba11f76f53d96ce355cde36ac7ea923ca4acbc436c68c8225286d
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: f397d108446320c453392cc6f26146ecdfbb7111182c51884b005903b7e1f44020862822138c3baae09887e4a29e5e1f968a97568632552961346376138e83f0
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: be8f2c544cc54be04c0964b23e013fdf38e52483faa6c4162409ff1e6712ee00087f1b1343e961fa62553911f6639067d5ae9171a3b9ee1992d88adad6971bd5
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: 67baad6d3f8a8b22bc5493c4e4bc8f2a929244135307ad31aa674ddafb94df2e2417324352d4003d6aafce9c8eec0281b397a135f7cdad278c5a77da34ff6a60
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.8.3"
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: 2973b4d7439bfab2ca08dfa904602afd900d36b74e5935781bf283205c2fccbe8ccd1697d059acdec357fad15f45be24ea8f2cc93ef267d6432ffc429e998d8a
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: 7ec1307254331ac1f95c20f45d7f20a2e69aeb6aa8beab78aea31db628cece400bf7b57d3aa1c9648c3f748fffdd096b2ca4c3f703bcc1e1c710eae14a64c7e4
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-syntax-optional-chaining": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c8eaa9659b076dc4985098ec472622056fbba9036066c963b2a65f81014647c2e56e3e43eeb4657cb6078f9d28c28c84714286816cfab5b1af3eaa95542c3c5d
languageName: node
linkType: hard
"@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: e1931d1677847d3c817b2a14915993b80aaae767bbccfa0ca653a755fd6235179400b73c45cdc05717fefacbd204e746a974bc0e6e3af6d146eb990b0cde0c9b
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: cf04cfbfae85ec9af0c65b6a479715eb2660980dc703c03f2ede0a14ab785d9817d1ae0ee78421880a0dc078dd1b5a644854e5ad87014e7fc485cf9c85ed2d46
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: eda9b2cd8f7ad094d1dc3b5c0ef0cf0c6e1e35f6a6de16fab55a619b36221d1082bd31552ffc9a1168e6e1b3af1878ecd5b03fe05687a44b96b0aa6a9eb52383
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: ae795288606bf32e22ba13128694a4a6ab5f114c8450beb54c41127a705c5f792ff56af342e51d79725d036abd699e12c6eb2696956b5ab5165723155daa4937
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: ba21e57a1706e9e8e6859014cb31a8c1dd78f673b4c58151297602066dfa6bbe0fc75286d520bd751775b007d4492ac98aaebced82fae3f31d63214ba5c870af
languageName: node
linkType: hard
"@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: f9e29400c150922dd963654b3cf005dcf5c8dbbb4cfb75848c32e95b32a6b328a3c16855ed24e2a487b65ef4dd9a81e4e86298a599690eed5b6b69cf0c8a8732
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: 2941392a8b41aabcdee990dd2ed21fffa5a0c81f290ed686b8ab1dab0fa6e2340db71a46844e7f62c29f2239494878e01458d9b181d5185e663a7b7d91a236ca
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: 1d75c93e0d54f49dc464416b3da8622ebf43f5249869274644bd4e24ac17e69673be87038216dfa0b1e2fbe9542b4515af80dcda765a58f616ba503b4547d4f1
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: bb45e68398119ed8b213924f53a51a81d66ae3d0db2afebb947301d141a5d723756d6142196113c426216fae5a65ca38d4087cb6143ce56f7f18fe8f168d123c
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: c34b498975267126d849235476a580db5640487aaddafa50e4edc0bec849793f865563747d36e2f36153cad2185d7b6de29078673c516969fd781f117eaab472
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: e6230a44bbad83f36b0f2867e73593b62df434100a4f73c754a9935c19ba461197096ff0ea9bb88380457e331d89a95fdf46ba04cbbc2ed3198baaec9af8d88a
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: 5d4d2e81aa06c98c00b5831bc637bebcbbe6dee0971141119d991175aa0ab16514bdfabbb100c552083fc2802a4509d3bc23806e45f1f4453d41430f8be80227
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: c89e29f8143f34adee8032762c0823a9a2501945ea6d7ef9995d197d5430c9ebcfcde0ec7aa14bde8b472d9670a8eb1a85a2d57304179663d625510005d89dfe
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-classes@npm:7.8.3"
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.3
"@babel/helper-split-export-declaration": ^7.8.3
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 882749f122007358ff2b78db318ca1fb6a14307730e56d51536b22534ea5ddbae354e9bbf51860108037c79cbb5d5bb138b6ab00b25bf7493853869cfa2d1ae4
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: efe68f49b02a66c6829afe0a593044e185f8a338024aada16bf6d5ccceece43a6cda639d2a3baccefe089c89d793d03c4f0525fea5c0e586ff520a5f1e001627
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: d9c2393b8390d8c71ff1578a48d3a34737428d82c72fb47c4ba65b0cd244371e1fb42d7dac1d35ef4f60e11b706f771de109b1f37d2b671d010e2312b6344c8b
languageName: node
linkType: hard
"@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: 96659c1b99d138cf859877ce84f3c431a598ca18d41e36b76eda39c2ce60da4060658e85ecfc353ac985c8d30952d9303f476af5b3d7128d59dec9b3bcfc56ab
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: 08a180952d49386b99798c896994928a3664fa71c15cd907491c81178a1cb9152c157b9b683276db00b9e54d9cb6d5a97ea6c22d4a7995d552fe17c26c3da9a2
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: 59fe4b47f3e421b9c7cdd39aa785dc92c73842dae59ee2ea2fa68a561f3547f6bf5bf6a9bc7e920ba7972780c27f2dcda3d3a90fb36af0ed66f8b17ef2f8488c
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-transform-for-of@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9d8d84c063f5e0127530e3c77e15b40b6f34bdfa133e4a5e514b4200a1c4285ec9a8ef197b9bc5294a3e458bcfc6fc81ec1cdbe01182f1803a9cbad29d23321e
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: adc7efe76d6fd56a2698f1598b45019325c5b0af7f2c70890ef6813bd0aed4f932db738b1e759ff8f88653882195d0436452d06ed53185b46a9ce68fceb4e305
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: b578ee51e4bcf27c4032aa6f0ef6316e279267aeb4322ba50799b60a802dd6ac4edc22f646ae73d65d67f5fe76dae0cfc28ce09a115de7d658e817adcbcf1f34
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: d277a19d1b5a629d6b03fdac5aa515b1a2f21eaf9f87fb11de9d8da95c2578cd5db196efc6eba4b0592dc7bdd1c0f7d2c47f4d7707430eaddd0c57c6e23949fd
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-modules-amd@npm:7.8.3"
dependencies:
"@babel/helper-module-transforms": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
babel-plugin-dynamic-import-node: ^2.3.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 627ea78b7face13992623b4ba06179daa02bdd65484e0e650610bbcc1a766d57ce9946972c197cffccdadf10f69b9b85737999070686bab15391cf54cc3ab884
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.8.3"
dependencies:
"@babel/helper-module-transforms": ^7.8.3
"@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: 8a57c7209ffb621b4ae220617b38869cf1ebacb3d29bc09d59ad9a9f0506886144e22fe8ed8fb57ce6faaaac43401040ed14b8e8840ab37cc4ffe05e955a8bb1
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.8.3"
dependencies:
"@babel/helper-hoist-variables": ^7.8.3
"@babel/helper-module-transforms": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
babel-plugin-dynamic-import-node: ^2.3.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 72de71d38791663fa8a5ee0ccbaa6c9dedea65210b50fabdf42d9fe20c7556e18e822db5960d98248518a245b73c339b96997735f80557be5e5b790691ae4dc7
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-modules-umd@npm:7.8.3"
dependencies:
"@babel/helper-module-transforms": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5b013d28de98fd4eedc82453671ecefcea59ba08adc622968533794d87a38aff95e5ec2dd1719ca64f87c96abf0b3f3664c29b97e66bd1b2ef6cab85d7cc7531
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: aa67520ea34495a713cc19c238b30ee2136b3a963103c1de69170f4d76ee2e181715ac312474f8866ee833058751fc9fd3aac5971912f02b61f6f7e84f15d7e7
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: d25d0dc3945c2a2a4ad66f6de098737ea95f8e561debd89a5f24d6e5fd87e5a4c66c6593e12c212d7d023aae1dfbc0186f31e66512541f3cd1e7b4febff3cadb
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: 3febbf9b73f0a8586e455c2642e05dc9ffcb149b0f88ca4f6f649e33188cd6e0ac1d2ad8cb26fca3186cc55df77469b1d519631b304f02125f6136c2aa6e8c7e
languageName: node
linkType: hard
"@babel/plugin-transform-parameters@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-transform-parameters@npm:7.8.4"
dependencies:
"@babel/helper-call-delegate": ^7.8.3
"@babel/helper-get-function-arity": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: af4a2a5060e7902222aab79fb5cd0369bab5a07a5d882a84ebd81a11f7e433010b9ea70f1c4d1a8561c160611f66c39a757bc946dd5120565206bb3e10be3243
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: 7b27aecbed28cc24ddfa9f69148ee980f8db89da1475500ec2253fbbd137003057554030f2781b2f882cae493716b02eb7d2d6a31ecf3890a00e67bd4f415c10
languageName: node
linkType: hard
"@babel/plugin-transform-regenerator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-regenerator@npm:7.8.3"
dependencies:
regenerator-transform: ^0.14.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 45ab1c98e3d66561a8ee6927dc29fb991d3e2bd1712f123d8a8b3a3b3c923af5b5cda11c9b6f9f58eacd4058c325580928b0149a85872660db0701f2ed0e3938
languageName: node
linkType: hard
"@babel/plugin-transform-reserved-words@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-reserved-words@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8c78ad9b0ee694ade709609707cc1cd5d1f4ac3db04aba5a5b8c8a3439750cdb8cbed245ed7bc4ae16dc58e7f71348bfb24db468930abd06764a0c7ad39feee6
languageName: node
linkType: hard
"@babel/plugin-transform-shorthand-properties@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-shorthand-properties@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 520e4a716622bad4d7b0ab784a0c8c41e2f71f4fc616bb6147367bb9b9253feda5d30bfd43fd48efde73cb89c7331d5795c5a308cdd5c1fb57d99b9909f612c9
languageName: node
linkType: hard
"@babel/plugin-transform-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 056393f5729a405271a632f319908ffaed3769f2d3fc799b6a2629f4363bcd8cc62b3d47660b355408d08091318878302d679591f843cd3b2166922bdabdca95
languageName: node
linkType: hard
"@babel/plugin-transform-sticky-regex@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-sticky-regex@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
"@babel/helper-regex": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 91ad16cbce97ce00cc44c0aa5baa1e34ee52443fb871a369feb552ecdbf33ac1ed25e00c6cadc2661a118754e364b0de06c172f2f06ac53ec9c06960e19fb173
languageName: node
linkType: hard
"@babel/plugin-transform-template-literals@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-template-literals@npm:7.8.3"
dependencies:
"@babel/helper-annotate-as-pure": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 76be3203428eb2f7178b6844023d517e911d5795e065277461ea9382dfbaf4a2a9b85ab3fed5335b8965bef9d23fbeddf9f8fda2ced9fe86c85dcca563ebf493
languageName: node
linkType: hard
"@babel/plugin-transform-typeof-symbol@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-transform-typeof-symbol@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a87a2b5681aac78b29b8442b3f12d822ef9b5badfa1ed4e4ca20a1767f821667e5858e7bc2cbec67b99e5d69103af4c8905e0293b28d8f8c0422e6088a60c768
languageName: node
linkType: hard
"@babel/plugin-transform-unicode-regex@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-transform-unicode-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: 345fb40befca87d448243ba111b8fecfc9cf92bdea64baf876fc380d1a8730b189bac11d7eb6ea58622568dbc3ce1bc109617f00736e2e0acbeb1b9b32030c9b
languageName: node
linkType: hard
"@babel/polyfill@npm:7.8.3":
version: 7.8.3
resolution: "@babel/polyfill@npm:7.8.3"
dependencies:
core-js: ^2.6.5
regenerator-runtime: ^0.13.2
checksum: 5b0c68cdbb80550c471dac0c1fbbb88d0a8a438938f1c5299815df31828d9aa42923fb7b13adaf6311d6ce3b687629a454f5451ae3e926fc9e3e2aa3f1d68942
languageName: node
linkType: hard
"@babel/preset-env@npm:7.8.4":
version: 7.8.4
resolution: "@babel/preset-env@npm:7.8.4"
dependencies:
"@babel/compat-data": ^7.8.4
"@babel/helper-compilation-targets": ^7.8.4
"@babel/helper-module-imports": ^7.8.3
"@babel/helper-plugin-utils": ^7.8.3
"@babel/plugin-proposal-async-generator-functions": ^7.8.3
"@babel/plugin-proposal-dynamic-import": ^7.8.3
"@babel/plugin-proposal-json-strings": ^7.8.3
"@babel/plugin-proposal-nullish-coalescing-operator": ^7.8.3
"@babel/plugin-proposal-object-rest-spread": ^7.8.3
"@babel/plugin-proposal-optional-catch-binding": ^7.8.3
"@babel/plugin-proposal-optional-chaining": ^7.8.3
"@babel/plugin-proposal-unicode-property-regex": ^7.8.3
"@babel/plugin-syntax-async-generators": ^7.8.0
"@babel/plugin-syntax-dynamic-import": ^7.8.0
"@babel/plugin-syntax-json-strings": ^7.8.0
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.0
"@babel/plugin-syntax-object-rest-spread": ^7.8.0
"@babel/plugin-syntax-optional-catch-binding": ^7.8.0
"@babel/plugin-syntax-optional-chaining": ^7.8.0
"@babel/plugin-syntax-top-level-await": ^7.8.3
"@babel/plugin-transform-arrow-functions": ^7.8.3
"@babel/plugin-transform-async-to-generator": ^7.8.3
"@babel/plugin-transform-block-scoped-functions": ^7.8.3
"@babel/plugin-transform-block-scoping": ^7.8.3
"@babel/plugin-transform-classes": ^7.8.3
"@babel/plugin-transform-computed-properties": ^7.8.3
"@babel/plugin-transform-destructuring": ^7.8.3
"@babel/plugin-transform-dotall-regex": ^7.8.3
"@babel/plugin-transform-duplicate-keys": ^7.8.3
"@babel/plugin-transform-exponentiation-operator": ^7.8.3
"@babel/plugin-transform-for-of": ^7.8.4
"@babel/plugin-transform-function-name": ^7.8.3
"@babel/plugin-transform-literals": ^7.8.3
"@babel/plugin-transform-member-expression-literals": ^7.8.3
"@babel/plugin-transform-modules-amd": ^7.8.3
"@babel/plugin-transform-modules-commonjs": ^7.8.3
"@babel/plugin-transform-modules-systemjs": ^7.8.3
"@babel/plugin-transform-modules-umd": ^7.8.3
"@babel/plugin-transform-named-capturing-groups-regex": ^7.8.3
"@babel/plugin-transform-new-target": ^7.8.3
"@babel/plugin-transform-object-super": ^7.8.3
"@babel/plugin-transform-parameters": ^7.8.4
"@babel/plugin-transform-property-literals": ^7.8.3
"@babel/plugin-transform-regenerator": ^7.8.3
"@babel/plugin-transform-reserved-words": ^7.8.3
"@babel/plugin-transform-shorthand-properties": ^7.8.3
"@babel/plugin-transform-spread": ^7.8.3
"@babel/plugin-transform-sticky-regex": ^7.8.3
"@babel/plugin-transform-template-literals": ^7.8.3
"@babel/plugin-transform-typeof-symbol": ^7.8.4
"@babel/plugin-transform-unicode-regex": ^7.8.3
"@babel/types": ^7.8.3
browserslist: ^4.8.5
core-js-compat: ^3.6.2
invariant: ^2.2.2
levenary: ^1.1.1
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 85e1f9877cd8162195f11a88a998e74494a71e1fd0d4968fe56e88444bdc6ece519e9d22068aa2cced0c08d2410e9b8bbc5260e05414ed9876d721197629ead5
languageName: node
linkType: hard
"@babel/register@npm:7.8.3, @babel/register@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/register@npm:7.8.3"
dependencies:
find-cache-dir: ^2.0.0
lodash: ^4.17.13
make-dir: ^2.1.0
pirates: ^4.0.0
source-map-support: ^0.5.16
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: dbfd627510d36613930b74d7831641431e0a506c525a0853e8f5be6f19388a0419194d0a8503fe361471155c1c6f10ad7bbe2e63152f3d87863f53229f5d04ae