This repository has been archived by the owner on Jan 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyarn.lock
9326 lines (8385 loc) · 310 KB
/
yarn.lock
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# This file is generated by running "yarn install" inside your project.
# Manual changes might be lost - proceed with caution!
__metadata:
version: 5
cacheKey: 8
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/code-frame@npm:7.10.4"
dependencies:
"@babel/highlight": ^7.10.4
checksum: feb4543c8a509fe30f0f6e8d7aa84f82b41148b963b826cd330e34986f649a85cb63b2f13dd4effdf434ac555d16f14940b8ea5f4433297c2f5ff85486ded019
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/code-frame@npm:7.16.7"
dependencies:
"@babel/highlight": ^7.16.7
checksum: db2f7faa31bc2c9cf63197b481b30ea57147a5fc1a6fab60e5d6c02cdfbf6de8e17b5121f99917b3dabb5eeb572da078312e70697415940383efc140d4e0808b
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.16.4":
version: 7.16.8
resolution: "@babel/compat-data@npm:7.16.8"
checksum: 10da2dac5ea9589c251412b00920889910e476c1ab24cd7095577635bc3a27c785151c89db4e26285fd39f509510ec29ab9d7e721f4fc16e4aec221cacde784b
languageName: node
linkType: hard
"@babel/core@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/core@npm:7.16.7"
dependencies:
"@babel/code-frame": ^7.16.7
"@babel/generator": ^7.16.7
"@babel/helper-compilation-targets": ^7.16.7
"@babel/helper-module-transforms": ^7.16.7
"@babel/helpers": ^7.16.7
"@babel/parser": ^7.16.7
"@babel/template": ^7.16.7
"@babel/traverse": ^7.16.7
"@babel/types": ^7.16.7
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: 3206e077e76db189726c4da19a5296eae11c6c1f5abea7013e74f18708bb91616914717ff8d8ca466cc0ba9d2d2147e9a84c3c357b9ad4cba601da14107838ed
languageName: node
linkType: hard
"@babel/core@npm:^7.7.5":
version: 7.12.3
resolution: "@babel/core@npm:7.12.3"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.12.1
"@babel/helper-module-transforms": ^7.12.1
"@babel/helpers": ^7.12.1
"@babel/parser": ^7.12.3
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
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: 29ee14dd7ae66c1af84d1b2864e1e9e1bec23b89f41e414917b10151ae1fcb6d3b6a8a25d028a7e22dba3bb7b69eb1f7f0d844797341357e36fa71ff967fb4a5
languageName: node
linkType: hard
"@babel/generator@npm:^7.12.1, @babel/generator@npm:^7.4.0":
version: 7.12.1
resolution: "@babel/generator@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: d035adf7d5ca0939b805d5e7f510cc363635ae0b71292c8c363d7060cecc119d736c66b15a323dcab71e9162dab50dd4dd8c3db20f3e27fb861125d31e794bb3
languageName: node
linkType: hard
"@babel/generator@npm:^7.16.7, @babel/generator@npm:^7.16.8":
version: 7.16.8
resolution: "@babel/generator@npm:7.16.8"
dependencies:
"@babel/types": ^7.16.8
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: 83af38b34735605c9d5f774c87a46c2cffaf666b28e9eeba883b2d7076412257e5c2264c26d9740ce44da6955fdaf857659391db02c012714a2a6dc19e403105
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-compilation-targets@npm:7.16.7"
dependencies:
"@babel/compat-data": ^7.16.4
"@babel/helper-validator-option": ^7.16.7
browserslist: ^4.17.5
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: 7238aaee78c011a42fb5ca92e5eff098752f7b314c2111d7bb9cdd58792fcab1b9c819b59f6a0851dc210dc09dc06b30d130a23982753e70eb3111bc65204842
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-environment-visitor@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: c03a10105d9ebd1fe632a77356b2e6e2f3c44edba9a93b0dc3591b6a66bd7a2e323dd9502f9ce96fc6401234abff1907aa877b6674f7826b61c953f7c8204bbe
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-function-name@npm:7.10.4"
dependencies:
"@babel/helper-get-function-arity": ^7.10.4
"@babel/template": ^7.10.4
"@babel/types": ^7.10.4
checksum: eb9226d1c768b974f30a20fafd809353a2dbc359f66d6d27e4dd917fb471df9a9c2b771e0f1a838b21aa195b3cbba8a472d95327b80b3bd0e12edf407a3c0d53
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-function-name@npm:7.16.7"
dependencies:
"@babel/helper-get-function-arity": ^7.16.7
"@babel/template": ^7.16.7
"@babel/types": ^7.16.7
checksum: fc77cbe7b10cfa2a262d7a37dca575c037f20419dfe0c5d9317f589599ca24beb5f5c1057748011159149eaec47fe32338c6c6412376fcded68200df470161e1
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-get-function-arity@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 798e2eb6cd5d2ff91a6cc3904ad626fca366fb33e631cb214477f100207ef26acdf78280a31f8adf59a988f020221165834902d5e201a8b5bbefab361d502daf
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-get-function-arity@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: 25d969fb207ff2ad5f57a90d118f6c42d56a0171022e200aaa919ba7dc95ae7f92ec71cdea6c63ef3629a0dc962ab4c78e09ca2b437185ab44539193f796e0c3
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-hoist-variables@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: 6ae1641f4a751cd9045346e3f61c3d9ec1312fd779ab6d6fecfe2a96e59a481ad5d7e40d2a840894c13b3fd6114345b157f9e3062fc5f1580f284636e722de60
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-member-expression-to-functions@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: 692aaab58089378edf0ba5c06be0cb094f735f7c676e6f6a4bdeafbc85719d60ac61a3ff787cd578dedb6cd8ae6ac5ac7e4ed62bc06f5d0333fc4129b9ab37a1
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-module-imports@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: 23ae1672da54d4643cd32328e218cfaf3777c155014cebbb6487949b1a0548f05b2a6e5febd127f82ccd9d11a1abbe0812e4b34642ab4f4ab8f0d0832ea02b0a
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-module-imports@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: ddd2c4a600a2e9a4fee192ab92bf35a627c5461dbab4af31b903d9ba4d6b6e59e0ff3499fde4e2e9a0eebe24906f00b636f8b4d9bd72ff24d50e6618215c3212
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-module-transforms@npm:7.12.1"
dependencies:
"@babel/helper-module-imports": ^7.12.1
"@babel/helper-replace-supers": ^7.12.1
"@babel/helper-simple-access": ^7.12.1
"@babel/helper-split-export-declaration": ^7.11.0
"@babel/helper-validator-identifier": ^7.10.4
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
lodash: ^4.17.19
checksum: 44715a43f8a3cc9927b50f04361626f12f3e7097474d6445cc29be0782d20af58c20b49036c109d3915734ce2257f7d6c9002c265fbe18ad8b924947667460a3
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-module-transforms@npm:7.16.7"
dependencies:
"@babel/helper-environment-visitor": ^7.16.7
"@babel/helper-module-imports": ^7.16.7
"@babel/helper-simple-access": ^7.16.7
"@babel/helper-split-export-declaration": ^7.16.7
"@babel/helper-validator-identifier": ^7.16.7
"@babel/template": ^7.16.7
"@babel/traverse": ^7.16.7
"@babel/types": ^7.16.7
checksum: 6e930ce776c979f299cdbeaf80187f4ab086d75287b96ecc1c6896d392fcb561065f0d6219fc06fa79b4ceb4bbdc1a9847da8099aba9b077d0a9e583500fb673
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-optimise-call-expression@npm:7.10.4"
dependencies:
"@babel/types": ^7.10.4
checksum: 358b904a5067c19d3d09e8e9a8ba1bdfb8dad71bb6fa3777d64f04e78d8425bad0b8ea7969bbcdf14bad0a7815d3575fc3323a085cbea6c36c47063e3aee4b00
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-replace-supers@npm:7.12.1"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.12.1
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
checksum: b0b89196c7fd0954815306973f81786c38792c410358abfa2652c5dee69c3eb4a63404cfc9b880d276365b792ac5395c011a1d1d3917ced8b1b3dc86129ce176
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helper-simple-access@npm:7.12.1"
dependencies:
"@babel/types": ^7.12.1
checksum: 2c387b57d9f270c947273e6dde4885971449c78436edd511c8d42cb43c5c4265ef2ebb222f46d9653b1d1254424aef1054876d033962db428662d8fe5e859a0c
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-simple-access@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: 8d22c46c5ec2ead0686c4d5a3d1d12b5190c59be676bfe0d9d89df62b437b51d1a3df2ccfb8a77dded2e585176ebf12986accb6d45a18cff229eef3b10344f4b
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.11.0":
version: 7.11.0
resolution: "@babel/helper-split-export-declaration@npm:7.11.0"
dependencies:
"@babel/types": ^7.11.0
checksum: eb03088c44e70ba3039b4608b0d108dcb1659f951b976044a487961c725b7c18e3d14b30f78180b8375c4bdbd0410494de56f716d30bc9ae6493e53c17047ec1
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-split-export-declaration@npm:7.16.7"
dependencies:
"@babel/types": ^7.16.7
checksum: e10aaf135465c55114627951b79115f24bc7af72ecbb58d541d66daf1edaee5dde7cae3ec8c3639afaf74526c03ae3ce723444e3b5b3dc77140c456cd84bcaa1
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/helper-validator-identifier@npm:7.10.4"
checksum: 3cbfdff0efea8f3bca050cfe408a156604293d3313c7279c8c02d916a0b3ef82617f28f7729877a94c0e8e922d4b7623c4f0a108ae2853bf762d933e101a5f8c
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-validator-identifier@npm:7.16.7"
checksum: dbb3db9d184343152520a209b5684f5e0ed416109cde82b428ca9c759c29b10c7450657785a8b5c5256aa74acc6da491c1f0cf6b784939f7931ef82982051b69
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helper-validator-option@npm:7.16.7"
checksum: c5ccc451911883cc9f12125d47be69434f28094475c1b9d2ada7c3452e6ac98a1ee8ddd364ca9e3f9855fcdee96cdeafa32543ebd9d17fee7a1062c202e80570
languageName: node
linkType: hard
"@babel/helpers@npm:^7.12.1":
version: 7.12.1
resolution: "@babel/helpers@npm:7.12.1"
dependencies:
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.1
"@babel/types": ^7.12.1
checksum: ca65f740a1c8e9a6438bc7e4bc22183f942dc90612121684ee9dd3ce7fc293f768f0ecee87b5d48c32e3750e5672ea2c05e1ca1168857ed8239f276337ae6696
languageName: node
linkType: hard
"@babel/helpers@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/helpers@npm:7.16.7"
dependencies:
"@babel/template": ^7.16.7
"@babel/traverse": ^7.16.7
"@babel/types": ^7.16.7
checksum: 75504c76b66a29b91f954fcc0867dfe275a4cfba5b44df6d64405df74ea72f967fccfa63d62c31c423c5502d113290000c581e0e4858a214f0303d7ecf55c29f
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/highlight@npm:7.10.4"
dependencies:
"@babel/helper-validator-identifier": ^7.10.4
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: 6fab4679162562907942acc3647bc8c405b955f3bef7c654ef160491d0801ebdc12651c2051144dc0e22b69044fe3059d630151d5d7fb84b10ed4093da707707
languageName: node
linkType: hard
"@babel/highlight@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/highlight@npm:7.16.7"
dependencies:
"@babel/helper-validator-identifier": ^7.16.7
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: f7e04e7e03b83c2cca984f4d3e180c9b018784f45d03367e94daf983861229ddc47264045f3b58dfeb0007f9c67bc2a76c4de1693bad90e5394876ef55ece5bb
languageName: node
linkType: hard
"@babel/parser@npm:^7.10.4, @babel/parser@npm:^7.12.1, @babel/parser@npm:^7.12.3, @babel/parser@npm:^7.4.3":
version: 7.12.3
resolution: "@babel/parser@npm:7.12.3"
bin:
parser: ./bin/babel-parser.js
checksum: 3475292cd63dd98d3e35c007b6e67b0502f1c2e06a26fe5821f2da634a66de498a9933e76c83b991bc20e0c90c18c5a1cab323151e95c894124b17604eb58c2c
languageName: node
linkType: hard
"@babel/parser@npm:^7.16.7, @babel/parser@npm:^7.16.8":
version: 7.16.8
resolution: "@babel/parser@npm:7.16.8"
bin:
parser: ./bin/babel-parser.js
checksum: f6bc2eb1f298fcb81db34c2d343fd05d8c59dbc5419a88c1cb4d298c7a3863e4d54f5a4f38a40e1aa979e4ce355816348730b471c1d787d424ed52b270fc7be0
languageName: node
linkType: hard
"@babel/template@npm:^7.10.4, @babel/template@npm:^7.4.0":
version: 7.10.4
resolution: "@babel/template@npm:7.10.4"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/parser": ^7.10.4
"@babel/types": ^7.10.4
checksum: 174a1fbfa19ed68141c9a047ff02972ebd3e8c7a98a00ffa79d4958d0f31bcfe17766987c2064d7fae851a277e1c499a05a527df346b3821d9aa9f730979cea9
languageName: node
linkType: hard
"@babel/template@npm:^7.16.7":
version: 7.16.7
resolution: "@babel/template@npm:7.16.7"
dependencies:
"@babel/code-frame": ^7.16.7
"@babel/parser": ^7.16.7
"@babel/types": ^7.16.7
checksum: 10cd112e89276e00f8b11b55a51c8b2f1262c318283a980f4d6cdb0286dc05734b9aaeeb9f3ad3311900b09bc913e02343fcaa9d4a4f413964aaab04eb84ac4a
languageName: node
linkType: hard
"@babel/traverse@npm:^7.12.1, @babel/traverse@npm:^7.4.3":
version: 7.12.1
resolution: "@babel/traverse@npm:7.12.1"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.12.1
"@babel/helper-function-name": ^7.10.4
"@babel/helper-split-export-declaration": ^7.11.0
"@babel/parser": ^7.12.1
"@babel/types": ^7.12.1
debug: ^4.1.0
globals: ^11.1.0
lodash: ^4.17.19
checksum: eea68f3a9f6a5b3955357ff68615a01615fc32d11e24e02770b0c5dbf784c1a9d917bfa7b255d354b942af739bbf955641d99bb2ca99c150715dd39743467c5e
languageName: node
linkType: hard
"@babel/traverse@npm:^7.16.7, @babel/traverse@npm:^7.16.8":
version: 7.16.8
resolution: "@babel/traverse@npm:7.16.8"
dependencies:
"@babel/code-frame": ^7.16.7
"@babel/generator": ^7.16.8
"@babel/helper-environment-visitor": ^7.16.7
"@babel/helper-function-name": ^7.16.7
"@babel/helper-hoist-variables": ^7.16.7
"@babel/helper-split-export-declaration": ^7.16.7
"@babel/parser": ^7.16.8
"@babel/types": ^7.16.8
debug: ^4.1.0
globals: ^11.1.0
checksum: 303bc328289c73bd57dc8b90e83dfa9f4dae8e7039c95350994db67b2850a7966645c2c9f3292d0621f2051bb3d34439dc294b258dc1ad0e9d7eab04ac6bcb44
languageName: node
linkType: hard
"@babel/types@npm:^7.10.4, @babel/types@npm:^7.11.0, @babel/types@npm:^7.12.1, @babel/types@npm:^7.4.0":
version: 7.12.1
resolution: "@babel/types@npm:7.12.1"
dependencies:
"@babel/helper-validator-identifier": ^7.10.4
lodash: ^4.17.19
to-fast-properties: ^2.0.0
checksum: b82d8f7c1dc8580c6c6305623bfa9f4619cdf92ef0d0378d2b9c0f6dc33b9ef75eb712bae2fb041da9e673c0391641beb50b7823d82f015a105bbb599e60c87c
languageName: node
linkType: hard
"@babel/types@npm:^7.16.7, @babel/types@npm:^7.16.8, @babel/types@npm:^7.8.3":
version: 7.16.8
resolution: "@babel/types@npm:7.16.8"
dependencies:
"@babel/helper-validator-identifier": ^7.16.7
to-fast-properties: ^2.0.0
checksum: 4f6a187b2924df70e21d6e6c0822f91b1b936fe060bc92bb477b93bd8a712c88fe41a73f85c0ec53b033353374fe33e773b04ffc340ad36afd8f647dd05c4ee1
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^1.0.5":
version: 1.0.5
resolution: "@eslint/eslintrc@npm:1.0.5"
dependencies:
ajv: ^6.12.4
debug: ^4.3.2
espree: ^9.2.0
globals: ^13.9.0
ignore: ^4.0.6
import-fresh: ^3.2.1
js-yaml: ^4.1.0
minimatch: ^3.0.4
strip-json-comments: ^3.1.1
checksum: b35b50d7b65bd8acd92a05b6fb15ac62c0cefa40dfef0324ca5bf8632bf3679bab6e173c53b3ad1e1d837701cecdbd9c144b35f46588cdf4e046a9caa272488d
languageName: node
linkType: hard
"@gar/promisify@npm:^1.0.1":
version: 1.1.2
resolution: "@gar/promisify@npm:1.1.2"
checksum: d05081e0887a49c178b75ee3067bd6ee086f73c154d121b854fb2e044e8a89cb1cbb6de3a0dd93a519b80f0531fda68b099dd7256205f7fbb3490324342f2217
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.9.2":
version: 0.9.2
resolution: "@humanwhocodes/config-array@npm:0.9.2"
dependencies:
"@humanwhocodes/object-schema": ^1.2.1
debug: ^4.1.1
minimatch: ^3.0.4
checksum: 28a9e2974c50a86765cb6cc96e03d29187ea33fdaba62c4f35db89002e3cfbd340e64c9f6cf869e33e2e5cdcc06e78763458f4178d38a6f30aea1308787ca706
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.1":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: a824a1ec31591231e4bad5787641f59e9633827d0a2eaae131a288d33c9ef0290bd16fda8da6f7c0fcb014147865d12118df10db57f27f41e20da92369fcb3f1
languageName: node
linkType: hard
"@hutson/parse-repository-url@npm:^3.0.0":
version: 3.0.2
resolution: "@hutson/parse-repository-url@npm:3.0.2"
checksum: 39992c5f183c5ca3d761d6ed9dfabcb79b5f3750bf1b7f3532e1dc439ca370138bbd426ee250fdaba460bc948e6761fbefd484b8f4f36885d71ded96138340d1
languageName: node
linkType: hard
"@istanbuljs/load-nyc-config@npm:^1.0.0":
version: 1.1.0
resolution: "@istanbuljs/load-nyc-config@npm:1.1.0"
dependencies:
camelcase: ^5.3.1
find-up: ^4.1.0
get-package-type: ^0.1.0
js-yaml: ^3.13.1
resolve-from: ^5.0.0
checksum: d578da5e2e804d5c93228450a1380e1a3c691de4953acc162f387b717258512a3e07b83510a936d9fab03eac90817473917e24f5d16297af3867f59328d58568
languageName: node
linkType: hard
"@istanbuljs/schema@npm:^0.1.2":
version: 0.1.2
resolution: "@istanbuljs/schema@npm:0.1.2"
checksum: 5ce9facf2f0e3f4a93e56853cdfd78456e22d2c210c677530046e9c634ddc323dd62423ac711cd3554b5be06052c87fb8e0c266aa9010726940654c357290e78
languageName: node
linkType: hard
"@itsjamie/esdoc-accessor-plugin@workspace:*, @itsjamie/esdoc-accessor-plugin@workspace:packages/esdoc-accessor-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-accessor-plugin@workspace:packages/esdoc-accessor-plugin"
dependencies:
"@itsjamie/esdoc-cli": ^0.4.0
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
peerDependencies:
"@itsjamie/esdoc-core": "workspace:*"
languageName: unknown
linkType: soft
"@itsjamie/esdoc-brand-plugin@workspace:*, @itsjamie/esdoc-brand-plugin@workspace:packages/esdoc-brand-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-brand-plugin@workspace:packages/esdoc-brand-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
cheerio: 1.0.0-rc.10
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
peerDependencies:
"@itsjamie/esdoc-core": ">= 0.3"
languageName: unknown
linkType: soft
"@itsjamie/esdoc-cli@^0.4.0, @itsjamie/esdoc-cli@workspace:*, @itsjamie/esdoc-cli@workspace:packages/esdoc-cli":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-cli@workspace:packages/esdoc-cli"
dependencies:
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
peerDependencies:
"@itsjamie/esdoc-core": "workspace:*"
bin:
esdoc: ./cli.js
languageName: unknown
linkType: soft
"@itsjamie/esdoc-core@workspace:packages/esdoc-core":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-core@workspace:packages/esdoc-core"
dependencies:
"@babel/core": ^7.16.7
"@babel/generator": ^7.16.8
"@babel/parser": ^7.16.8
"@babel/traverse": ^7.16.8
cheerio: 1.0.0-rc.10
codecov: ^3.8.3
color-logger: 0.0.6
escape-html: 1.0.3
eslint: ^8.6.0
fs-extra: 10.0.0
ice-cap: 0.0.4
marked: 4.0.9
minimist: ^1.2.5
mocha: ^9.1.3
nyc: ^15.1.0
taffydb: 2.7.3
languageName: unknown
linkType: soft
"@itsjamie/esdoc-coverage-plugin@workspace:*, @itsjamie/esdoc-coverage-plugin@workspace:packages/esdoc-coverage-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-coverage-plugin@workspace:packages/esdoc-coverage-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-ecmascript-proposal-plugin@workspace:packages/esdoc-ecmascript-proposal-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-ecmascript-proposal-plugin@workspace:packages/esdoc-ecmascript-proposal-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-exclude-source-plugin@workspace:packages/esdoc-exclude-source-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-exclude-source-plugin@workspace:packages/esdoc-exclude-source-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-external-ecmascript-plugin@workspace:*, @itsjamie/esdoc-external-ecmascript-plugin@workspace:packages/esdoc-external-ecmascript-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-external-ecmascript-plugin@workspace:packages/esdoc-external-ecmascript-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
fs-extra: 10.0.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-external-nodejs-plugin@workspace:packages/esdoc-external-nodejs-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-external-nodejs-plugin@workspace:packages/esdoc-external-nodejs-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
fs-extra: 10.0.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-external-webapi-plugin@workspace:packages/esdoc-external-webapi-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-external-webapi-plugin@workspace:packages/esdoc-external-webapi-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
fs-extra: 10.0.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-flow-type-plugin@workspace:packages/esdoc-flow-type-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-flow-type-plugin@workspace:packages/esdoc-flow-type-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
peerDependencies:
"@itsjamie/esdoc-core": "workspace:*"
languageName: unknown
linkType: soft
"@itsjamie/esdoc-importpath-plugin@workspace:packages/esdoc-importpath-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-importpath-plugin@workspace:packages/esdoc-importpath-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-inject-gtm-plugin@workspace:packages/esdoc-inject-gtm-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-inject-gtm-plugin@workspace:packages/esdoc-inject-gtm-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
cheerio: ^1.0.0-rc.10
codecov: ^3.8.3
eslint: ^8.6.0
fs-extra: ^10.0.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-inject-script-plugin@workspace:packages/esdoc-inject-script-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-inject-script-plugin@workspace:packages/esdoc-inject-script-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
cheerio: 1.0.0-rc.10
codecov: ^3.8.3
eslint: ^8.6.0
fs-extra: 10.0.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-inject-style-plugin@workspace:packages/esdoc-inject-style-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-inject-style-plugin@workspace:packages/esdoc-inject-style-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
cheerio: 1.0.0-rc.10
codecov: ^3.8.3
eslint: ^8.6.0
fs-extra: 10.0.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-integrate-manual-plugin@workspace:*, @itsjamie/esdoc-integrate-manual-plugin@workspace:packages/esdoc-integrate-manual-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-integrate-manual-plugin@workspace:packages/esdoc-integrate-manual-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-integrate-test-plugin@workspace:*, @itsjamie/esdoc-integrate-test-plugin@workspace:packages/esdoc-integrate-test-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-integrate-test-plugin@workspace:packages/esdoc-integrate-test-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
peerDependencies:
"@itsjamie/esdoc-core": "workspace:*"
languageName: unknown
linkType: soft
"@itsjamie/esdoc-jsx-plugin@workspace:packages/esdoc-jsx-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-jsx-plugin@workspace:packages/esdoc-jsx-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-lint-plugin@workspace:*, @itsjamie/esdoc-lint-plugin@workspace:packages/esdoc-lint-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-lint-plugin@workspace:packages/esdoc-lint-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
peerDependencies:
"@itsjamie/esdoc-core": "workspace:*"
languageName: unknown
linkType: soft
"@itsjamie/esdoc-publish-html-plugin@workspace:*, @itsjamie/esdoc-publish-html-plugin@workspace:packages/esdoc-publish-html-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-publish-html-plugin@workspace:packages/esdoc-publish-html-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
"@itsjamie/esdoc-type-inference-plugin": "workspace:*"
"@itsjamie/esdoc-undocumented-identifier-plugin": "workspace:*"
"@itsjamie/esdoc-unexported-identifier-plugin": "workspace:*"
cheerio: 1.0.0-rc.10
codecov: ^3.8.3
dompurify: ^2.3.4
escape-html: 1.0.3
eslint: ^8.6.0
fs-extra: 10.0.0
ice-cap: 0.0.4
jsdom: ^15.2.1
marked: ^0.8.2
mocha: ^9.1.3
nyc: ^15.1.0
taffydb: 2.7.3
peerDependencies:
"@itsjamie/esdoc-core": "workspace:*"
languageName: unknown
linkType: soft
"@itsjamie/esdoc-publish-markdown-plugin@workspace:packages/esdoc-publish-markdown-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-publish-markdown-plugin@workspace:packages/esdoc-publish-markdown-plugin"
dependencies:
"@itsjamie/esdoc-cli": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
ice-cap: 0.0.4
mocha: ^9.1.3
nyc: ^15.1.0
to-markdown: 3.1.1
languageName: unknown
linkType: soft
"@itsjamie/esdoc-react-plugin@workspace:packages/esdoc-react-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-react-plugin@workspace:packages/esdoc-react-plugin"
dependencies:
"@itsjamie/esdoc-publish-html-plugin": "workspace:*"
"@itsjamie/esdoc-standard-plugin": "workspace:*"
cheerio: 1.0.0-rc.10
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
peerDependencies:
"@itsjamie/esdoc-core": "workspace:*"
languageName: unknown
linkType: soft
"@itsjamie/esdoc-standard-plugin@workspace:*, @itsjamie/esdoc-standard-plugin@workspace:packages/esdoc-standard-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-standard-plugin@workspace:packages/esdoc-standard-plugin"
dependencies:
"@itsjamie/esdoc-accessor-plugin": "workspace:*"
"@itsjamie/esdoc-brand-plugin": "workspace:*"
"@itsjamie/esdoc-cli": "workspace:*"
"@itsjamie/esdoc-coverage-plugin": "workspace:*"
"@itsjamie/esdoc-external-ecmascript-plugin": "workspace:*"
"@itsjamie/esdoc-integrate-manual-plugin": "workspace:*"
"@itsjamie/esdoc-integrate-test-plugin": "workspace:*"
"@itsjamie/esdoc-lint-plugin": "workspace:*"
"@itsjamie/esdoc-publish-html-plugin": "workspace:*"
"@itsjamie/esdoc-type-inference-plugin": "workspace:*"
"@itsjamie/esdoc-undocumented-identifier-plugin": "workspace:*"
"@itsjamie/esdoc-unexported-identifier-plugin": "workspace:*"
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-type-inference-plugin@workspace:*, @itsjamie/esdoc-type-inference-plugin@workspace:packages/esdoc-type-inference-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-type-inference-plugin@workspace:packages/esdoc-type-inference-plugin"
dependencies:
codecov: ^3.8.3
color-logger: 0.0.6
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
peerDependencies:
"@itsjamie/esdoc-core": "workspace:*"
languageName: unknown
linkType: soft
"@itsjamie/esdoc-typescript-plugin@workspace:packages/esdoc-typescript-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-typescript-plugin@workspace:packages/esdoc-typescript-plugin"
dependencies:
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
typescript: ^4.5.4
peerDependencies:
"@itsjamie/esdoc-core": "workspace:*"
languageName: unknown
linkType: soft
"@itsjamie/esdoc-undocumented-identifier-plugin@workspace:*, @itsjamie/esdoc-undocumented-identifier-plugin@workspace:packages/esdoc-undocumented-identifier-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-undocumented-identifier-plugin@workspace:packages/esdoc-undocumented-identifier-plugin"
dependencies:
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@itsjamie/esdoc-unexported-identifier-plugin@workspace:*, @itsjamie/esdoc-unexported-identifier-plugin@workspace:packages/esdoc-unexported-identifier-plugin":
version: 0.0.0-use.local
resolution: "@itsjamie/esdoc-unexported-identifier-plugin@workspace:packages/esdoc-unexported-identifier-plugin"
dependencies:
codecov: ^3.8.3
eslint: ^8.6.0
mocha: ^9.1.3
nyc: ^15.1.0
languageName: unknown
linkType: soft
"@lerna/add@npm:4.0.0":
version: 4.0.0
resolution: "@lerna/add@npm:4.0.0"
dependencies:
"@lerna/bootstrap": 4.0.0
"@lerna/command": 4.0.0
"@lerna/filter-options": 4.0.0
"@lerna/npm-conf": 4.0.0
"@lerna/validation-error": 4.0.0
dedent: ^0.7.0
npm-package-arg: ^8.1.0
p-map: ^4.0.0
pacote: ^11.2.6
semver: ^7.3.4
checksum: 769efaf964385f682a48e71a8eeb159158bfe4326682d0167147f08bbedad06f7f9964a658fc5508900e769257342a8c796e510868f5ac5c354631baa4d583d9
languageName: node
linkType: hard
"@lerna/bootstrap@npm:4.0.0":
version: 4.0.0
resolution: "@lerna/bootstrap@npm:4.0.0"
dependencies:
"@lerna/command": 4.0.0
"@lerna/filter-options": 4.0.0
"@lerna/has-npm-version": 4.0.0
"@lerna/npm-install": 4.0.0
"@lerna/package-graph": 4.0.0
"@lerna/pulse-till-done": 4.0.0
"@lerna/rimraf-dir": 4.0.0
"@lerna/run-lifecycle": 4.0.0
"@lerna/run-topologically": 4.0.0
"@lerna/symlink-binary": 4.0.0
"@lerna/symlink-dependencies": 4.0.0
"@lerna/validation-error": 4.0.0
dedent: ^0.7.0
get-port: ^5.1.1
multimatch: ^5.0.0
npm-package-arg: ^8.1.0
npmlog: ^4.1.2
p-map: ^4.0.0
p-map-series: ^2.1.0
p-waterfall: ^2.1.1
read-package-tree: ^5.3.1
semver: ^7.3.4
checksum: 072ce3053a0f7c1e2ae93be02d75ef395e291a90cdd20c669e921da2eac2290bebbe2e11453f540759a24c6e32f86331fe188bf85cd6dc341244c8fadc86c9ed
languageName: node
linkType: hard
"@lerna/changed@npm:4.0.0":
version: 4.0.0
resolution: "@lerna/changed@npm:4.0.0"
dependencies:
"@lerna/collect-updates": 4.0.0
"@lerna/command": 4.0.0
"@lerna/listable": 4.0.0
"@lerna/output": 4.0.0
checksum: f12a5d6cc478fe0801e74a0bd1f86743fbc26028fb85d2f67479cfa252822ae2e6157976a63ac3e7f5a4f6702b289a358a32cac689ab14c63a6601cff26f239b
languageName: node
linkType: hard
"@lerna/check-working-tree@npm:4.0.0":
version: 4.0.0
resolution: "@lerna/check-working-tree@npm:4.0.0"
dependencies:
"@lerna/collect-uncommitted": 4.0.0
"@lerna/describe-ref": 4.0.0
"@lerna/validation-error": 4.0.0
checksum: b4ce67942a13929580941d3e2fe49880c66ca37da3d86d14a4b158477d03c9cc939c304092658f98868c7484ba065bd721b5f8524378ee0086695d6b309e10e2
languageName: node
linkType: hard
"@lerna/child-process@npm:4.0.0":
version: 4.0.0
resolution: "@lerna/child-process@npm:4.0.0"
dependencies:
chalk: ^4.1.0
execa: ^5.0.0
strong-log-transformer: ^2.1.0
checksum: 184ea5520b575c0e71c49bb1f8ce82a7e34635fcf7972a5c2d17e2919b646e42644e36c7b88f2ff7539f6064affcc6161136af88605d3eeb74d9bade9a9f4cde
languageName: node
linkType: hard
"@lerna/clean@npm:4.0.0":
version: 4.0.0
resolution: "@lerna/clean@npm:4.0.0"
dependencies:
"@lerna/command": 4.0.0
"@lerna/filter-options": 4.0.0
"@lerna/prompt": 4.0.0
"@lerna/pulse-till-done": 4.0.0