forked from eclipse-che/che-plugin-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yarn.lock
10690 lines (9645 loc) · 355 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/code-frame@npm:7.12.11":
version: 7.12.11
resolution: "@babel/code-frame@npm:7.12.11"
dependencies:
"@babel/highlight": ^7.10.4
checksum: 033d3fb3bf911929c0d904282ee69d1197c8d8ae9c6492aaab09e530bca8c463b11c190185dfda79866556facb5bb4c8dc0b4b32b553d021987fcc28c8dd9c6c
languageName: node
linkType: hard
"@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: 05245d3b22a3ae849439195c4ee9ce9903dfd8c3fcb5124e77923c45e9f1ceac971cce4c61505974f411a9db432949531abe10ddee92937a0a9c306dc380a5b2
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/code-frame@npm:7.14.5"
dependencies:
"@babel/highlight": ^7.14.5
checksum: 48c584cad9aa05ff16fa965b4572deae0343d51abe658a2fb72640e924c229d47f71f880a474cc1e14e613f88a4bfd576609b1e0d8073bbc4e50e60f7e678626
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.14.5":
version: 7.14.7
resolution: "@babel/compat-data@npm:7.14.7"
checksum: f50909f7565cac9a7f1dd31b9817b7a90070c7eac1207b1272f6e8d862e69589f08861d2a5d8b70e6eba2e8afcea02210be4176e259d9d11bf6cda3a5563eee3
languageName: node
linkType: hard
"@babel/core@npm:7.14.8, @babel/core@npm:^7.7.2":
version: 7.14.8
resolution: "@babel/core@npm:7.14.8"
dependencies:
"@babel/code-frame": ^7.14.5
"@babel/generator": ^7.14.8
"@babel/helper-compilation-targets": ^7.14.5
"@babel/helper-module-transforms": ^7.14.8
"@babel/helpers": ^7.14.8
"@babel/parser": ^7.14.8
"@babel/template": ^7.14.5
"@babel/traverse": ^7.14.8
"@babel/types": ^7.14.8
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: cfb715d659b9e1ebaf9f11d87363171121d6e363b8b82766cbd4a723c04066d65d0f1ce12d6ef569a83dc5ee88efa3da0e5e6fac6945c5d627d8dc387a027b26
languageName: node
linkType: hard
"@babel/core@npm:^7.1.0, @babel/core@npm:^7.2.2, @babel/core@npm:^7.7.5":
version: 7.12.10
resolution: "@babel/core@npm:7.12.10"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.12.10
"@babel/helper-module-transforms": ^7.12.1
"@babel/helpers": ^7.12.5
"@babel/parser": ^7.12.10
"@babel/template": ^7.12.7
"@babel/traverse": ^7.12.10
"@babel/types": ^7.12.10
convert-source-map: ^1.7.0
debug: ^4.1.0
gensync: ^1.0.0-beta.1
json5: ^2.1.2
lodash: ^4.17.19
semver: ^5.4.1
source-map: ^0.5.0
checksum: 4d7b892764009b80ac36b193ee37dd27a04244113dfa7510a937e81999e4b0f8ad3237f809792975abab5e07b44a7f7c36bb21e6f9957cdf54cd91cbf149c411
languageName: node
linkType: hard
"@babel/generator@npm:^7.12.10":
version: 7.12.10
resolution: "@babel/generator@npm:7.12.10"
dependencies:
"@babel/types": ^7.12.10
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: ddd59efc33e328c6b2c042d14d86b6d8e391bf6512195cce62361bfaf1b74ed15f98b69223b9bc33ac4b1e33557c31675bcc1fb8255de640f1506c7a6e88be2a
languageName: node
linkType: hard
"@babel/generator@npm:^7.14.8, @babel/generator@npm:^7.7.2":
version: 7.14.8
resolution: "@babel/generator@npm:7.14.8"
dependencies:
"@babel/types": ^7.14.8
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: eeb19868f47edd9d128671349f46404f6a9d5143deb11669dc6181cf17116907a512c3f8ef05f1711383621e465577f34f39020cc2cdcc11e3dc2cb866d67e82
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-compilation-targets@npm:7.14.5"
dependencies:
"@babel/compat-data": ^7.14.5
"@babel/helper-validator-option": ^7.14.5
browserslist: ^4.16.6
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: db7d58fc7309fcd925ee3cbf724fd796fc5779545de4da97badc772c7f05f087155538fb8ed503cf2e8075fb939c79a6e806fb5b7901c20dbe09c1d194a12ed2
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: 41ab8f48bbb7d4a65a90a4cf50c79c386d3c30e0dac10bc3ce311fda2ca971d82289a07570a785ebac92686854237ea1e511e74f2577a38c7ec2d67f2a250a9e
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-function-name@npm:7.14.5"
dependencies:
"@babel/helper-get-function-arity": ^7.14.5
"@babel/template": ^7.14.5
"@babel/types": ^7.14.5
checksum: bf2172f932ce3bd8fdaa6df5464a581eee47484952c69115361439727e87d3289925a292655957b39446b6052119896da358022337985eed795444c550f7e4f3
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.10.4":
version: 7.12.10
resolution: "@babel/helper-get-function-arity@npm:7.12.10"
dependencies:
"@babel/types": ^7.12.10
checksum: 5c645ed43c320e207bdc46006f5ffc05a090e6ef639a84be324e6acba311b4e2d5213305137142bd1fb17d957d8b528e0b34362da6d9e2504a6496af17954090
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-get-function-arity@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: 1bd0ae6c25af61a7795032452500362bb3f63042aadb1076184ebccc0afcb38e0565da3f02534f806ea0acb915efd75bc1de8530417f7be10f74c4a3efbacb3a
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-hoist-variables@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: c2fdc5a2391f13fac73089c563f2a3fcfbec460bd866d6ceb4f97e7138b38a5e16703e6ced3ff1a0e6058aece138e19c30fe11e9e2a65d564d73a6c4a34313e2
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.12.1":
version: 7.12.7
resolution: "@babel/helper-member-expression-to-functions@npm:7.12.7"
dependencies:
"@babel/types": ^7.12.7
checksum: 313e78a21713886062826cc146422a3e5f5576a233b1ee5b6360735171638bacdec8809b625e49d0448ef7c16232b753a8af374ecf6347496182960e9ecdd0e2
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.14.5":
version: 7.14.7
resolution: "@babel/helper-member-expression-to-functions@npm:7.14.7"
dependencies:
"@babel/types": ^7.14.5
checksum: 8a45a0f6b2e945eab5072e3401f54b0e9366c22e41b91dfa6b1cb232368d99c31c99f59fd50aff28ba989008ab47e3bfa9921dc17ea32e9fea78817a10b22fb9
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.12.1":
version: 7.12.5
resolution: "@babel/helper-module-imports@npm:7.12.5"
dependencies:
"@babel/types": ^7.12.5
checksum: 7f63b03496f0d03dac33050e9f925b0b32c5acffb2f4f5bb5936431e5da3df03792f67033875005e00dd7a3b565ffc95b4af3da276ae6ff8f81d860d7acbfe65
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-module-imports@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: 483919bf31611dc5905acb6a01b888fad1264ddcecaae706c0dde46ff81fa708d98c4a093ab0d4ad71791eb0a30b6dafbfa5364003e71486d6b3c5c718eccf7d
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: 902ed2b8e9ff45d33d20379f84b2269741a3a6108eb6c5e9e139186fd72e5bb405fac84bdcb7fae135c0cf4a5464d30bfb78ad00fc163b329aa9caa3630e7dd2
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.14.8":
version: 7.14.8
resolution: "@babel/helper-module-transforms@npm:7.14.8"
dependencies:
"@babel/helper-module-imports": ^7.14.5
"@babel/helper-replace-supers": ^7.14.5
"@babel/helper-simple-access": ^7.14.8
"@babel/helper-split-export-declaration": ^7.14.5
"@babel/helper-validator-identifier": ^7.14.8
"@babel/template": ^7.14.5
"@babel/traverse": ^7.14.8
"@babel/types": ^7.14.8
checksum: f8b5dc617e1c13ef215d0987e53fce8b085a1726a9dced3d45ab750b357400ae0ccc02c9699a6fd2bad21f5c27c85f34be9b4c9bfa0988b2dcd1407d32772b51
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.10.4":
version: 7.12.10
resolution: "@babel/helper-optimise-call-expression@npm:7.12.10"
dependencies:
"@babel/types": ^7.12.10
checksum: e96f37e943016688993f31736c92010a78db7c46dd8cf5aa67e50f8244e91172589555670bcebc3c0e715d6738cac3d70e9dff25f03982488a142e2f60e0c44b
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-optimise-call-expression@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: 68845ee7fb88cf7bfbea9635d3fddcc953818b86732985f3fb228f77012652b36f4e41f00d8e7b5e3be2b2d41b6b9f189a36fd49874e58a29dd2e3b1dc753f5c
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.10.4
resolution: "@babel/helper-plugin-utils@npm:7.10.4"
checksum: 9f617e619a3557cb5fae8885e91cd94ba4ee16fb345e0360de0d7dc037efb10cc604939ecc1038ccdb71aa37e7e78f20133d7bbbebecb8f6dcdb557650366d92
languageName: node
linkType: hard
"@babel/helper-plugin-utils@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-plugin-utils@npm:7.14.5"
checksum: 76404ef3aadc25879f7b4c5945bafcca935d4af0cf451a95ff9f131f29ac3dc589e2ed19904ce746c7cf6c2a8a7ea33fa4eaf881b9b272d31f2be91984f505d6
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.12.1":
version: 7.12.5
resolution: "@babel/helper-replace-supers@npm:7.12.5"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.12.1
"@babel/helper-optimise-call-expression": ^7.10.4
"@babel/traverse": ^7.12.5
"@babel/types": ^7.12.5
checksum: 5a9ac871de38e65128e082bcca925298a4dd1501b1b79d79ebf7fc3c03490dcc1e397d582f513543f908f962dcb161a0ce4d968423b0c209c4321487bf2d5ec9
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-replace-supers@npm:7.14.5"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.14.5
"@babel/helper-optimise-call-expression": ^7.14.5
"@babel/traverse": ^7.14.5
"@babel/types": ^7.14.5
checksum: 368aba02e75a3bdae7e79d424c7ec98c72a3d8ced95920899e9efc39d274a414c7ab0ac9ed49c9af21e6430a5c5063e382de93d2dd83ff27c8f469a011a658a0
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: ca44e3f694957d4026e2837905cd4f4ec60d73f49f8d65d8592afa6d797cb000f261ce7db1ed3e14b51200467f4c04917cb84ebe395f3d153462ccce1b980322
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.14.8":
version: 7.14.8
resolution: "@babel/helper-simple-access@npm:7.14.8"
dependencies:
"@babel/types": ^7.14.8
checksum: 299c24e604d6750c62e252f9eb3ecc58efa214bc3daf4e9abd124244d961d53b51cce8b070f1aba1cef1f59c1fcd9cb9ab5ada41633f1f37eeb5f944de0c282e
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: ddfc44d0cf75ee3a73e71b18e8b9b67d256f6e8496e550ab0b1342ef8cd62dd232c13ac77569e319869b1515a9733863e69a143e76f52e9fc1b51ee374b8869b
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-split-export-declaration@npm:7.14.5"
dependencies:
"@babel/types": ^7.14.5
checksum: 80965627683125d6e4d3ead34f685219933203d7852f2f8af87883702367da5b43bde05b772040434841d7259a4e7045b3ab0ff1768a37c90b6563928191a562
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: 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@npm:^7.14.5, @babel/helper-validator-identifier@npm:^7.14.8":
version: 7.14.8
resolution: "@babel/helper-validator-identifier@npm:7.14.8"
checksum: 568d1e893950bd8860db14044e94409a7ed22ac3e6aacf5c5c891afffc123c3cadc2fc6b8b660a7bb7f36dc41504d00605f56f21a244ae60b319611ecccd241a
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/helper-validator-option@npm:7.14.5"
checksum: aded46b377d25f5966aab30506cdb95908bae18ea5d062e86c646e9afcef911327da80e637e06c3542ea2ba01cab903d18e91fc8a12fbf7b15e0b3e8ee0b9d3b
languageName: node
linkType: hard
"@babel/helpers@npm:^7.12.5":
version: 7.12.5
resolution: "@babel/helpers@npm:7.12.5"
dependencies:
"@babel/template": ^7.10.4
"@babel/traverse": ^7.12.5
"@babel/types": ^7.12.5
checksum: 5cc171461d6d38c3d46494e3b35c390ea051fc3a3406cdf378960c57a1656a8e1f799e7b00080a82552ebb1ee7054a1e648421eaf73f31ad12c12a03b0b42bc0
languageName: node
linkType: hard
"@babel/helpers@npm:^7.14.8":
version: 7.14.8
resolution: "@babel/helpers@npm:7.14.8"
dependencies:
"@babel/template": ^7.14.5
"@babel/traverse": ^7.14.8
"@babel/types": ^7.14.8
checksum: 5a1aea6d8f38f90ef00cd0a3fec9f25bce7207efa628898c8362b50d8fcc997a1e69a52a133794719a9fb065752b8edced92196f5ccba53171b9e046b13bb824
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: c167b938af9797e7630dd922398ceb1a079469085b9c0a7274f093f9f2b1ef9f0a5efec89592e81cbab7c87a537d32c238cea97d288b7af9a0d26b2bceb7a439
languageName: node
linkType: hard
"@babel/highlight@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/highlight@npm:7.14.5"
dependencies:
"@babel/helper-validator-identifier": ^7.14.5
chalk: ^2.0.0
js-tokens: ^4.0.0
checksum: a1ed599c2655eb0b13134875ba2626b547a2634940e532c86a02896fb403f197cd56d1adaa474c7859ae4f53fabc5f1621e90770e75d235ca3350952ba78aa5c
languageName: node
linkType: hard
"@babel/parser@npm:^7.0.0-beta.54, @babel/parser@npm:^7.1.0, @babel/parser@npm:^7.12.10, @babel/parser@npm:^7.12.7":
version: 7.12.10
resolution: "@babel/parser@npm:7.12.10"
bin:
parser: ./bin/babel-parser.js
checksum: b21b51c2c5b6da559b70337a9fa0cf77da52f9ba70755bed5e41d04fa4b7d043a51a58ff6c0cb110ff80f5e204310afec0596dd8f841542ac3c41d6a1cf0bd0d
languageName: node
linkType: hard
"@babel/parser@npm:^7.14.5, @babel/parser@npm:^7.14.8, @babel/parser@npm:^7.7.2":
version: 7.14.8
resolution: "@babel/parser@npm:7.14.8"
bin:
parser: ./bin/babel-parser.js
checksum: 1f900e92675bac6120dfb3e9ea86841fdaba11d338a220017dbcb9e95815a3854ea479da8027e80acaa7f0e618b96e59bbbf3a230a05aaa3407c9419eb742cfe
languageName: node
linkType: hard
"@babel/plugin-syntax-async-generators@npm:^7.8.4":
version: 7.8.4
resolution: "@babel/plugin-syntax-async-generators@npm:7.8.4"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 39685944ffe342981afb1fe3af824305e94ee249b1841c78c1112f93d256d3d405902ac146ab3bad8c243710f081621f9fbf53c62474800d398293c99521c8ef
languageName: node
linkType: hard
"@babel/plugin-syntax-bigint@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-bigint@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8c9b610377af48e1d8ec0d5ad5eec5e462fbc775b20f367e0ebc2656b98b4cc73a952e8b5ab8641e6de0d04923f3843dd73ce00a71ef5cac9940822ff776c8ec
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: b5e354a0cd18f67f29e59cdaa80f9e50839ed9d3d8e1fca2964431fa474d08c3ca4cd1f61d0bcb577e8451c541e45e0e702e6feca5483ecd4e265ef5a0b70d42
languageName: node
linkType: hard
"@babel/plugin-syntax-import-meta@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 685ee8f0b5b675952e02e1cabcde4d92638918a66ed515b2663e2e0b2246210a0768325423d5642f8687653a449357826675ccfcb712676be260a0ae13313828
languageName: node
linkType: hard
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1a7dabf0a4b264cb235966c4256aad131567eba20e41de731fa9127d371454a2f702e27fd7bedac65efb0df847e5cece7bcb5507a931604d1c2ecb7390adaa1f
languageName: node
linkType: hard
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 5b82f717707d278e58d12649932bf3327923361f051cd4517a5b63d7ebfe39cb6cdfb37aa199b5a441db305301a3c8de01c946d25d1f4c4ecb94322a23ac9e73
languageName: node
linkType: hard
"@babel/plugin-syntax-nullish-coalescing-operator@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-nullish-coalescing-operator@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 4ba03753759a2d9783b792c060147a20f474f76c42edf77cbf89c6669f9f22ffb3cbba4facdd8ce651129db6089a81feca1f7e42da75244eabedecba37bd20be
languageName: node
linkType: hard
"@babel/plugin-syntax-numeric-separator@npm:^7.8.3":
version: 7.10.4
resolution: "@babel/plugin-syntax-numeric-separator@npm:7.10.4"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 47ae8782939ccc41f94b1d46b8b7a63363b003b8b7544bddae8dd454a8d51b38bbd4f9c26e91ecfb5fc16dc5f2228700e3030def63c5d07046073ec8fabc4665
languageName: node
linkType: hard
"@babel/plugin-syntax-object-rest-spread@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-object-rest-spread@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: db5dfb39faceddba8b80c586e331e17c3a1f79941f80eaa070b91fb920582bffe8bba46f6bebbdaf7c1f9b0bbe2a68493c28e1c9fb0ced864da739c0cd52ce43
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-catch-binding@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-catch-binding@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: f03d07526674ecdb3388e1d648ec250250968e13c037a7110e37d3eab0b82b07d6605332772afdf19f1831dfd3bdbbf0288a7d9097097d30b9548388ea693a07
languageName: node
linkType: hard
"@babel/plugin-syntax-optional-chaining@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-optional-chaining@npm:7.8.3"
dependencies:
"@babel/helper-plugin-utils": ^7.8.0
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 2a50685d023bc609b01a3fd7ed3af03bc36c575da8d02199ed51cb24e8e068f26a128a20486cd502abe9e1d4c02e0264b8a58f1a5143e1291ca3508a948ada97
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.12.1
resolution: "@babel/plugin-syntax-top-level-await@npm:7.12.1"
dependencies:
"@babel/helper-plugin-utils": ^7.10.4
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 9767e46ddc1add9133a21f5d6c4452e9a62f891fe1db5d8291f62f9036f9e697bc118adad43109a8740ac15769e9489d68d134b17cfe9f3bdf06d2c50c9c6dce
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.7.2":
version: 7.14.5
resolution: "@babel/plugin-syntax-typescript@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 1b26952c0fa586460c8be3422e755fcd28a0cbddf5fb5647ade091facddc7a314b0320cb7a63072f32fd63702332ec837dc0e2b21a111c427c21d243596da180
languageName: node
linkType: hard
"@babel/template@npm:^7.10.4, @babel/template@npm:^7.12.7, @babel/template@npm:^7.3.3":
version: 7.12.7
resolution: "@babel/template@npm:7.12.7"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/parser": ^7.12.7
"@babel/types": ^7.12.7
checksum: 6e0a050be7d07ca6755305d74892dfa1e119d1193929275f8019339fbbf45257eea41385cf99325301001a2b2912d186e447393229fe169f50a8bfbcbf8a850a
languageName: node
linkType: hard
"@babel/template@npm:^7.14.5":
version: 7.14.5
resolution: "@babel/template@npm:7.14.5"
dependencies:
"@babel/code-frame": ^7.14.5
"@babel/parser": ^7.14.5
"@babel/types": ^7.14.5
checksum: 71619e2e3d6d518bf6c40ebd610379b050a6e8e9a2ec0cda8b5c28aea5105f69006758b575dae63a21a6d4f64f854e92c0cb6cf8841d59f5585596165df78060
languageName: node
linkType: hard
"@babel/traverse@npm:^7.0.0-beta.54, @babel/traverse@npm:^7.1.0, @babel/traverse@npm:^7.12.1, @babel/traverse@npm:^7.12.10, @babel/traverse@npm:^7.12.5":
version: 7.12.10
resolution: "@babel/traverse@npm:7.12.10"
dependencies:
"@babel/code-frame": ^7.10.4
"@babel/generator": ^7.12.10
"@babel/helper-function-name": ^7.10.4
"@babel/helper-split-export-declaration": ^7.11.0
"@babel/parser": ^7.12.10
"@babel/types": ^7.12.10
debug: ^4.1.0
globals: ^11.1.0
lodash: ^4.17.19
checksum: 63e8500aed71da6fba8058751298c3bc1b54628585fb27047cbf2c0ed66df03f19e6b0fa9a8809bbb5131c27464b4ce950753479ef4333759fe5a400ae954956
languageName: node
linkType: hard
"@babel/traverse@npm:^7.14.5, @babel/traverse@npm:^7.14.8, @babel/traverse@npm:^7.7.2":
version: 7.14.8
resolution: "@babel/traverse@npm:7.14.8"
dependencies:
"@babel/code-frame": ^7.14.5
"@babel/generator": ^7.14.8
"@babel/helper-function-name": ^7.14.5
"@babel/helper-hoist-variables": ^7.14.5
"@babel/helper-split-export-declaration": ^7.14.5
"@babel/parser": ^7.14.8
"@babel/types": ^7.14.8
debug: ^4.1.0
globals: ^11.1.0
checksum: 237d60fb80a4841805c51ab6334e865e5b6aae559a257d4ca0a86b78f22c0cedfbbdc1365a4d97407a029c117e1f0c430d80c18ce7ab3d02990def2f3bb6bf89
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.0.0-beta.54, @babel/types@npm:^7.10.4, @babel/types@npm:^7.11.0, @babel/types@npm:^7.12.1, @babel/types@npm:^7.12.10, @babel/types@npm:^7.12.5, @babel/types@npm:^7.12.7, @babel/types@npm:^7.3.0, @babel/types@npm:^7.3.3":
version: 7.12.10
resolution: "@babel/types@npm:7.12.10"
dependencies:
"@babel/helper-validator-identifier": ^7.10.4
lodash: ^4.17.19
to-fast-properties: ^2.0.0
checksum: 4f791b6788397d38eba9d4ee7e019e2f88ab337ae331da69d6f4d5d5b26d40c25a47a92f2b0c2025cf856455728fa9d9a79bb046f6f998c491375453822ae2ea
languageName: node
linkType: hard
"@babel/types@npm:^7.14.5, @babel/types@npm:^7.14.8":
version: 7.14.8
resolution: "@babel/types@npm:7.14.8"
dependencies:
"@babel/helper-validator-identifier": ^7.14.8
to-fast-properties: ^2.0.0
checksum: e2f3be565535e5684a961a47de39320d542fc3ae3c61c1282071f260db949d756fbd5293fef68ef0a25e6f466ee9285d911f12b696edd88b38c48c88463e3064
languageName: node
linkType: hard
"@babel/types@npm:^7.8.3":
version: 7.13.14
resolution: "@babel/types@npm:7.13.14"
dependencies:
"@babel/helper-validator-identifier": ^7.12.11
lodash: ^4.17.19
to-fast-properties: ^2.0.0
checksum: 0dda1e774076c763ad38d77a2292524556be0629f5b7a2078bddb40ae4a2fd059d10197029a988926dc314f7519e17daa8a714656e0faa207f2bb5339b57410c
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 4fc6fb784b09d2e994fc9180dc8af9f674a4e5114cd2c52754e689f87725e670d0919728945fe3991d434109e42e5ac6f9d85c58a566e2a645eb9dda68eead6a
languageName: node
linkType: hard
"@cnakazawa/watch@npm:^1.0.3":
version: 1.0.4
resolution: "@cnakazawa/watch@npm:1.0.4"
dependencies:
exec-sh: ^0.3.2
minimist: ^1.2.0
bin:
watch: cli.js
checksum: 7909f89bbee917b2a5932fd178b48b5291f417293538b1e8e68a5fa5815b3d6d4873c591d965f84559cd3e7b669c42a749ab706ef792368de39b95541ae4627d
languageName: node
linkType: hard
"@eclipse-che/plugin-registry-build-update-automation@workspace:tools/automation":
version: 0.0.0-use.local
resolution: "@eclipse-che/plugin-registry-build-update-automation@workspace:tools/automation"
dependencies:
"@types/decompress": ^4.2.3
"@types/fs-extra": ^9.0.11
"@types/glob": ^7.1.3
"@types/jest": ^26.0.23
"@types/js-yaml": ^3.12.6
"@types/semver": ^7.3.5
"@typescript-eslint/eslint-plugin": ^4.22.0
"@typescript-eslint/parser": ^4.22.0
eslint: ^7.25.0
eslint-config-prettier: ^8.3.0
eslint-import-resolver-node: ^0.3.4
eslint-plugin-deprecation: ^1.2.0
eslint-plugin-header: ^3.1.1
eslint-plugin-import: ^2.22.1
eslint-plugin-jest: ^24.3.6
eslint-plugin-no-null: ^1.0.2
eslint-plugin-no-unsanitized: ^3.1.5
fs-extra: ^9.1.0
handlebars: ^4.7.7
import-sort-style-eslint: ^6.0.0
jest: ^26.6.3
js-yaml: ^3.14.1
moment: ^2.29.1
prettier: ^2.2.1
prettier-plugin-import-sort: ^0.0.6
semver: ^7.3.5
simple-git: ^2.38.0
ts-jest: ^26.5.5
ts-node: ^9.1.1
typescript: ^4.2.4
languageName: unknown
linkType: soft
"@eclipse-che/plugin-registry-generator@workspace:tools/build":
version: 0.0.0-use.local
resolution: "@eclipse-che/plugin-registry-generator@workspace:tools/build"
dependencies:
"@types/decompress": ^4.2.3
"@types/fs-extra": ^9.0.11
"@types/glob": ^7.1.3
"@types/jest": ^26.0.23
"@types/js-yaml": ^3.12.6
"@types/semver": ^7.3.5
"@typescript-eslint/eslint-plugin": ^4.22.0
"@typescript-eslint/parser": ^4.22.0
axios: ^0.21.1
concurrently: ^6.0.2
cpx: ^1.5.0
decompress: ^4.2.1
docker-image-name-parser: ^0.1.0
eslint: ^7.25.0
eslint-config-prettier: ^8.3.0
eslint-plugin-deprecation: ^1.2.0
eslint-plugin-header: ^3.1.1
eslint-plugin-jest: ^24.3.6
eslint-plugin-no-null: ^1.0.2
eslint-plugin-no-unsanitized: ^3.1.5
fs-extra: ^9.1.0
glob: ^7.1.6
handlebars: ^4.7.7
if-env: ^1.0.4
import-sort-style-eslint: ^6.0.0
inversify: ^5.1.1
jest: ^26.6.3
js-yaml: ^3.14.1
moment: ^2.29.1
ora: ^5.4.0
prettier: ^2.2.1
prettier-plugin-import-sort: ^0.0.6
reflect-metadata: ^0.1.13
rimraf: ^3.0.2
semver: ^7.3.5
simple-git: ^2.38.0
ts-jest: ^26.5.5
ts-mockito: ^2.6.1
ts-node: ^9.1.1
tslib: ^2.2.0
typescript: ^4.2.4
bin:
plugin-registry-generator: lib/entrypoint.js
languageName: unknown
linkType: soft
"@eclipse-che/plugin-registry-monorepo@workspace:.":
version: 0.0.0-use.local
resolution: "@eclipse-che/plugin-registry-monorepo@workspace:."
dependencies:
"@types/jest": ^26.0.24
"@typescript-eslint/eslint-plugin": ^4.28.4
"@typescript-eslint/parser": ^4.28.4
eslint: ^7.31.0
eslint-config-prettier: ^8.3.0
eslint-plugin-deprecation: ^1.2.1
eslint-plugin-header: ^3.1.1
eslint-plugin-jest: ^24.3.7
eslint-plugin-no-null: ^1.0.2
eslint-plugin-no-unsanitized: ^3.1.5
import-sort-style-eslint: ^6.0.0
jest: ^27.0.6
prettier: ^2.3.2
prettier-plugin-import-sort: ^0.0.7
rimraf: ^3.0.2
ts-jest: ^27.0.3
ts-mockito: ^2.6.1
ts-node: ^10.1.0
tslib: ^2.3.0
typescript: ^4.3.5
languageName: unknown
linkType: soft
"@eslint/eslintrc@npm:^0.4.0":
version: 0.4.0
resolution: "@eslint/eslintrc@npm:0.4.0"
dependencies:
ajv: ^6.12.4
debug: ^4.1.1
espree: ^7.3.0
globals: ^12.1.0
ignore: ^4.0.6
import-fresh: ^3.2.1
js-yaml: ^3.13.1
minimatch: ^3.0.4
strip-json-comments: ^3.1.1
checksum: d3f51b741997cbf36662d8b5a52985bfa5d2873e48cadccd95c67fcce1706327ec98ebb6f0be79c6ecbc31bdeca32c2b1c4f66fd1cf3934c434d1ac269cbceac
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^0.4.3":
version: 0.4.3
resolution: "@eslint/eslintrc@npm:0.4.3"
dependencies:
ajv: ^6.12.4
debug: ^4.1.1
espree: ^7.3.0
globals: ^13.9.0
ignore: ^4.0.6
import-fresh: ^3.2.1
js-yaml: ^3.13.1
minimatch: ^3.0.4
strip-json-comments: ^3.1.1
checksum: fa916db689fac96c749571f03f931448d896ce07c3da40079082f28621f52defa36cc0c88bfcdd8d19b9981a6549c3a9a3977953db2f6945aba1135bb83a3d35
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.5.0":
version: 0.5.0
resolution: "@humanwhocodes/config-array@npm:0.5.0"
dependencies:
"@humanwhocodes/object-schema": ^1.2.0
debug: ^4.1.1
minimatch: ^3.0.4
checksum: 71e3c1fef40166ecaacbe29b681499dc6bab3fe45df5bfb3e137baf6e50f22813cf14f24ff759a4da43b6743d7f5a776298ae1e0e266c9602bab62da2ee3b302
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.0":
version: 1.2.0
resolution: "@humanwhocodes/object-schema@npm:1.2.0"
checksum: ef533ee0d227b8036e4220013575fedc3d0346e2e40bc5f5536ba5761825f23577eb4b71e52f18a2d3b827c9d83cfa60c821a71e30d5f6537918a94bc1990963
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: f7f3b1c922bf5e36a7f747b2a80fedc9c2e1ebd7e03dc73082fca7c1066cc4e2e2ac39827aded6a087c32294e9c032ff3e50bc9041fcf757b4a38ca97418b652
languageName: node
linkType: hard
"@istanbuljs/schema@npm:^0.1.2":
version: 0.1.2
resolution: "@istanbuljs/schema@npm:0.1.2"
checksum: ebc6bd5f14aca7dd229d3e03aaab47c4c9a1ae25c892d6370d786c7a06128b4e03f60b31b10408010b701e1982087c1e2dae798e66cb57b44c7883228693f8e4
languageName: node
linkType: hard
"@jest/console@npm:^26.6.2":
version: 26.6.2
resolution: "@jest/console@npm:26.6.2"
dependencies:
"@jest/types": ^26.6.2
"@types/node": "*"
chalk: ^4.0.0
jest-message-util: ^26.6.2
jest-util: ^26.6.2
slash: ^3.0.0
checksum: 72920a893e4a622ce96786eb1d3f6ef0c88c9d1ec32fffbde4e25f582b5f1ccd5f5b7a370c0b1a4917fb74c046467f43422c0039c497df4b307527910759e0a5
languageName: node
linkType: hard
"@jest/console@npm:^27.0.6":
version: 27.0.6
resolution: "@jest/console@npm:27.0.6"
dependencies:
"@jest/types": ^27.0.6
"@types/node": "*"
chalk: ^4.0.0
jest-message-util: ^27.0.6
jest-util: ^27.0.6
slash: ^3.0.0
checksum: abb7c6f7ea0491045bf59a446c8a451299c1832494eefe764601f5b4a96636eff822702c1d867f7dbf7b0577af1af6b60015aa68b007edd2a21fffdbcdc044c4
languageName: node
linkType: hard
"@jest/core@npm:^26.6.3":
version: 26.6.3
resolution: "@jest/core@npm:26.6.3"
dependencies:
"@jest/console": ^26.6.2
"@jest/reporters": ^26.6.2
"@jest/test-result": ^26.6.2
"@jest/transform": ^26.6.2
"@jest/types": ^26.6.2
"@types/node": "*"
ansi-escapes: ^4.2.1
chalk: ^4.0.0
exit: ^0.1.2
graceful-fs: ^4.2.4
jest-changed-files: ^26.6.2
jest-config: ^26.6.3
jest-haste-map: ^26.6.2
jest-message-util: ^26.6.2
jest-regex-util: ^26.0.0
jest-resolve: ^26.6.2
jest-resolve-dependencies: ^26.6.3
jest-runner: ^26.6.3
jest-runtime: ^26.6.3
jest-snapshot: ^26.6.2
jest-util: ^26.6.2
jest-validate: ^26.6.2
jest-watcher: ^26.6.2
micromatch: ^4.0.2
p-each-series: ^2.1.0
rimraf: ^3.0.0
slash: ^3.0.0
strip-ansi: ^6.0.0
checksum: e0d35e40fcbda21997dbc126722db92f8d534926c9bcf4a30ee79aa772e40ead2fefd405866e3364bff7ee50b12f03705c3fea5491b77807091961b2c3a0d65e
languageName: node
linkType: hard
"@jest/core@npm:^27.0.6":
version: 27.0.6
resolution: "@jest/core@npm:27.0.6"
dependencies:
"@jest/console": ^27.0.6
"@jest/reporters": ^27.0.6
"@jest/test-result": ^27.0.6
"@jest/transform": ^27.0.6
"@jest/types": ^27.0.6
"@types/node": "*"
ansi-escapes: ^4.2.1
chalk: ^4.0.0
emittery: ^0.8.1
exit: ^0.1.2
graceful-fs: ^4.2.4
jest-changed-files: ^27.0.6
jest-config: ^27.0.6
jest-haste-map: ^27.0.6
jest-message-util: ^27.0.6
jest-regex-util: ^27.0.6
jest-resolve: ^27.0.6
jest-resolve-dependencies: ^27.0.6
jest-runner: ^27.0.6
jest-runtime: ^27.0.6
jest-snapshot: ^27.0.6
jest-util: ^27.0.6
jest-validate: ^27.0.6
jest-watcher: ^27.0.6
micromatch: ^4.0.4
p-each-series: ^2.1.0
rimraf: ^3.0.0
slash: ^3.0.0
strip-ansi: ^6.0.0
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
checksum: 4c8ec2e4d5ba038641b4cb11b2f0a7ef1097c7a4079ef6c860e9de5c907db308ae8cb3ab4c797bc4b4da11a786684eb90e844cee8d3bce3333f2dc14807e5175
languageName: node
linkType: hard
"@jest/environment@npm:^26.6.2":
version: 26.6.2
resolution: "@jest/environment@npm:26.6.2"
dependencies:
"@jest/fake-timers": ^26.6.2
"@jest/types": ^26.6.2
"@types/node": "*"
jest-mock: ^26.6.2
checksum: a4f426546801e79d2f5d1a516d80c330ccbe1638f7a7705f65110ac33f8a3ded08ccef75ad648610618122f2bfeba34e0c1e616eccc219a315956d63ff30d8fc
languageName: node
linkType: hard
"@jest/environment@npm:^27.0.6":
version: 27.0.6
resolution: "@jest/environment@npm:27.0.6"
dependencies:
"@jest/fake-timers": ^27.0.6
"@jest/types": ^27.0.6
"@types/node": "*"
jest-mock: ^27.0.6
checksum: 37fcf1aeaf4ccd50b42bbbfff770a71813db89abf1194af690ba145f2879f53e2916195fc52ce7261ba7475f353e6468444fc9ae7e9913d442e167ea477222a8
languageName: node
linkType: hard
"@jest/fake-timers@npm:^26.6.2":
version: 26.6.2
resolution: "@jest/fake-timers@npm:26.6.2"
dependencies:
"@jest/types": ^26.6.2
"@sinonjs/fake-timers": ^6.0.1
"@types/node": "*"
jest-message-util: ^26.6.2
jest-mock: ^26.6.2
jest-util: ^26.6.2
checksum: a82aa6d2f31d5e9958484b32e4714cb2ebca6ce6baf590c29505c8eea638663bf27f27b98a30ab574023cb15ecffbe70dc75d14694d76c4ccc78bee37d2ec1d1