This repository has been archived by the owner on Sep 30, 2023. It is now read-only.
forked from editor-js/paragraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
6219 lines (5583 loc) · 213 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: 6
cacheKey: 8
"@babel/code-frame@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/code-frame@npm:7.10.1"
dependencies:
"@babel/highlight": ^7.10.1
checksum: 060b84203a06c288b7b2a3bcd7c9bb854b88ca5c82614b373cf244a67cbb65761a334805ec514d0de87ff78a2a2fc623eba15a565eb1a2d423ad3af89ed9ac22
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/compat-data@npm:7.10.1"
dependencies:
browserslist: ^4.12.0
invariant: ^2.2.4
semver: ^5.5.0
checksum: afdda2aa29053922d295f3580442eb803a256899112d8749fec80a0f698aecfa13989ed6be597327f0fb9c486c912d4ba274ec25917839650b6c66db0b64ae7f
languageName: node
linkType: hard
"@babel/core@npm:^7.10.2":
version: 7.10.2
resolution: "@babel/core@npm:7.10.2"
dependencies:
"@babel/code-frame": ^7.10.1
"@babel/generator": ^7.10.2
"@babel/helper-module-transforms": ^7.10.1
"@babel/helpers": ^7.10.1
"@babel/parser": ^7.10.2
"@babel/template": ^7.10.1
"@babel/traverse": ^7.10.1
"@babel/types": ^7.10.2
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: e15518d518407b2ba2fd5cbfdbd850c40da5a1ff17fa7591317373f51567c450c98b0a9ad7dbf49bb9a5fcb99317d98cb235e3869290e68c454f766a5ecb3e06
languageName: node
linkType: hard
"@babel/generator@npm:^7.10.1, @babel/generator@npm:^7.10.2":
version: 7.10.2
resolution: "@babel/generator@npm:7.10.2"
dependencies:
"@babel/types": ^7.10.2
jsesc: ^2.5.1
lodash: ^4.17.13
source-map: ^0.5.0
checksum: edf68a43984eabc7e08a4ad916e5b6242b8e8735bea982c1328f35242b8339a1b0e66cc81996171b8064881f4d4951316d279ce20153f667fe76d8a806fee62a
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-annotate-as-pure@npm:7.10.1"
dependencies:
"@babel/types": ^7.10.1
checksum: 6a8b5c0121254a855f3383b44b4ac904a98867d5a5bbc3035cd7f872d63034973ccdebb0bb54a273a61d762824c9d25e5c03669e9bea62517e182884ce7487df
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.10.1"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.10.1
"@babel/types": ^7.10.1
checksum: 6d9215fdd5877e58323c8d2d0d7b61ab93361b7f8e1c8419b7170d3e456fc947bbbf7130ceb3aab8ade0d5e725aef8188c274d8b6f5593a0607cdc26db470215
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.10.2":
version: 7.10.2
resolution: "@babel/helper-compilation-targets@npm:7.10.2"
dependencies:
"@babel/compat-data": ^7.10.1
browserslist: ^4.12.0
invariant: ^2.2.4
levenary: ^1.1.1
semver: ^5.5.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 0c82c6661d7d0bb56d36e3e51ca8b530eda0ac266bd21f415187d2809b766c3d33e81613cd8a0f4092efa90c89b1532617aaa566162fcf70e750c75225af40fe
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@npm:^7.10.1":
version: 7.10.2
resolution: "@babel/helper-create-class-features-plugin@npm:7.10.2"
dependencies:
"@babel/helper-function-name": ^7.10.1
"@babel/helper-member-expression-to-functions": ^7.10.1
"@babel/helper-optimise-call-expression": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
"@babel/helper-replace-supers": ^7.10.1
"@babel/helper-split-export-declaration": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: adb468439a002563b6a97950d9e3951c07e75a083bc9cc8c903a450972e6b9f232c4073c3cc87d8cb845595d2f2186ce1376e45bbd6a8a000daf71e338e64b69
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@npm:^7.10.1, @babel/helper-create-regexp-features-plugin@npm:^7.8.3":
version: 7.10.1
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.10.1"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.1
"@babel/helper-regex": ^7.10.1
regexpu-core: ^4.7.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 19a7b9666785db2b75b05cfe8b00c604a407f51935a588636bebf9aa751322ee6e2c266f1fd66242c25d8e434c920360e69fb07607544b26b577350aa10ac0f0
languageName: node
linkType: hard
"@babel/helper-define-map@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-define-map@npm:7.10.1"
dependencies:
"@babel/helper-function-name": ^7.10.1
"@babel/types": ^7.10.1
lodash: ^4.17.13
checksum: 467135c4ce2839ee77ac6426f9c206541593bbe95ffaed80939053645cef65d244d1be65e171d6c0189d5ebd7def33ff764a23b1866a1b02abf1ff25ae99a841
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-explode-assignable-expression@npm:7.10.1"
dependencies:
"@babel/traverse": ^7.10.1
"@babel/types": ^7.10.1
checksum: 02f25419b482bdb7d9a902e9fa50202706baf2b4968e0608cd73b74544903e251e2696986643ec76156040a60ee45af70f6bbecbd4435bd019a6d73a3aaf1c2c
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-function-name@npm:7.10.1"
dependencies:
"@babel/helper-get-function-arity": ^7.10.1
"@babel/template": ^7.10.1
"@babel/types": ^7.10.1
checksum: 2cfb37865d8bc8a4126efbd2d013e75e248a42b0d3e99e86a47648a709410538053fcd1c2cacad971beef6ac5b879b9e5ddcbc48da56de802b9d5100f43a0538
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-get-function-arity@npm:7.10.1"
dependencies:
"@babel/types": ^7.10.1
checksum: 726a74ce283c73631149da806f81756cdc8dae7fdb093becdaf7448bb8981b1c8307d181bcd7c6a5f17ef7ce806af2c258120cdddf30c5de772998e7faaac74e
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-hoist-variables@npm:7.10.1"
dependencies:
"@babel/types": ^7.10.1
checksum: c0280cd68865abbfde5d5854c62bb37f7bc38645fb0f000298a42cc1cd09bab66d3dc98539eefa92962e84c9a0cf67cab88d4b571ec017d1834c69ff01a93e67
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-member-expression-to-functions@npm:7.10.1"
dependencies:
"@babel/types": ^7.10.1
checksum: 1deabce2e05825a8b4b4a631ccc703828e3c071efc75f4eb916b13fe92f1ba34f773a4f04ccf32ee477e51023b9e3daaf86b34e4d773f3615460186b377e8cfb
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-module-imports@npm:7.10.1"
dependencies:
"@babel/types": ^7.10.1
checksum: ac09a1ddd9e02fa01bea8313c1b8a929e7551cbfd5ee5fa85974378e6c65b48dc12a2793e8f5db55f1339442db6d2d3e369d9811364cd80ede83cbc152f182c9
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-module-transforms@npm:7.10.1"
dependencies:
"@babel/helper-module-imports": ^7.10.1
"@babel/helper-replace-supers": ^7.10.1
"@babel/helper-simple-access": ^7.10.1
"@babel/helper-split-export-declaration": ^7.10.1
"@babel/template": ^7.10.1
"@babel/types": ^7.10.1
lodash: ^4.17.13
checksum: 2ead2fd5aee4b249c0b4a617089bd150cba5f38f9137841f6d8570d2781bea09ae983ded981cfe142f62a680494396a59fd0e1f1d8e71baf6fd28a2d131cc21b
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-optimise-call-expression@npm:7.10.1"
dependencies:
"@babel/types": ^7.10.1
checksum: 5d5dacbbb537caf40c21ede64ef60287e1528e0df86328bcdba190cd33961fc0c3399bb3aa781c790f3ec57d1a4eb001c4b678f86604a11a8b90fff171cb0411
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.1, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.10.1
resolution: "@babel/helper-plugin-utils@npm:7.10.1"
checksum: 8a47fa51089b75f796f33a6404818cc4439e9012fd5c33d3f01231b600cb493de14ebd0da9481e27afa76408355379c9c758d617fb4ba011ceac30bb6ce3ebb1
languageName: node
linkType: hard
"@babel/helper-regex@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-regex@npm:7.10.1"
dependencies:
lodash: ^4.17.13
checksum: 14f7cf6e8e5853c1ac666040c317934db05651878437d45a27a350c5f35b4a96c83e6ff02027de8eb7d934c2531fb9a890dc06612608d96a03ce6c752e76d533
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-remap-async-to-generator@npm:7.10.1"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.1
"@babel/helper-wrap-function": ^7.10.1
"@babel/template": ^7.10.1
"@babel/traverse": ^7.10.1
"@babel/types": ^7.10.1
checksum: 482c6368d86eec534d8c840f2a1ff690656b13761a085c854d0e2d33b935ec8bcd0b213036712195371643e349ac92f07d31a0878ec797fddd0105f9324a153f
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-replace-supers@npm:7.10.1"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.10.1
"@babel/helper-optimise-call-expression": ^7.10.1
"@babel/traverse": ^7.10.1
"@babel/types": ^7.10.1
checksum: 4e73df59d08c71bbcab6c4fe434eedccbcd05039ffaf65659cb2561181d015e2950527222705bdb01bad712ce65416177ca0fb3d32f71ad9f093d47ebb34d929
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-simple-access@npm:7.10.1"
dependencies:
"@babel/template": ^7.10.1
"@babel/types": ^7.10.1
checksum: 25276821d6b56a419f1c04be70eb31b163031d85bfbdb6529ad10793a58a038f73e578d8d6f9630550cde889869ac3621e902b782bc7c5363c115834bf77760d
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-split-export-declaration@npm:7.10.1"
dependencies:
"@babel/types": ^7.10.1
checksum: 4d3b1f503f47758e4311aed4fce4e9b4e5c9d4d24c788692696288029bf8c75f17d7936512b909d6dfdc5435f080ba1bdaecc25ce128bbac7244acc3b34fd83c
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-string-parser@npm:7.22.5"
checksum: 836851ca5ec813077bbb303acc992d75a360267aa3b5de7134d220411c852a6f17de7c0d0b8c8dcc0f567f67874c00f4528672b2a4f1bc978a3ada64c8c78467
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-validator-identifier@npm:7.10.1"
checksum: b701e658146c64a3c9848255a1beea06d0f8d37c6c193b78faed1dfa818c4bd4871d59e7c921d1e5b83b6135e8b8672667d19681ee41e286448f6c9c89de9acb
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-identifier@npm:7.22.5"
checksum: 7f0f30113474a28298c12161763b49de5018732290ca4de13cdaefd4fd0d635a6fe3f6686c37a02905fb1e64f21a5ee2b55140cf7b070e729f1bd66866506aea
languageName: node
linkType: hard
"@babel/helper-wrap-function@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helper-wrap-function@npm:7.10.1"
dependencies:
"@babel/helper-function-name": ^7.10.1
"@babel/template": ^7.10.1
"@babel/traverse": ^7.10.1
"@babel/types": ^7.10.1
checksum: 24584ece49f5b21861da92c96a736d4c666f000089d3e6127045ea4a4bacefe8134f619401fabfd6ee70eceefe486e7000bd2039bdd3a3fda8bd4c0c8a5b9dd6
languageName: node
linkType: hard
"@babel/helpers@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/helpers@npm:7.10.1"
dependencies:
"@babel/template": ^7.10.1
"@babel/traverse": ^7.10.1
"@babel/types": ^7.10.1
checksum: 13b549526a1ef4285ab98013cd51ad27effb47e150863077f78d59831db89a8080f0107a343e77cd178bee2e40a765d75fadeddb440f9f4bb503eb2e8b607054
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/highlight@npm:7.10.1"
dependencies:
"@babel/helper-validator-identifier": ^7.10.1
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: cb08ae79dd45e95c9e45ad6be68865a33e214b09b151a149039a840b65811516e7e8f4fe3951e7dd1b80166f8c9ef1a2707b67da117bc51315311aae584b7454
languageName: node
linkType: hard
"@babel/parser@npm:^7.10.1, @babel/parser@npm:^7.10.2":
version: 7.10.2
resolution: "@babel/parser@npm:7.10.2"
bin:
parser: ./bin/babel-parser.js
checksum: a24f6680d4b4475667bc91d2e9ea7fc390e4c659c39c6704dec7f4079a155b8519713158943db0b9c9244b292874dbee91e6d0a7390428242c4bccf2e852b773
languageName: node
linkType: hard
"@babel/plugin-proposal-async-generator-functions@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
"@babel/helper-remap-async-to-generator": ^7.10.1
"@babel/plugin-syntax-async-generators": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 348a8e09148be3e94d00a6d28810a8312683af7cddab32109c81b603b0fcf8392e5604792f8210773d8612b201b0bca08a9ff5dcd05494921c3c97638a2ef7d3
languageName: node
linkType: hard
"@babel/plugin-proposal-class-properties@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-proposal-class-properties@npm:7.10.1"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c2f0c7e4a82a69830a7397f75fbbf42dcc49158d771467f6ee3abe535069e671c6a3fc41cda765e06325204566853f018ffa3833a35e468911d07b027f0b790a
languageName: node
linkType: hard
"@babel/plugin-proposal-dynamic-import@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
"@babel/plugin-syntax-dynamic-import": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f48b9c66199dc23ace6f869a1095396b840ba6c4b49cf619aa1be7c28b103352609942f2c29eb61eb4058e62d286430ade679bdf16c75b5ba7f0dee153546e4d
languageName: node
linkType: hard
"@babel/plugin-proposal-json-strings@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-proposal-json-strings@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
"@babel/plugin-syntax-json-strings": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: aa7f36bb7cac2e81b4ac93bae1286c65e1021fde4de0ef1e3bb140913bae6b47242fda83b07f7458623365aa29202ffd924936911f857af1982d326aeee521e1
languageName: node
linkType: hard
"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
"@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 643f2e9dcdcf296544215666c9ad57d0f665dc99d188ff08e55a8eb4066cd388df6359424c3ce888cd0386fb6b9a1cac819f00273b6be085b1fd72a619e07032
languageName: node
linkType: hard
"@babel/plugin-proposal-numeric-separator@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
"@babel/plugin-syntax-numeric-separator": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: aa81edc189ac9a51a9e85850de452ec3da25a5aac7457cc6db61a835f7df062d1051aedc850700c2982bad289d0e4ddb71c68b810887ad7334fcdd5c0b7ee97a
languageName: node
linkType: hard
"@babel/plugin-proposal-object-rest-spread@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-proposal-object-rest-spread@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
"@babel/plugin-syntax-object-rest-spread": ^7.8.0
"@babel/plugin-transform-parameters": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: ea2f67a158e613fe64683d9cd60eda48cefef4e46ff0e02dab8bf3f46af0884b19aac0202ba171b9e489b52e6885ef81f8935f739e3213128386df79cf47b725
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-catch-binding@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-proposal-optional-catch-binding@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
"@babel/plugin-syntax-optional-catch-binding": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0f864ebc6b4443bf257c2d7505c6ba82d77f83afe4f8f6b6c19709d2a16294ababffe23cd9d47e5a78567ee6dc6bda0b726752a48b63cb16044b7ec311594e74
languageName: node
linkType: hard
"@babel/plugin-proposal-optional-chaining@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-proposal-optional-chaining@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
"@babel/plugin-syntax-optional-chaining": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a492e9b22db6771b7bd19409f5bb4ee4c69672e03393e8ce3bf1bece35b0b7fbfb109e74a2a85fbaaf497d9fb95723da667157982c43ceec635a4f6bc727b64f
languageName: node
linkType: hard
"@babel/plugin-proposal-private-methods@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-proposal-private-methods@npm:7.10.1"
dependencies:
"@babel/helper-create-class-features-plugin": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 31ed2172b9773f8ac1832681e4a5f90ea7c8e451682a52308c37db86c32890d766a9e2b9246dcdfca020708bf0f1aa6b33b2935fcb30d2b2ae71b1874301816a
languageName: node
linkType: hard
"@babel/plugin-proposal-unicode-property-regex@npm:^7.10.1, @babel/plugin-proposal-unicode-property-regex@npm:^7.4.4":
version: 7.10.1
resolution: "@babel/plugin-proposal-unicode-property-regex@npm:7.10.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 494d506900cfbc714d42ecb2d6fe5c905a68bfebced1776097b3d41db62403efa906524aab56b97262ef5030e524b6889c50fb56891d16549258b8da3a39f173
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: 7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-syntax-class-properties@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4e9043f941ce68afeb7c5d0a3d44ba53f19e0f1a221d6ecaf3305440888e161cf1dfd84761a6dab52b6cfcf52942614a86d191cf76aa0bd772f8fbf5194827ee
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: ce307af83cf433d4ec42932329fad25fa73138ab39c7436882ea28742e1c0066626d224e0ad2988724c82644e41601cef607b36194f695cb78a1fcdc959637bd
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: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a
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: 87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 78f63002a87bde636273aa256dad7ff48da0bdd60b504912ac62557c0879448f25e7b0a5594ccb96babd840b60abe0f53d3347c206649d87bcc911658b00b8d0
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: fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf
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: 910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9
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: eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-syntax-top-level-await@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 402b4356a41ba8884fd2487997db7acd6cd0935c30b0b9a1497170e68c3e42f56132e70f1018d89c42803c44256e10b9ccab1e72c12af72de437ade19b1613de
languageName: node
linkType: hard
"@babel/plugin-transform-arrow-functions@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-arrow-functions@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: aeb44feb8de02d236efb931cde5cccc0ca7b1893f8729e6f7982b18196684d6f6623161b537572c3a2ea5f6236dc2e1c3edebceb934d8f5ed66c35fc965149b9
languageName: node
linkType: hard
"@babel/plugin-transform-async-to-generator@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-async-to-generator@npm:7.10.1"
dependencies:
"@babel/helper-module-imports": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
"@babel/helper-remap-async-to-generator": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 73e4cfc7170e47284232d593c8d083f7662411f68ce99d36ede54ec7f497cba66ed53fdd7ec9b55f0002973cc25a777bd02fbd819a3e5f221034178097970b8b
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoped-functions@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f5897c9fee90eb6cdbaaf374efae00f893d75527fd12280ba6df3a7504d944c0d93f70abf0e9b48d140d2714d2188004278633f18ee3c9940fb054b373f5f1f7
languageName: node
linkType: hard
"@babel/plugin-transform-block-scoping@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-block-scoping@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
lodash: ^4.17.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c77edbe1c82ab301fad1d7e6b2dacfa9506ee0e5c182575b91fda346c8d5c929732e93bb6d237401429e219c53c6834f05ad67723f0c36cc991842f7b0a2c3a6
languageName: node
linkType: hard
"@babel/plugin-transform-classes@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-classes@npm:7.10.1"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.1
"@babel/helper-define-map": ^7.10.1
"@babel/helper-function-name": ^7.10.1
"@babel/helper-optimise-call-expression": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
"@babel/helper-replace-supers": ^7.10.1
"@babel/helper-split-export-declaration": ^7.10.1
globals: ^11.1.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c84487ab3d6a8f3b6edf00f9179184f5b44de6eb232983f9e64d12e4023540937b5fe512f86a6c300bd1d021cd14fab88060b641f5b66be1f88ffa68f8b45bb6
languageName: node
linkType: hard
"@babel/plugin-transform-computed-properties@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-computed-properties@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 07712cc6813509dea8877bb85b62458a030b4c203eb2d4e29534eb321949eb57f4afbc8d37417fb0ac883db97255ee40cfac42567e611a2ba3e64787c0c5dd52
languageName: node
linkType: hard
"@babel/plugin-transform-destructuring@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-destructuring@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8a93516547e69d4558d4947a7099a125fa560e0d9a79a859c2374a4c05dcb741387e9182d42f04da2b423d22c0daafc2787aa6df887ad589b951e93775a2437b
languageName: node
linkType: hard
"@babel/plugin-transform-dotall-regex@npm:^7.10.1, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.10.1
resolution: "@babel/plugin-transform-dotall-regex@npm:7.10.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 802a4a81fa38cb49ab3a247a76b1c153db453ac0e410660375ee96b232a44a458cc402cbe0d6fd92751ca5196ec256d221e78900dfe75afc094eddbd037eec43
languageName: node
linkType: hard
"@babel/plugin-transform-duplicate-keys@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7c9670415b6c6712686078fc7c34ab51b653db183cfb50efa7e2d556905ee52127c2c0469937759b5e72080ec8f9ed446fc9bc1feee7e1c7390063ced1923ac1
languageName: node
linkType: hard
"@babel/plugin-transform-exponentiation-operator@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.10.1"
dependencies:
"@babel/helper-builder-binary-assignment-operator-visitor": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8d8a3514315f5ed7466fcdeb3293051d2061bd8ceb22edc64cd032617823cd4d9bc897b990ddfd6a185887421ade3d47b35897c8f5248d343805159877c31d2d
languageName: node
linkType: hard
"@babel/plugin-transform-for-of@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-for-of@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cc976104f5ccda9a5f4959eae3243cd8331395cf7fd109d247e0001b86c60804389abcfbbadddfd756b5bac4c78a2077c7c9d88c6d61e50ca619e4214bb21cb6
languageName: node
linkType: hard
"@babel/plugin-transform-function-name@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-function-name@npm:7.10.1"
dependencies:
"@babel/helper-function-name": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7c55a7adc74239922287481c8ff516487b550117717e229175779f9cd7c2e0213b3defd7531e373833bf299d5d37b1fc4479e4520a255b78831d30fe6d5e2b08
languageName: node
linkType: hard
"@babel/plugin-transform-literals@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-literals@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 0527ffe7eeafff8a6c3d9cdd04749a261d568dd5f537f45ea9abf97820aade30402505b6268bb8d7c973dd9660ca9ddb9209a2278720443045c37c5a6b371804
languageName: node
linkType: hard
"@babel/plugin-transform-member-expression-literals@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 84b1ce1b9b04229639308ac0d7dcf9de8e495a3d36eaaa5445557698cd14f021242abdaa4783accfb6bc628b5b8f637a743f96f13bf010200f707fc53abe2955
languageName: node
linkType: hard
"@babel/plugin-transform-modules-amd@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-modules-amd@npm:7.10.1"
dependencies:
"@babel/helper-module-transforms": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: e891309c850ead1b7960e72e5fd802fcd760d434fdeb67a0e069de0f9f1e7dbdf484d40f9cad330ac1f4893c8eaf38f1aca71f1290a12dd67c54fca7cbb193b2
languageName: node
linkType: hard
"@babel/plugin-transform-modules-commonjs@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.10.1"
dependencies:
"@babel/helper-module-transforms": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
"@babel/helper-simple-access": ^7.10.1
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 107cd47bd061fe54e214d7e3f2b63830588446b9cef3b0d2042493823b7a9daa0405171e62e6516cb3937a9bf5f09858b5e0c3f071510508755f0878c2a74567
languageName: node
linkType: hard
"@babel/plugin-transform-modules-systemjs@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.10.1"
dependencies:
"@babel/helper-hoist-variables": ^7.10.1
"@babel/helper-module-transforms": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
babel-plugin-dynamic-import-node: ^2.3.3
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5aca440c0c9f75d75f1c61668990aa75309b1391d2d634ba076fa2b4b000bc7cdfb074331620012672b62b9f8f790c14a594eb5ca2e38f94ef7f6155e0bb4b48
languageName: node
linkType: hard
"@babel/plugin-transform-modules-umd@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-modules-umd@npm:7.10.1"
dependencies:
"@babel/helper-module-transforms": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b89d28d3d093ba9dff16af369a18acc74c73597388df3568ec6ba41a285040b7c4832559a249a67698d439985a8cc0b774b3e0a9cd8986c841d17f16da28bd2f
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: 1427526265b4f805cd05f12ca621676508b445d9959cf1ba3a61cfc1c75760ca2337efdf0dd30f4901224c52b307b5c3882813c829a7bd4cf03a8bb7453a4b94
languageName: node
linkType: hard
"@babel/plugin-transform-new-target@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-new-target@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4f7a6fd3b1f96fd4a65d9bb12586d68bc6807b4ac988af69d865845a2cea8c045c33a1c070fee04d4423bc05ca18081c7078bcd526d91c0b7e8a91058b9dc786
languageName: node
linkType: hard
"@babel/plugin-transform-object-super@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-object-super@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
"@babel/helper-replace-supers": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 476de6311db84c1997c51bf07e231e48e9f2e5f580d8de4e6d1c2dca92f487208fbf803b92be8d95cfef0157901494725a7232f5f7d67248692916f547f2f579
languageName: node
linkType: hard
"@babel/plugin-transform-parameters@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-parameters@npm:7.10.1"
dependencies:
"@babel/helper-get-function-arity": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d715892cebb5d97bf70d353e7569ed14c013512fbe02ae8067ab03cf104b5c488e7ef73a95aebb578e43d02fb78a3a8bdcb7e91b6a7da73636aef897e243dbaa
languageName: node
linkType: hard
"@babel/plugin-transform-property-literals@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-property-literals@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6012650ce35169465cfe4d1397907231caa84c03e1404f60bc74286e059cd4c7ffe8b22f23ed02d5740cb6b0258b0169899fce71108eb7577e6ad0532dd278ef
languageName: node
linkType: hard
"@babel/plugin-transform-regenerator@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-regenerator@npm:7.10.1"
dependencies:
regenerator-transform: ^0.14.2
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f96658786ca3fad2f66e26e546d3771ac17de7f5abc65578247141f9ba559efdbf0bcd263ba240f1719330a128ca567734e38f60b7dd278d11131aafcd2f5659
languageName: node
linkType: hard
"@babel/plugin-transform-reserved-words@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-reserved-words@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 6a719a94dfc5e2bb42491f6ed220390e82872b714d2a4c7e3d711744feb29646ab7c7c86b096e1210550c403aac1f11fbd0bb7c14921d31cd295c5e4ca81434d
languageName: node
linkType: hard
"@babel/plugin-transform-shorthand-properties@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-shorthand-properties@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1aac1228fd8af605ea748a0a02b811ae15b8551a6a28beb8ffa7d4d47756c9c268b1742eedc5446ccd003cfeec0b706d174d68fed2c04119247f307b02e08d34
languageName: node
linkType: hard
"@babel/plugin-transform-spread@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-spread@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 80ac2a301f0eadf9c4240cdb7705b96fb0876e5a1e1ea0f176c5762321b13d8d0d7a16a0c7d352c5aa68200143b1f506a33f85cea7b0f832060fd352894fa8ce
languageName: node
linkType: hard
"@babel/plugin-transform-sticky-regex@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-sticky-regex@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
"@babel/helper-regex": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 52cceb4012f4b35a6e3bd17254f4cd63c1a61b7a5c54f9c29dc95601e883c1fd76266ae3792ba33912c4b0291e9589d5062a33a409ceaa376d2f18f8d97ecde9
languageName: node
linkType: hard
"@babel/plugin-transform-template-literals@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-template-literals@npm:7.10.1"
dependencies:
"@babel/helper-annotate-as-pure": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: a83d15ad878e6e398a4962f6ca69fe1ad9f5143998f6b5b8c6aae3f3c82ef49c7f563e3926c198c42602f1dddec534b7ef06b65dbabbaaa8c767838b55fb0c4b
languageName: node
linkType: hard
"@babel/plugin-transform-typeof-symbol@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-typeof-symbol@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9acf7d97f3ef67ae9a62ad220faf6e61bdd0071f1b8bb7e4a09b78400ca2f0730a09f0e704c830359badcd846ed65156224ee993d9b65fdb48ca5c4dedf1167d
languageName: node
linkType: hard
"@babel/plugin-transform-unicode-escapes@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-unicode-escapes@npm:7.10.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3ea07aaa9d5c7f7238855d0dda92769860cb6f2783d8bf9808455ba6f90a52a9fc2f9d2d82439e05122bf0e8cd4b78fc7099a7cebeb575b2853fa1afb8bced62
languageName: node
linkType: hard
"@babel/plugin-transform-unicode-regex@npm:^7.10.1":
version: 7.10.1
resolution: "@babel/plugin-transform-unicode-regex@npm:7.10.1"
dependencies:
"@babel/helper-create-regexp-features-plugin": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bea9f428386e8eaf68a4d0babfe5e0e371ea6b82e872cb1276bd5826917c81019b0e3dc0f0c9d0a5c45c6da70fc5662d79835aeeadce4544cca4a9196975b294
languageName: node
linkType: hard
"@babel/preset-env@npm:^7.10.2":
version: 7.10.2
resolution: "@babel/preset-env@npm:7.10.2"
dependencies:
"@babel/compat-data": ^7.10.1
"@babel/helper-compilation-targets": ^7.10.2
"@babel/helper-module-imports": ^7.10.1
"@babel/helper-plugin-utils": ^7.10.1
"@babel/plugin-proposal-async-generator-functions": ^7.10.1
"@babel/plugin-proposal-class-properties": ^7.10.1
"@babel/plugin-proposal-dynamic-import": ^7.10.1
"@babel/plugin-proposal-json-strings": ^7.10.1
"@babel/plugin-proposal-nullish-coalescing-operator": ^7.10.1
"@babel/plugin-proposal-numeric-separator": ^7.10.1
"@babel/plugin-proposal-object-rest-spread": ^7.10.1
"@babel/plugin-proposal-optional-catch-binding": ^7.10.1
"@babel/plugin-proposal-optional-chaining": ^7.10.1
"@babel/plugin-proposal-private-methods": ^7.10.1
"@babel/plugin-proposal-unicode-property-regex": ^7.10.1
"@babel/plugin-syntax-async-generators": ^7.8.0
"@babel/plugin-syntax-class-properties": ^7.10.1
"@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-numeric-separator": ^7.10.1
"@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.10.1
"@babel/plugin-transform-arrow-functions": ^7.10.1
"@babel/plugin-transform-async-to-generator": ^7.10.1
"@babel/plugin-transform-block-scoped-functions": ^7.10.1
"@babel/plugin-transform-block-scoping": ^7.10.1
"@babel/plugin-transform-classes": ^7.10.1
"@babel/plugin-transform-computed-properties": ^7.10.1