forked from babel/babel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
15610 lines (14109 loc) · 561 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
cacheKey: 7
"@babel-internal/runtime-integration-rollup@workspace:test/runtime-integration/rollup":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-rollup@workspace:test/runtime-integration/rollup"
dependencies:
"@babel/runtime": "workspace:*"
"@rollup/plugin-commonjs": ^17.1.0
"@rollup/plugin-node-resolve": ^11.2.0
rollup: ^2.39.1
languageName: unknown
linkType: soft
"@babel-internal/runtime-integration-src@workspace:test/runtime-integration/src":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-src@workspace:test/runtime-integration/src"
dependencies:
"@babel/runtime": "workspace:*"
"@babel/runtime-corejs3": "workspace:*"
languageName: unknown
linkType: soft
"@babel-internal/runtime-integration-webpack-3@workspace:test/runtime-integration/webpack-3":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-webpack-3@workspace:test/runtime-integration/webpack-3"
dependencies:
"@babel/runtime": "workspace:*"
webpack: ^3.12.0
languageName: unknown
linkType: soft
"@babel-internal/runtime-integration-webpack-4@workspace:test/runtime-integration/webpack-4":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-webpack-4@workspace:test/runtime-integration/webpack-4"
dependencies:
"@babel/runtime": "workspace:*"
webpack: ^4.46.0
webpack-cli: ^4.5.0
languageName: unknown
linkType: soft
"@babel-internal/runtime-integration-webpack-5@workspace:test/runtime-integration/webpack-5":
version: 0.0.0-use.local
resolution: "@babel-internal/runtime-integration-webpack-5@workspace:test/runtime-integration/webpack-5"
dependencies:
"@babel/runtime": "workspace:*"
webpack: ^5.24.1
webpack-cli: ^4.5.0
languageName: unknown
linkType: soft
"@babel/cli@npm:^7.13.0":
version: 7.13.14
resolution: "@babel/cli@npm:7.13.14"
dependencies:
"@nicolo-ribaudo/chokidar-2": 2.1.8-no-fsevents
chokidar: ^3.4.0
commander: ^4.0.1
convert-source-map: ^1.1.0
fs-readdir-recursive: ^1.1.0
glob: ^7.0.0
lodash: ^4.17.19
make-dir: ^2.1.0
slash: ^2.0.0
source-map: ^0.5.0
peerDependencies:
"@babel/core": ^7.0.0-0
dependenciesMeta:
"@nicolo-ribaudo/chokidar-2":
optional: true
chokidar:
optional: true
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
checksum: 6259a752460c92685ce6c4d4a63f2010081add799388bce003b8a2278e9ce94fd6b470ab511fbab509da2034631539d030932059ca343b1a09433ed88032e91f
languageName: node
linkType: hard
"@babel/cli@workspace:packages/babel-cli":
version: 0.0.0-use.local
resolution: "@babel/cli@workspace:packages/babel-cli"
dependencies:
"@babel/core": "workspace:*"
"@babel/helper-fixtures": "workspace:*"
"@nicolo-ribaudo/chokidar-2": "condition:BABEL_8_BREAKING ? : 2.1.8-no-fsevents"
chokidar: ^3.4.0
commander: ^4.0.1
convert-source-map: ^1.1.0
fs-readdir-recursive: ^1.1.0
glob: ^7.0.0
make-dir: ^2.1.0
rimraf: ^3.0.0
slash: "condition:BABEL_8_BREAKING ? ^3.0.0 : ^2.0.0"
source-map: ^0.5.0
peerDependencies:
"@babel/core": ^7.0.0-0
dependenciesMeta:
"@nicolo-ribaudo/chokidar-2":
optional: true
chokidar:
optional: true
bin:
babel: ./bin/babel.js
babel-external-helpers: ./bin/babel-external-helpers.js
languageName: unknown
linkType: soft
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/code-frame@npm:7.12.13"
dependencies:
"@babel/highlight": ^7.12.13
checksum: 471532bb7cb4a300bd1a3201e75e7c0c83ebfb4e0e6610fdb53270521505d7efe0961258de61e7b1970ef3092a97ed675248ee1a44597912a1f61f903d85ef41
languageName: node
linkType: hard
"@babel/code-frame@workspace:*, @babel/code-frame@workspace:^7.12.13, @babel/code-frame@workspace:packages/babel-code-frame":
version: 0.0.0-use.local
resolution: "@babel/code-frame@workspace:packages/babel-code-frame"
dependencies:
"@babel/highlight": "workspace:^7.12.13"
"@types/chalk": ^2.0.0
chalk: ^2.0.0
strip-ansi: ^4.0.0
languageName: unknown
linkType: soft
"@babel/compat-data@npm:^7.13.12, @babel/compat-data@npm:^7.13.15, @babel/compat-data@npm:^7.13.8":
version: 7.13.15
resolution: "@babel/compat-data@npm:7.13.15"
checksum: 6abe95cbd36e54217cdcc51829e377cf31451ed0a64ff43cc82e0ce728d9e265990c5e079d5c3f9ee0afd49e20d6c90112fe2093ed0699c2ffc62f5172df24fa
languageName: node
linkType: hard
"@babel/compat-data@workspace:*, @babel/compat-data@workspace:^7.13.15, @babel/compat-data@workspace:^7.13.8, @babel/compat-data@workspace:^7.14.0, @babel/compat-data@workspace:packages/babel-compat-data":
version: 0.0.0-use.local
resolution: "@babel/compat-data@workspace:packages/babel-compat-data"
dependencies:
"@mdn/browser-compat-data": ^3.1.1
core-js-compat: ^3.9.0
electron-to-chromium: 1.3.672
languageName: unknown
linkType: soft
"@babel/core-7.12@npm:@babel/core@7.12.9":
version: 7.12.9
resolution: "@babel/core@npm:7.12.9"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.12.5
"@babel/helper-module-transforms": ^7.12.1
"@babel/helpers": ^7.12.5
"@babel/parser": ^7.12.7
"@babel/template": ^7.12.7
"@babel/traverse": ^7.12.9
"@babel/types": ^7.12.7
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.19
resolve: ^1.3.2
semver: ^5.4.1
source-map: ^0.5.0
checksum: beefb9f490cfff7cafc02e5a11148297a71260ee18f5fdf6e14bf5694bc28431eec3813a91d0f0fc8c6122c5133d90d3261dadf45cb914d7d340a5b3077fd9bd
languageName: node
linkType: hard
"@babel/core@npm:7.13.15, @babel/core@npm:^7.1.0, @babel/core@npm:^7.13.1, @babel/core@npm:^7.7.5":
version: 7.13.15
resolution: "@babel/core@npm:7.13.15"
dependencies:
"@babel/code-frame": ^7.12.13
"@babel/generator": ^7.13.9
"@babel/helper-compilation-targets": ^7.13.13
"@babel/helper-module-transforms": ^7.13.14
"@babel/helpers": ^7.13.10
"@babel/parser": ^7.13.15
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.15
"@babel/types": ^7.13.14
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.1.2
semver: ^6.3.0
source-map: ^0.5.0
checksum: 818377633fa89d9b333c1a71625f9398e9e5a92270209cc8b5392e36385b5fe61210b2b31fb114ffe255974a3341cdfaa9e89a0fa81fabba9f6c14332fb72a02
languageName: node
linkType: hard
"@babel/core@workspace:*, @babel/core@workspace:^7.12.13, @babel/core@workspace:^7.13.15, @babel/core@workspace:packages/babel-core":
version: 0.0.0-use.local
resolution: "@babel/core@workspace:packages/babel-core"
dependencies:
"@babel/code-frame": "workspace:^7.12.13"
"@babel/generator": "workspace:^7.14.0"
"@babel/helper-compilation-targets": "workspace:^7.13.16"
"@babel/helper-module-transforms": "condition:BABEL_8_BREAKING ? : workspace:^7.14.0"
"@babel/helper-transform-fixture-test-runner": "workspace:*"
"@babel/helpers": "workspace:^7.14.0"
"@babel/parser": "workspace:^7.14.0"
"@babel/template": "workspace:^7.12.13"
"@babel/traverse": "workspace:^7.14.0"
"@babel/types": "workspace:^7.14.0"
"@types/convert-source-map": ^1.5.1
"@types/debug": ^4.1.0
"@types/resolve": ^1.3.2
"@types/semver": ^5.4.0
"@types/source-map": ^0.5.0
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.2
json5: ^2.1.2
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.0"
source-map: ^0.5.0
languageName: unknown
linkType: soft
"@babel/eslint-config-internal@workspace:*, @babel/eslint-config-internal@workspace:eslint/babel-eslint-config-internal":
version: 0.0.0-use.local
resolution: "@babel/eslint-config-internal@workspace:eslint/babel-eslint-config-internal"
peerDependencies:
"@babel/eslint-parser": ^7.10.4
eslint-plugin-flowtype: ^4.6.0
languageName: unknown
linkType: soft
"@babel/eslint-parser@workspace:*, @babel/eslint-parser@workspace:^7.12.1, @babel/eslint-parser@workspace:eslint/babel-eslint-parser":
version: 0.0.0-use.local
resolution: "@babel/eslint-parser@workspace:eslint/babel-eslint-parser"
dependencies:
"@babel/core": "workspace:*"
dedent: ^0.7.0
eslint: ^7.5.0
eslint-scope: ^5.1.0
eslint-visitor-keys: ^1.3.0
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.0"
peerDependencies:
"@babel/core": ">=7.11.0"
eslint: ">=7.5.0"
languageName: unknown
linkType: soft
"@babel/eslint-plugin-development-internal@workspace:*, @babel/eslint-plugin-development-internal@workspace:eslint/babel-eslint-plugin-development-internal":
version: 0.0.0-use.local
resolution: "@babel/eslint-plugin-development-internal@workspace:eslint/babel-eslint-plugin-development-internal"
dependencies:
eslint: ^7.5.0
peerDependencies:
"@babel/eslint-parser": ">=7.11.0"
eslint: ">=7.5.0"
languageName: unknown
linkType: soft
"@babel/eslint-plugin-development@workspace:*, @babel/eslint-plugin-development@workspace:eslint/babel-eslint-plugin-development":
version: 0.0.0-use.local
resolution: "@babel/eslint-plugin-development@workspace:eslint/babel-eslint-plugin-development"
dependencies:
eslint: ^7.5.0
languageName: unknown
linkType: soft
"@babel/eslint-plugin@workspace:eslint/babel-eslint-plugin":
version: 0.0.0-use.local
resolution: "@babel/eslint-plugin@workspace:eslint/babel-eslint-plugin"
dependencies:
clone-deep: ^4.0.1
eslint: ^7.5.0
eslint-rule-composer: ^0.3.0
peerDependencies:
"@babel/eslint-parser": ">=7.11.0"
eslint: ">=7.5.0"
languageName: unknown
linkType: soft
"@babel/eslint-shared-fixtures@workspace:eslint/babel-eslint-shared-fixtures":
version: 0.0.0-use.local
resolution: "@babel/eslint-shared-fixtures@workspace:eslint/babel-eslint-shared-fixtures"
dependencies:
"@babel/core": "workspace:^7.12.13"
"@babel/plugin-proposal-class-properties": "workspace:^7.12.13"
"@babel/plugin-proposal-decorators": "workspace:^7.12.13"
"@babel/plugin-proposal-do-expressions": "workspace:^7.12.13"
"@babel/plugin-proposal-pipeline-operator": "workspace:^7.12.13"
"@babel/plugin-proposal-private-methods": "workspace:^7.12.13"
"@babel/plugin-syntax-export-default-from": "workspace:^7.12.13"
"@babel/preset-env": "workspace:^7.12.13"
"@babel/preset-flow": "workspace:^7.12.13"
"@babel/preset-react": "workspace:^7.12.13"
eslint: ^7.5.0
languageName: unknown
linkType: soft
"@babel/eslint-tests@workspace:eslint/babel-eslint-tests":
version: 0.0.0-use.local
resolution: "@babel/eslint-tests@workspace:eslint/babel-eslint-tests"
dependencies:
"@babel/eslint-parser": "workspace:^7.12.1"
dedent: ^0.7.0
eslint: ^7.5.0
eslint-plugin-import: ^2.22.0
languageName: unknown
linkType: soft
"@babel/generator@npm:^7.12.5, @babel/generator@npm:^7.13.9":
version: 7.13.9
resolution: "@babel/generator@npm:7.13.9"
dependencies:
"@babel/types": ^7.13.0
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: d9cf7db910dd703a55c3ba147a8024564d51de06f5e3e61aef6ca197bcd80a6cb0a633fe4688c8c9f6226c70ee6f32a747050a8e420972b45cc98a6b3fc5ae66
languageName: node
linkType: hard
"@babel/generator@workspace:*, @babel/generator@workspace:^7.12.13, @babel/generator@workspace:^7.14.0, @babel/generator@workspace:packages/babel-generator":
version: 0.0.0-use.local
resolution: "@babel/generator@workspace:packages/babel-generator"
dependencies:
"@babel/helper-fixtures": "workspace:*"
"@babel/parser": "workspace:*"
"@babel/types": "workspace:^7.14.0"
"@types/jsesc": ^2.5.0
"@types/source-map": ^0.5.0
jsesc: "condition: BABEL_8_BREAKING ? ^3.0.2 : ^2.5.1"
source-map: ^0.5.0
languageName: unknown
linkType: soft
"@babel/helper-annotate-as-pure@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-annotate-as-pure@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: e82f457eb92080bba1e0d59386af32596fdf7aa3fd5aa557ef7fab2e1833f45c8818873f135294ee95210856103ae10a6e86789ca72e259a98ee8b6745e70319
languageName: node
linkType: hard
"@babel/helper-annotate-as-pure@workspace:^7.10.4, @babel/helper-annotate-as-pure@workspace:^7.12.13, @babel/helper-annotate-as-pure@workspace:packages/babel-helper-annotate-as-pure":
version: 0.0.0-use.local
resolution: "@babel/helper-annotate-as-pure@workspace:packages/babel-helper-annotate-as-pure"
dependencies:
"@babel/types": "workspace:^7.12.13"
languageName: unknown
linkType: soft
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.12.13"
dependencies:
"@babel/helper-explode-assignable-expression": ^7.12.13
"@babel/types": ^7.12.13
checksum: 38bd626f3893fa82267c9e5fa43353c897b75dc18259ffdc1c81b0fa5ac26284a4aaca465550fff14daed159f4d1502c4c95028740dacef1018d787d58173e2b
languageName: node
linkType: hard
"@babel/helper-builder-binary-assignment-operator-visitor@workspace:^7.12.13, @babel/helper-builder-binary-assignment-operator-visitor@workspace:packages/babel-helper-builder-binary-assignment-operator-visitor":
version: 0.0.0-use.local
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@workspace:packages/babel-helper-builder-binary-assignment-operator-visitor"
dependencies:
"@babel/helper-explode-assignable-expression": "workspace:^7.12.13"
"@babel/types": "workspace:^7.12.13"
languageName: unknown
linkType: soft
"@babel/helper-builder-react-jsx@workspace:^7.12.13, @babel/helper-builder-react-jsx@workspace:packages/babel-helper-builder-react-jsx":
version: 0.0.0-use.local
resolution: "@babel/helper-builder-react-jsx@workspace:packages/babel-helper-builder-react-jsx"
dependencies:
"@babel/helper-annotate-as-pure": "workspace:^7.12.13"
"@babel/types": "workspace:^7.12.13"
languageName: unknown
linkType: soft
"@babel/helper-compilation-targets@npm:^7.13.0, @babel/helper-compilation-targets@npm:^7.13.13, @babel/helper-compilation-targets@npm:^7.13.8":
version: 7.13.13
resolution: "@babel/helper-compilation-targets@npm:7.13.13"
dependencies:
"@babel/compat-data": ^7.13.12
"@babel/helper-validator-option": ^7.12.17
browserslist: ^4.14.5
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 2d77381d5fa0e488e86b2abbf5c299a6c1b0e490c95d3ca9a63fac8d45713a182a32fedabceb207588681ae09fc1c19c5418c26e686ae752d46102c9537f9ec7
languageName: node
linkType: hard
"@babel/helper-compilation-targets@workspace:^7.13.16, @babel/helper-compilation-targets@workspace:^7.13.8, @babel/helper-compilation-targets@workspace:packages/babel-helper-compilation-targets":
version: 0.0.0-use.local
resolution: "@babel/helper-compilation-targets@workspace:packages/babel-helper-compilation-targets"
dependencies:
"@babel/compat-data": "workspace:^7.13.15"
"@babel/core": "workspace:*"
"@babel/helper-validator-option": "workspace:^7.12.17"
browserslist: ^4.14.5
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-create-class-features-plugin@npm:^7.13.0":
version: 7.13.11
resolution: "@babel/helper-create-class-features-plugin@npm:7.13.11"
dependencies:
"@babel/helper-function-name": ^7.12.13
"@babel/helper-member-expression-to-functions": ^7.13.0
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/helper-replace-supers": ^7.13.0
"@babel/helper-split-export-declaration": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0
checksum: 14da13eeb919216abd1f933a6ee0d7fab3a04899c091b6a4e7857be547249c0ac4e071689d97c2af5649e8688dcc99139039f74a500ca6728f9f7297a59e8d8c
languageName: node
linkType: hard
"@babel/helper-create-class-features-plugin@workspace:^7.13.0, @babel/helper-create-class-features-plugin@workspace:^7.13.11, @babel/helper-create-class-features-plugin@workspace:^7.14.0, @babel/helper-create-class-features-plugin@workspace:packages/babel-helper-create-class-features-plugin":
version: 0.0.0-use.local
resolution: "@babel/helper-create-class-features-plugin@workspace:packages/babel-helper-create-class-features-plugin"
dependencies:
"@babel/core": "workspace:*"
"@babel/helper-annotate-as-pure": "workspace:^7.12.13"
"@babel/helper-function-name": "workspace:^7.12.13"
"@babel/helper-member-expression-to-functions": "workspace:^7.13.12"
"@babel/helper-optimise-call-expression": "workspace:^7.12.13"
"@babel/helper-plugin-test-runner": "workspace:*"
"@babel/helper-replace-supers": "workspace:^7.13.12"
"@babel/helper-split-export-declaration": "workspace:^7.12.13"
"@babel/preset-env": "workspace:*"
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-create-regexp-features-plugin@npm:^7.12.13":
version: 7.12.17
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.12.17"
dependencies:
"@babel/helper-annotate-as-pure": ^7.12.13
regexpu-core: ^4.7.1
peerDependencies:
"@babel/core": ^7.0.0
checksum: ffb4fbca4026ac733bc43e1e6751120fecd377476373ad6bafb3eb653431beaee1de1664293f9233921f96db56c489175c162b70002237f1dc235e12b9111a93
languageName: node
linkType: hard
"@babel/helper-create-regexp-features-plugin@workspace:^7.12.13, @babel/helper-create-regexp-features-plugin@workspace:packages/babel-helper-create-regexp-features-plugin":
version: 0.0.0-use.local
resolution: "@babel/helper-create-regexp-features-plugin@workspace:packages/babel-helper-create-regexp-features-plugin"
dependencies:
"@babel/core": "workspace:*"
"@babel/helper-annotate-as-pure": "workspace:^7.12.13"
"@babel/helper-plugin-test-runner": "workspace:*"
regexpu-core: ^4.7.1
peerDependencies:
"@babel/core": ^7.0.0
languageName: unknown
linkType: soft
"@babel/helper-define-map@workspace:^7.12.13, @babel/helper-define-map@workspace:packages/babel-helper-define-map":
version: 0.0.0-use.local
resolution: "@babel/helper-define-map@workspace:packages/babel-helper-define-map"
dependencies:
"@babel/helper-function-name": "workspace:^7.12.13"
"@babel/types": "workspace:^7.13.12"
languageName: unknown
linkType: soft
"@babel/helper-define-polyfill-provider@npm:^0.2.0":
version: 0.2.0
resolution: "@babel/helper-define-polyfill-provider@npm:0.2.0"
dependencies:
"@babel/helper-compilation-targets": ^7.13.0
"@babel/helper-module-imports": ^7.12.13
"@babel/helper-plugin-utils": ^7.13.0
"@babel/traverse": ^7.13.0
debug: ^4.1.1
lodash.debounce: ^4.0.8
resolve: ^1.14.2
semver: ^6.1.2
peerDependencies:
"@babel/core": ^7.4.0-0
checksum: 575785f62b10ee5cd9d8c092b6077f8bad8eed42ac50a8d55b82430c6958f94da11f5b20de650e31b400f7c7a0af08b6e4476669fd2a3b24414d1a9db89d531f
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@npm:^7.12.13":
version: 7.13.0
resolution: "@babel/helper-explode-assignable-expression@npm:7.13.0"
dependencies:
"@babel/types": ^7.13.0
checksum: 7379d0f0e9448da9c446c867413e23da7c17a5efa6e7dac8803d491b16c61854e8c1cc4f01c0c65030c0ae96542df7d3977825f834c70a3beef8016c3466c4fe
languageName: node
linkType: hard
"@babel/helper-explode-assignable-expression@workspace:^7.12.13, @babel/helper-explode-assignable-expression@workspace:packages/babel-helper-explode-assignable-expression":
version: 0.0.0-use.local
resolution: "@babel/helper-explode-assignable-expression@workspace:packages/babel-helper-explode-assignable-expression"
dependencies:
"@babel/traverse": "workspace:*"
"@babel/types": "workspace:^7.13.0"
languageName: unknown
linkType: soft
"@babel/helper-fixtures@workspace:*, @babel/helper-fixtures@workspace:^7.13.13, @babel/helper-fixtures@workspace:packages/babel-helper-fixtures":
version: 0.0.0-use.local
resolution: "@babel/helper-fixtures@workspace:packages/babel-helper-fixtures"
dependencies:
"@types/semver": ^7.3.4
semver: "condition:BABEL_8_BREAKING ? ^7.3.4 : ^6.3.0"
languageName: unknown
linkType: soft
"@babel/helper-function-name@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-function-name@npm:7.12.13"
dependencies:
"@babel/helper-get-function-arity": ^7.12.13
"@babel/template": ^7.12.13
"@babel/types": ^7.12.13
checksum: 25f03f303be790618437dc49c6df758d362112a564361d2eae66b58fda4f5ec09e62875473b18090b939c8d3d60b36aa7c9f688768b7fade511512d02ac9d3d0
languageName: node
linkType: hard
"@babel/helper-function-name@workspace:^7.12.13, @babel/helper-function-name@workspace:packages/babel-helper-function-name":
version: 0.0.0-use.local
resolution: "@babel/helper-function-name@workspace:packages/babel-helper-function-name"
dependencies:
"@babel/helper-get-function-arity": "workspace:^7.12.13"
"@babel/template": "workspace:^7.12.13"
"@babel/types": "workspace:^7.12.13"
languageName: unknown
linkType: soft
"@babel/helper-get-function-arity@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-get-function-arity@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: cfb5c39959ea9f1cc21ee0f4a23054be66a615fa5392f25763ea98f0c690a5b47500af9a63f28a42a2fb3f699684c113c45a95c4ce6303dfecb3358e32e56c76
languageName: node
linkType: hard
"@babel/helper-get-function-arity@workspace:^7.12.13, @babel/helper-get-function-arity@workspace:packages/babel-helper-get-function-arity":
version: 0.0.0-use.local
resolution: "@babel/helper-get-function-arity@workspace:packages/babel-helper-get-function-arity"
dependencies:
"@babel/types": "workspace:^7.12.13"
languageName: unknown
linkType: soft
"@babel/helper-hoist-variables@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-hoist-variables@npm:7.13.0"
dependencies:
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
checksum: dae64c4d490fe1721f3bde984297711e7009a9d595e275cf725f3aec0e2183eb3cfcff00bbb2823c4e3845c5852dcea99be0db339941ba9a3229fa6e0314afc5
languageName: node
linkType: hard
"@babel/helper-hoist-variables@workspace:^7.13.0, @babel/helper-hoist-variables@workspace:^7.13.16, @babel/helper-hoist-variables@workspace:packages/babel-helper-hoist-variables":
version: 0.0.0-use.local
resolution: "@babel/helper-hoist-variables@workspace:packages/babel-helper-hoist-variables"
dependencies:
"@babel/traverse": "workspace:^7.13.15"
"@babel/types": "workspace:^7.13.16"
languageName: unknown
linkType: soft
"@babel/helper-member-expression-to-functions@npm:^7.13.0, @babel/helper-member-expression-to-functions@npm:^7.13.12":
version: 7.13.12
resolution: "@babel/helper-member-expression-to-functions@npm:7.13.12"
dependencies:
"@babel/types": ^7.13.12
checksum: 2c075f72e5bda1432c74484548272577485d45c4d6c7cc9e84c5d053eaa6e0890e93c9b018bab97f65cbb81ac04dd9cdca73d5ae0e94b03cfc00d10972b99185
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@workspace:^7.13.12, @babel/helper-member-expression-to-functions@workspace:packages/babel-helper-member-expression-to-functions":
version: 0.0.0-use.local
resolution: "@babel/helper-member-expression-to-functions@workspace:packages/babel-helper-member-expression-to-functions"
dependencies:
"@babel/traverse": "workspace:^7.12.17"
"@babel/types": "workspace:^7.13.12"
languageName: unknown
linkType: soft
"@babel/helper-module-imports@npm:^7.10.4, @babel/helper-module-imports@npm:^7.12.13, @babel/helper-module-imports@npm:^7.13.12":
version: 7.13.12
resolution: "@babel/helper-module-imports@npm:7.13.12"
dependencies:
"@babel/types": ^7.13.12
checksum: 4d1d3364bec0820e50c782b5a5c81e7987c260c14772bc594ca8dbfdb3b6e43bd9b4e5071fd2a5f777c822dc7440781fa904f643e2069755db9ba5033cb2beac
languageName: node
linkType: hard
"@babel/helper-module-imports@workspace:^7.12.13, @babel/helper-module-imports@workspace:^7.13.12, @babel/helper-module-imports@workspace:packages/babel-helper-module-imports":
version: 0.0.0-use.local
resolution: "@babel/helper-module-imports@workspace:packages/babel-helper-module-imports"
dependencies:
"@babel/core": "workspace:*"
"@babel/traverse": "workspace:*"
"@babel/types": "workspace:^7.13.12"
languageName: unknown
linkType: soft
"@babel/helper-module-transforms-BABEL_8_BREAKING-false@npm:@babel/helper-module-transforms@workspace:^7.14.0, @babel/helper-module-transforms@workspace:^7.13.0, @babel/helper-module-transforms@workspace:^7.14.0, @babel/helper-module-transforms@workspace:packages/babel-helper-module-transforms":
version: 0.0.0-use.local
resolution: "@babel/helper-module-transforms@workspace:packages/babel-helper-module-transforms"
dependencies:
"@babel/helper-module-imports": "workspace:^7.13.12"
"@babel/helper-replace-supers": "workspace:^7.13.12"
"@babel/helper-simple-access": "workspace:^7.13.12"
"@babel/helper-split-export-declaration": "workspace:^7.12.13"
"@babel/helper-validator-identifier": "workspace:^7.14.0"
"@babel/template": "workspace:^7.12.13"
"@babel/traverse": "workspace:^7.14.0"
"@babel/types": "workspace:^7.14.0"
languageName: unknown
linkType: soft
"@babel/helper-module-transforms@condition:BABEL_8_BREAKING ? : workspace:^7.14.0":
version: 0.0.0-condition-19c4f6
resolution: "@babel/helper-module-transforms@condition:BABEL_8_BREAKING?:workspace:^7.14.0#19c4f6"
dependencies:
"@babel/helper-module-transforms-BABEL_8_BREAKING-false": "npm:@babel/helper-module-transforms@workspace:^7.14.0"
checksum: e20666322832e8ef18b5b17a27dd12d081b29375087299d867c99e00b7c9ab976833eba5647ead13e51877ff8275367b3ead82a4fe623550010a7e619dee5e3a
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.12.1, @babel/helper-module-transforms@npm:^7.13.0, @babel/helper-module-transforms@npm:^7.13.14":
version: 7.13.14
resolution: "@babel/helper-module-transforms@npm:7.13.14"
dependencies:
"@babel/helper-module-imports": ^7.13.12
"@babel/helper-replace-supers": ^7.13.12
"@babel/helper-simple-access": ^7.13.12
"@babel/helper-split-export-declaration": ^7.12.13
"@babel/helper-validator-identifier": ^7.12.11
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.13
"@babel/types": ^7.13.14
checksum: 576e86d0d41674e01703754a16e94495e424c7972f932e1eedb30206092b410b3659c0d0a7a06c61e024cee9b6020215db4732903ae49ebbd19d813feb0a90da
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-optimise-call-expression@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: 5e4df5da4a45d7b7c100307efdc11f9fb460f943b4db1c60ddbdf57c3a7cbeecc8dea8980f4a9d4f3c38071b04d0e7c95af213229bcc1c13f17eb7293a6298a9
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@workspace:^7.12.13, @babel/helper-optimise-call-expression@workspace:packages/babel-helper-optimise-call-expression":
version: 0.0.0-use.local
resolution: "@babel/helper-optimise-call-expression@workspace:packages/babel-helper-optimise-call-expression"
dependencies:
"@babel/generator": "workspace:*"
"@babel/parser": "workspace:*"
"@babel/types": "workspace:^7.12.13"
languageName: unknown
linkType: soft
"@babel/helper-plugin-test-runner@workspace:*, @babel/helper-plugin-test-runner@workspace:packages/babel-helper-plugin-test-runner":
version: 0.0.0-use.local
resolution: "@babel/helper-plugin-test-runner@workspace:packages/babel-helper-plugin-test-runner"
dependencies:
"@babel/helper-transform-fixture-test-runner": "workspace:^7.13.10"
languageName: unknown
linkType: soft
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.13.0, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.13.0
resolution: "@babel/helper-plugin-utils@npm:7.13.0"
checksum: 229ac1917b43ad38732d2d4a9a826f87d8945719249efe1d6191f3e25ba6027a289af70380d82d62a03fc9e82558a0ea6f12739cbb55b64bb280d6b511b4ca65
languageName: node
linkType: hard
"@babel/helper-plugin-utils@workspace:^7.10.1, @babel/helper-plugin-utils@workspace:^7.10.4, @babel/helper-plugin-utils@workspace:^7.12.13, @babel/helper-plugin-utils@workspace:^7.13.0, @babel/helper-plugin-utils@workspace:packages/babel-helper-plugin-utils":
version: 0.0.0-use.local
resolution: "@babel/helper-plugin-utils@workspace:packages/babel-helper-plugin-utils"
languageName: unknown
linkType: soft
"@babel/helper-remap-async-to-generator@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-remap-async-to-generator@npm:7.13.0"
dependencies:
"@babel/helper-annotate-as-pure": ^7.12.13
"@babel/helper-wrap-function": ^7.13.0
"@babel/types": ^7.13.0
checksum: d4211801d482dd4ad48273a7500fcdadc3eb71f44c4d647a3cf5fbe1bc7486abb011976e8842fb8b8374b50d64bae20639a1092e84c2bcd566dfb9f033151b53
languageName: node
linkType: hard
"@babel/helper-remap-async-to-generator@workspace:^7.13.0, @babel/helper-remap-async-to-generator@workspace:packages/babel-helper-remap-async-to-generator":
version: 0.0.0-use.local
resolution: "@babel/helper-remap-async-to-generator@workspace:packages/babel-helper-remap-async-to-generator"
dependencies:
"@babel/helper-annotate-as-pure": "workspace:^7.12.13"
"@babel/helper-wrap-function": "workspace:^7.13.0"
"@babel/traverse": "workspace:*"
"@babel/types": "workspace:^7.13.0"
languageName: unknown
linkType: soft
"@babel/helper-replace-supers@npm:^7.12.13, @babel/helper-replace-supers@npm:^7.13.0, @babel/helper-replace-supers@npm:^7.13.12":
version: 7.13.12
resolution: "@babel/helper-replace-supers@npm:7.13.12"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.13.12
"@babel/helper-optimise-call-expression": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.12
checksum: 38b79cb56a9a5324e32567660fcafbac4efae6f2c2c2ef048deb2d022476fc1c7acfda5ab841f7135d07b4f39e62142f9d253cfe824232030432c86f94d226f1
languageName: node
linkType: hard
"@babel/helper-replace-supers@workspace:^7.12.13, @babel/helper-replace-supers@workspace:^7.13.0, @babel/helper-replace-supers@workspace:^7.13.12, @babel/helper-replace-supers@workspace:packages/babel-helper-replace-supers":
version: 0.0.0-use.local
resolution: "@babel/helper-replace-supers@workspace:packages/babel-helper-replace-supers"
dependencies:
"@babel/helper-member-expression-to-functions": "workspace:^7.13.12"
"@babel/helper-optimise-call-expression": "workspace:^7.12.13"
"@babel/traverse": "workspace:^7.13.0"
"@babel/types": "workspace:^7.13.12"
languageName: unknown
linkType: soft
"@babel/helper-simple-access@npm:^7.12.13, @babel/helper-simple-access@npm:^7.13.12":
version: 7.13.12
resolution: "@babel/helper-simple-access@npm:7.13.12"
dependencies:
"@babel/types": ^7.13.12
checksum: eff532a1572a4ac562c5918a409871ddf9baee9ece197b98a54622184d3b9e01bdd465597f27ca3d452e71638c913a14819cf261dc095a466032dfd92a88bc73
languageName: node
linkType: hard
"@babel/helper-simple-access@workspace:^7.13.12, @babel/helper-simple-access@workspace:packages/babel-helper-simple-access":
version: 0.0.0-use.local
resolution: "@babel/helper-simple-access@workspace:packages/babel-helper-simple-access"
dependencies:
"@babel/traverse": "workspace:^7.12.17"
"@babel/types": "workspace:^7.13.12"
languageName: unknown
linkType: soft
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: 2e690ed5659534f46387bde713d7c511865a309c5cd6f1d64ff94abdb64fe2e4d5e6cb6ed6c9856cbb16e9de60ecac86534b9d1eb93e877830442610889f6144
languageName: node
linkType: hard
"@babel/helper-skip-transparent-expression-wrappers@workspace:^7.12.1, @babel/helper-skip-transparent-expression-wrappers@workspace:packages/babel-helper-skip-transparent-expression-wrappers":
version: 0.0.0-use.local
resolution: "@babel/helper-skip-transparent-expression-wrappers@workspace:packages/babel-helper-skip-transparent-expression-wrappers"
dependencies:
"@babel/traverse": "workspace:*"
"@babel/types": "workspace:^7.12.1"
languageName: unknown
linkType: soft
"@babel/helper-split-export-declaration@npm:^7.12.13":
version: 7.12.13
resolution: "@babel/helper-split-export-declaration@npm:7.12.13"
dependencies:
"@babel/types": ^7.12.13
checksum: c8d529558c45855542b7094de7b08e6c6de34922037a71596545dbb7a3be6ebf61b8b3193afe85fa5c9c35bcb0cc94110866deab8028f73e500bdc62427532c9
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@workspace:^7.12.13, @babel/helper-split-export-declaration@workspace:packages/babel-helper-split-export-declaration":
version: 0.0.0-use.local
resolution: "@babel/helper-split-export-declaration@workspace:packages/babel-helper-split-export-declaration"
dependencies:
"@babel/types": "workspace:^7.12.13"
languageName: unknown
linkType: soft
"@babel/helper-transform-fixture-test-runner@workspace:*, @babel/helper-transform-fixture-test-runner@workspace:^7.13.10, @babel/helper-transform-fixture-test-runner@workspace:packages/babel-helper-transform-fixture-test-runner":
version: 0.0.0-use.local
resolution: "@babel/helper-transform-fixture-test-runner@workspace:packages/babel-helper-transform-fixture-test-runner"
dependencies:
"@babel/code-frame": "workspace:^7.12.13"
"@babel/core": "workspace:^7.13.15"
"@babel/helper-fixtures": "workspace:^7.13.13"
"@types/jest": ^25.2.2
babel-check-duplicated-nodes: ^1.0.0
quick-lru: 5.1.0
regenerator-runtime: ^0.13.7
source-map: ^0.5.0
languageName: unknown
linkType: soft
"@babel/helper-validator-identifier-baseline@npm:@babel/helper-validator-identifier@7.10.4":
version: 7.10.4
resolution: "@babel/helper-validator-identifier@npm:7.10.4"
checksum: 25098ef842e3ffecdd9a7216f6173da7ad7be1b0b3e454a9f6965055154b9ad7a4acd2f218ba3d2efc0821bdab97837b3cb815844af7d72f66f89d446a54efc6
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.12.11":
version: 7.12.11
resolution: "@babel/helper-validator-identifier@npm:7.12.11"
checksum: 18de432203264b501db2690b53370a4289dc56084f5a2c66de624b159ee28b8abaeb402b2b7584296d9261645d91ddb6bfd21125d3ffd9bf02e9262e77baf3d2
languageName: node
linkType: hard
"@babel/helper-validator-identifier@workspace:*, @babel/helper-validator-identifier@workspace:^7.12.11, @babel/helper-validator-identifier@workspace:^7.14.0, @babel/helper-validator-identifier@workspace:packages/babel-helper-validator-identifier":
version: 0.0.0-use.local
resolution: "@babel/helper-validator-identifier@workspace:packages/babel-helper-validator-identifier"
dependencies:
"@babel/helper-validator-identifier-baseline": "npm:@babel/helper-validator-identifier@7.10.4"
"@unicode/unicode-13.0.0": ^1.0.6
benchmark: ^2.1.4
charcodes: ^0.2.0
languageName: unknown
linkType: soft
"@babel/helper-validator-option@npm:^7.12.17":
version: 7.12.17
resolution: "@babel/helper-validator-option@npm:7.12.17"
checksum: 9201d17a5634b05a6f3d561b95e73a4e4f9ba2e56c55cfc3b9a2a9618c4090b4b507720ac7a2e77209e68dc9bdc00a59b5ba7ad9ecbca3fb2c9217e814b7b5a5
languageName: node
linkType: hard
"@babel/helper-validator-option@workspace:^7.12.17, @babel/helper-validator-option@workspace:packages/babel-helper-validator-option":
version: 0.0.0-use.local
resolution: "@babel/helper-validator-option@workspace:packages/babel-helper-validator-option"
languageName: unknown
linkType: soft
"@babel/helper-wrap-function@npm:^7.13.0":
version: 7.13.0
resolution: "@babel/helper-wrap-function@npm:7.13.0"
dependencies:
"@babel/helper-function-name": ^7.12.13
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
checksum: 89426304e5409454fe3a5082becb434152820d04b3de0687c8478ea15248a646a1598bc725659dd22d7ae651558fae65f9c352914a3562a4e657ba28195fcea9
languageName: node
linkType: hard
"@babel/helper-wrap-function@workspace:^7.12.13, @babel/helper-wrap-function@workspace:^7.13.0, @babel/helper-wrap-function@workspace:packages/babel-helper-wrap-function":
version: 0.0.0-use.local
resolution: "@babel/helper-wrap-function@workspace:packages/babel-helper-wrap-function"
dependencies:
"@babel/helper-function-name": "workspace:^7.12.13"
"@babel/template": "workspace:^7.12.13"
"@babel/traverse": "workspace:^7.13.0"
"@babel/types": "workspace:^7.13.0"
languageName: unknown
linkType: soft
"@babel/helpers@npm:^7.12.5, @babel/helpers@npm:^7.13.10":
version: 7.13.10
resolution: "@babel/helpers@npm:7.13.10"
dependencies:
"@babel/template": ^7.12.13
"@babel/traverse": ^7.13.0
"@babel/types": ^7.13.0
checksum: 1bc93126957b51108080ab1aa24997a9a10d5f395de54621ce9df7825cdbce878ad9d26886c927c3d9bcfd75d24972037ed5fb904fcd83fb92e5c8f8628f6b40
languageName: node
linkType: hard
"@babel/helpers@workspace:*, @babel/helpers@workspace:^7.14.0, @babel/helpers@workspace:packages/babel-helpers":
version: 0.0.0-use.local
resolution: "@babel/helpers@workspace:packages/babel-helpers"
dependencies:
"@babel/helper-plugin-test-runner": "workspace:*"
"@babel/template": "workspace:^7.12.13"
"@babel/traverse": "workspace:^7.14.0"
"@babel/types": "workspace:^7.14.0"
languageName: unknown
linkType: soft
"@babel/highlight@npm:^7.12.13":
version: 7.13.10
resolution: "@babel/highlight@npm:7.13.10"
dependencies:
"@babel/helper-validator-identifier": ^7.12.11
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 8f23d3b728422713bfab45bee1e7584f2a3d2e20c9c4d6153312b898c82e776bdc5b1b2afaf9433fddb21d70417f5b477c0bb1a48613324fd761117e19a5702b
languageName: node
linkType: hard
"@babel/highlight@workspace:^7.12.13, @babel/highlight@workspace:packages/babel-highlight":
version: 0.0.0-use.local
resolution: "@babel/highlight@workspace:packages/babel-highlight"
dependencies:
"@babel/helper-validator-identifier": "workspace:^7.14.0"
"@types/chalk": ^2.0.0
chalk: ^2.0.0
js-tokens: "condition:BABEL_8_BREAKING ? ^7.0.0 : ^4.0.0"
strip-ansi: ^4.0.0
languageName: unknown
linkType: soft
"@babel/node@workspace:packages/babel-node":
version: 0.0.0-use.local
resolution: "@babel/node@workspace:packages/babel-node"
dependencies:
"@babel/core": "workspace:*"
"@babel/helper-fixtures": "workspace:*"
"@babel/register": "workspace:^7.13.8"
"@babel/runtime": "workspace:*"
commander: ^4.0.1
core-js: ^3.2.1
fs-readdir-recursive: ^1.0.0
make-dir: ^2.1.0
node-environment-flags: ^1.0.5
regenerator-runtime: ^0.13.4
rimraf: ^3.0.0
v8flags: ^3.1.1
peerDependencies:
"@babel/core": ^7.0.0-0
bin:
babel-node: ./bin/babel-node.js
languageName: unknown
linkType: soft
"@babel/parser@npm:^7.0.0, @babel/parser@npm:^7.12.13, @babel/parser@npm:^7.12.7, @babel/parser@npm:^7.13.15":
version: 7.13.15
resolution: "@babel/parser@npm:7.13.15"
bin:
parser: ./bin/babel-parser.js
checksum: 74e9edc72f187c3956a52b3bb7dad22769fa9bf91c0107d6d5f1841ad5f655e6d12e0380a5b296f8c61c4471b200cdfea490969b75d5dff6b942157a26a1a9ac
languageName: node
linkType: hard
"@babel/parser@workspace:*, @babel/parser@workspace:^7.12.13, @babel/parser@workspace:^7.14.0, @babel/parser@workspace:packages/babel-parser":
version: 0.0.0-use.local
resolution: "@babel/parser@workspace:packages/babel-parser"
dependencies:
"@babel/code-frame": "workspace:*"
"@babel/helper-fixtures": "workspace:*"
"@babel/helper-validator-identifier": "workspace:*"
charcodes: ^0.2.0
bin:
parser: ./bin/babel-parser.js
languageName: unknown
linkType: soft
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.13.12":
version: 7.13.12
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.13.12"
dependencies:
"@babel/helper-plugin-utils": ^7.13.0
"@babel/helper-skip-transparent-expression-wrappers": ^7.12.1
"@babel/plugin-proposal-optional-chaining": ^7.13.12
peerDependencies:
"@babel/core": ^7.13.0
checksum: ad0b508a5c3f3436ff0ff598b7aad63686bfe7f846b19c862c09397bc987ab9244b866204440496cf6d1b7ec07ea01a6fe95fd3067dbdf58ec48d9d4d4d9a440
languageName: node
linkType: hard
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@workspace:^7.13.12, @babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@workspace:packages/babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining":
version: 0.0.0-use.local
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@workspace:packages/babel-plugin-bugfix-v8-spread-parameters-in-optional-chaining"
dependencies:
"@babel/core": "workspace:*"
"@babel/helper-plugin-test-runner": "workspace:*"
"@babel/helper-plugin-utils": "workspace:^7.13.0"
"@babel/helper-skip-transparent-expression-wrappers": "workspace:^7.12.1"
"@babel/plugin-proposal-optional-chaining": "workspace:^7.13.12"
"@babel/traverse": "workspace:*"
peerDependencies:
"@babel/core": ^7.13.0
languageName: unknown
linkType: soft
"@babel/plugin-codemod-object-assign-to-object-spread@workspace:codemods/babel-plugin-codemod-object-assign-to-object-spread":
version: 0.0.0-use.local
resolution: "@babel/plugin-codemod-object-assign-to-object-spread@workspace:codemods/babel-plugin-codemod-object-assign-to-object-spread"
dependencies:
"@babel/core": "workspace:*"
"@babel/helper-plugin-test-runner": "workspace:*"
"@babel/plugin-syntax-object-rest-spread": ^7.8.3
peerDependencies:
"@babel/core": ^7.0.0-0
languageName: unknown
linkType: soft
"@babel/plugin-codemod-optional-catch-binding@workspace:codemods/babel-plugin-codemod-optional-catch-binding":