generated from Byndyusoft/node-base-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathyarn.lock
9571 lines (8619 loc) · 334 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: 7
cacheKey: 9
"@ampproject/remapping@npm:^2.1.0":
version: 2.2.0
resolution: "@ampproject/remapping@npm:2.2.0"
dependencies:
"@jridgewell/gen-mapping": "npm:^0.1.0"
"@jridgewell/trace-mapping": "npm:^0.3.9"
checksum: 468104da656991a578ac6c9e074fe9e6a810c37e90106a738464c971a9cea37ae29c3752c8946f884a82da458597fdff57da70c4fca3fb560d29038132d2d524
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.10.4, @babel/code-frame@npm:^7.12.13, @babel/code-frame@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
dependencies:
"@babel/highlight": "npm:^7.18.6"
checksum: eb27d165ea1c7c23e71a2a6f64225fe0ca0b2a39f5c0b57fda2a62dfa845799ca94886b08014f8fd4a711538cc6b1c89b9fc1dca6a5148893932bc03412ca848
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.20.5":
version: 7.20.10
resolution: "@babel/compat-data@npm:7.20.10"
checksum: 8e7967c8a2e598c6d920e0e129ebd0430ae6087725ed86ae09c499bf391f1c20a6ccbbd8f59d572a7a6e3c11252002e1f8fa1ec53a650447b8a5bee3d1e6ed74
languageName: node
linkType: hard
"@babel/core@npm:^7.11.6, @babel/core@npm:^7.12.3":
version: 7.20.7
resolution: "@babel/core@npm:7.20.7"
dependencies:
"@ampproject/remapping": "npm:^2.1.0"
"@babel/code-frame": "npm:^7.18.6"
"@babel/generator": "npm:^7.20.7"
"@babel/helper-compilation-targets": "npm:^7.20.7"
"@babel/helper-module-transforms": "npm:^7.20.7"
"@babel/helpers": "npm:^7.20.7"
"@babel/parser": "npm:^7.20.7"
"@babel/template": "npm:^7.20.7"
"@babel/traverse": "npm:^7.20.7"
"@babel/types": "npm:^7.20.7"
convert-source-map: "npm:^1.7.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.1"
semver: "npm:^6.3.0"
checksum: 8d4a8bec128417f0a3cbcfbfb153855ecd8cae825271ed42a8fd7f0dfdd9f0f24f05ca3b95a897524a445d44a308cd12a521b726c285f5f2a41c343cfdde9f91
languageName: node
linkType: hard
"@babel/generator@npm:^7.20.7, @babel/generator@npm:^7.7.2":
version: 7.20.7
resolution: "@babel/generator@npm:7.20.7"
dependencies:
"@babel/types": "npm:^7.20.7"
"@jridgewell/gen-mapping": "npm:^0.3.2"
jsesc: "npm:^2.5.1"
checksum: adc0c33023c56e6715ab336f878acc270dd6bdc60d4049923afa0f5417b98b60bd6636a29fd76fe6cb75fb87301d769f0a22943703efe8cc45ce8a561b092a06
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.20.7":
version: 7.20.7
resolution: "@babel/helper-compilation-targets@npm:7.20.7"
dependencies:
"@babel/compat-data": "npm:^7.20.5"
"@babel/helper-validator-option": "npm:^7.18.6"
browserslist: "npm:^4.21.3"
lru-cache: "npm:^5.1.1"
semver: "npm:^6.3.0"
peerDependencies:
"@babel/core": ^7.0.0
checksum: db84a8c5cb409ba351c7602e082d1fe15c835d822b1cb8ead0dc113775d7ebc48bfb2e8ea34319ed1c3d4510a80d0ed5f41d596ea5f8ff329f9ae3562af62f14
languageName: node
linkType: hard
"@babel/helper-environment-visitor@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-environment-visitor@npm:7.18.9"
checksum: 6a770ab046578d692f954213680f66d0764a92d608fcc121cf87c575223c44729fdebecc08550d0e18a5b22a3a72669c01de5351b6c1eff75a96b3167dbfe922
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/helper-function-name@npm:7.19.0"
dependencies:
"@babel/template": "npm:^7.18.10"
"@babel/types": "npm:^7.19.0"
checksum: 65ba2eaad08ba73238aa4f11004a7e0f1d96a57c85863d53571741944986f55f334dfd9a59a3a477daefc7d31bd72df78a78673046082d6625888d3d357d36ed
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-hoist-variables@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: 462ef0d14fbe6861cee3a2c2bee1eff76d31ec94230c147684d55fa65351784c4afffaa62a8a540caec659d47ef5641707cdb99ce049f1bf2995cfcccace537a
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-module-imports@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: 5c2d1987e4854abe7ca227d2e318b699c100dedc8ec45fe858755d5e9da8760ac136c0b1e669cc381f44eb79607b6f4ffcf7642e1aa84504389f9ca6065e8ee1
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.20.7":
version: 7.20.11
resolution: "@babel/helper-module-transforms@npm:7.20.11"
dependencies:
"@babel/helper-environment-visitor": "npm:^7.18.9"
"@babel/helper-module-imports": "npm:^7.18.6"
"@babel/helper-simple-access": "npm:^7.20.2"
"@babel/helper-split-export-declaration": "npm:^7.18.6"
"@babel/helper-validator-identifier": "npm:^7.19.1"
"@babel/template": "npm:^7.20.7"
"@babel/traverse": "npm:^7.20.10"
"@babel/types": "npm:^7.20.7"
checksum: 0647a26f9c91c41d80d7a0c28f1b32a8a70ff59d3e6fdeff29cf6b72d0aa66088f36cf1a87e602f702801ad654623b63070c344d0b883ab7ad2cf8212427cdbb
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.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.19.0, @babel/helper-plugin-utils@npm:^7.8.0":
version: 7.20.2
resolution: "@babel/helper-plugin-utils@npm:7.20.2"
checksum: 52745723617d3e4695a4dbec3728736c4f6d512ff382c36047b6d06117d2db059a65258629c5a42d57bed5eec2db7e473b14e524f611b0b04190b5922ea5d9f5
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.20.2":
version: 7.20.2
resolution: "@babel/helper-simple-access@npm:7.20.2"
dependencies:
"@babel/types": "npm:^7.20.2"
checksum: 23f8a82cba4bce49b71f91e07f5afbddc6622b2762ab9287d7d160134cd6f7d6364ce8a46762b6cd3cc6da6eaf2e6758166394036a7feedd762042d9ad94a533
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-split-export-declaration@npm:7.18.6"
dependencies:
"@babel/types": "npm:^7.18.6"
checksum: a7834c5b54600542460aa278b0e988178ebe1905df856df909e4fdafffcaa05fc1688e5504a6f388ca1bc36dbdb78a56af422b4a7795876680451d86e55055b9
languageName: node
linkType: hard
"@babel/helper-string-parser@npm:^7.19.4":
version: 7.19.4
resolution: "@babel/helper-string-parser@npm:7.19.4"
checksum: a8646931cba0c2905b683b99879f02c8a516a6c702c9f46cc02f0a8e93ef6f01540f2e7017d8288b9c039e1c3316c7858309ea3d6e39fa78bd98859b338603ee
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.15.7, @babel/helper-validator-identifier@npm:^7.18.6, @babel/helper-validator-identifier@npm:^7.19.1":
version: 7.19.1
resolution: "@babel/helper-validator-identifier@npm:7.19.1"
checksum: 089fdf605ee8dfa3004cd84c69e655ff9ab8bdb4e7fa02bf0012db728c6247acb599ca1118d2f9124d7b417fc5793ee348f2da8bc64be230b3b13ba7cd4364cc
languageName: node
linkType: hard
"@babel/helper-validator-option@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-validator-option@npm:7.18.6"
checksum: c32c6e5daa9b2e2cbee66477c652757add3a204fea24f486b3b630e1fb69df53591ddc8acf5c5bc30a157e7275e53e25b3fbafbe1d2fb21604ca09cd8d3d052c
languageName: node
linkType: hard
"@babel/helpers@npm:^7.20.7":
version: 7.20.7
resolution: "@babel/helpers@npm:7.20.7"
dependencies:
"@babel/template": "npm:^7.20.7"
"@babel/traverse": "npm:^7.20.7"
"@babel/types": "npm:^7.20.7"
checksum: 7dfa50d44c1ecd71a06116e0343aaeea3d93a10df2d452e327e15e33645201e5155f28b3550d242892e595364d88d3169a738e25bf758432cfe276999b11c777
languageName: node
linkType: hard
"@babel/highlight@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/highlight@npm:7.18.6"
dependencies:
"@babel/helper-validator-identifier": "npm:^7.18.6"
chalk: "npm:^2.0.0"
js-tokens: "npm:^4.0.0"
checksum: b8eeb1d38327c635004b3ae946ff334bb994334a5fdd874e216e62bbe3b8f8f10c901c3795c25db7c8e49eb5a56948b9dbe38c3800c4f977016402997dacedae
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.14.7, @babel/parser@npm:^7.20.7":
version: 7.20.7
resolution: "@babel/parser@npm:7.20.7"
bin:
parser: ./bin/babel-parser.js
checksum: d63a5d06cbf620443bb069b9f53df8ff9937693430ec6aa5bbdde8860f3490dd277eca4059aa7a844c07df41201f41e489f4767638afe6a7928d81ea200d1baf
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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 518ee81097d43f6a439cfe91c708cca9bf67a32f0ec6f65df3c34d8b1ce51b473f77040345684792c60ac89e1c78c0a6eacbc31592bc1d912f06e9e0c3f80716
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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7c7ac943e411834cd015f0200f9edb17735fea43b9f58edaa108a05548b8eb3508458c5e98604ccad441b7d06a0e9b68cbd6d6c7e35065cba15f75e519504a01
languageName: node
linkType: hard
"@babel/plugin-syntax-class-properties@npm:^7.8.3":
version: 7.12.13
resolution: "@babel/plugin-syntax-class-properties@npm:7.12.13"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.12.13"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 7a9d076a55d11a53bee2b2c5b05a827f0bc5e13b805d7cd801e3e39b4068b88ca6ed5c7ae7ed2df5259e02515cc0f095468bd8ad4f0609f32adf3abfa3d077cf
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": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 8513fb2d4035e9149f2faab57908aca2a354fb05deecaa681e659178c749e01c81f703b4c5fe6f4ce816e57f31ca2e9b625a5b43d29327ffce3d310722d958bd
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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d21aa96f15268f923f70e49155059ca220a7f7da3cec5072121fb8342527fc9e5753455cd61318054a170b1ecba13fd1891eb2c67f28a1c335af5bbaf52b93d0
languageName: node
linkType: hard
"@babel/plugin-syntax-jsx@npm:^7.7.2":
version: 7.18.6
resolution: "@babel/plugin-syntax-jsx@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.18.6"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 93aa8b4803ade912560529ffebed69cf29617f5025fdd39eeea3b2c60fa16f7120dee3e310931fd8faf14e2bd0bc5227210efea987bd393e61dcb4287d9aac8b
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": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 3a01f61a5b0f429dadbfb58d979c550c496ead9121282319406398cc76f7a6dfb58c20c9782b6b1b1b74f938add3edd962a3f699bf407deda003f84708b94c7e
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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: cc19c595a643531cdfa41eb9d5941ae1734049d9fdad127ed262225a657d3c2dce95aeb3e40019e6f1b0403e1656fc6170b43c2fbafceab0d6fa2502a62c91d8
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": "npm:^7.10.4"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 32689c162862617fad6bfd12efed7523bf9985d396cb3eec12ef1fc96ba225600d3ea30c22051bb21dd8c8fd156fdef366e44150c3c19ef7eb7a85903a9445b4
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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 868f8cd0c2e10511056a089dab2e88f329b432b81766702de1d8970a785fdae32bd022a69359a7ca6fc58d4767418b871e88fe99ab4209afbaea5e62ebd82ada
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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: c6277360d55c4b4dbaca9fbaf279fe2783e1c0cc1f8edb41feb6f14d5b7ce1f25ca1ab4cf3d0e78411a16d3ee36d4ffd3ee30d07dbf47b67880cd707492c3158
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": "npm:^7.8.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: fd81239a2b6c02b3f8cc2abc94db405afb8292133602a9d649985f40ca92153fdfca812dae6ac273a5bd7752c1a46cd4835e5a8bcf3541388d4ece480657fe7f
languageName: node
linkType: hard
"@babel/plugin-syntax-top-level-await@npm:^7.8.3":
version: 7.14.5
resolution: "@babel/plugin-syntax-top-level-await@npm:7.14.5"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.14.5"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: d62a60c7ade2ee033c6037d1fbabb9802c8e03a79e19d33e2fb597f85b2a1a90f6718cdb532252d69ae005e3ac3b1fd29860c1858f8463c3700a81d681967473
languageName: node
linkType: hard
"@babel/plugin-syntax-typescript@npm:^7.7.2":
version: 7.20.0
resolution: "@babel/plugin-syntax-typescript@npm:7.20.0"
dependencies:
"@babel/helper-plugin-utils": "npm:^7.19.0"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 64cc3320ec9127571427c437511ea8df08ab6592693d50b647cc0126e474da36166c782e59839ff419b1d8bbadd7bd100a359616d1da282ad8db1f90d1973c50
languageName: node
linkType: hard
"@babel/runtime-corejs3@npm:^7.10.2":
version: 7.20.7
resolution: "@babel/runtime-corejs3@npm:7.20.7"
dependencies:
core-js-pure: "npm:^3.25.1"
regenerator-runtime: "npm:^0.13.11"
checksum: f95f516311261b349d0031c2eedf1824c56dfa658a26a62da404bc04911168a2acc0174d1c71605f5ba9dcf54b8ae753c8fbc3528d8bb89a9d5f1352e3a88b58
languageName: node
linkType: hard
"@babel/runtime@npm:^7.10.2, @babel/runtime@npm:^7.12.5, @babel/runtime@npm:^7.16.3, @babel/runtime@npm:^7.18.9":
version: 7.20.7
resolution: "@babel/runtime@npm:7.20.7"
dependencies:
regenerator-runtime: "npm:^0.13.11"
checksum: b22b904439569fa3b28627fc398d9bb9619f14bc9165cdf63ab5fa248660a10104ae81514607cbe55e4e26fe0d4048a89263f47f1f3da1e37f8e670b95acf244
languageName: node
linkType: hard
"@babel/template@npm:^7.18.10, @babel/template@npm:^7.20.7, @babel/template@npm:^7.3.3":
version: 7.20.7
resolution: "@babel/template@npm:7.20.7"
dependencies:
"@babel/code-frame": "npm:^7.18.6"
"@babel/parser": "npm:^7.20.7"
"@babel/types": "npm:^7.20.7"
checksum: a655fb476be89195fd0e0e89b278d0ad5edd351d7fec6e9902c9797b831895f6bcfc2b9a29de4228cdabd2904230b1db3f3ebff88aed6f3f6d4dd85db8a4d8a8
languageName: node
linkType: hard
"@babel/traverse@npm:^7.20.10, @babel/traverse@npm:^7.20.7, @babel/traverse@npm:^7.7.2":
version: 7.20.10
resolution: "@babel/traverse@npm:7.20.10"
dependencies:
"@babel/code-frame": "npm:^7.18.6"
"@babel/generator": "npm:^7.20.7"
"@babel/helper-environment-visitor": "npm:^7.18.9"
"@babel/helper-function-name": "npm:^7.19.0"
"@babel/helper-hoist-variables": "npm:^7.18.6"
"@babel/helper-split-export-declaration": "npm:^7.18.6"
"@babel/parser": "npm:^7.20.7"
"@babel/types": "npm:^7.20.7"
debug: "npm:^4.1.0"
globals: "npm:^11.1.0"
checksum: 2bad20c0abc0de7588d2cf70005a611f98016ab3145561de8a63ba24eec6e3ef370095381e67aca983a0c3f01451532bad222a933f103a7afb3d92ff8dd83ca6
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.18.6, @babel/types@npm:^7.19.0, @babel/types@npm:^7.20.2, @babel/types@npm:^7.20.7, @babel/types@npm:^7.3.0, @babel/types@npm:^7.3.3, @babel/types@npm:^7.8.3":
version: 7.20.7
resolution: "@babel/types@npm:7.20.7"
dependencies:
"@babel/helper-string-parser": "npm:^7.19.4"
"@babel/helper-validator-identifier": "npm:^7.19.1"
to-fast-properties: "npm:^2.0.0"
checksum: 3457ea7eaf5d3cb20ff93c058d60983609c5963f87ac7793e2ef690934f34fadd874669d2abc4705d5953c212ed9d3cc0194618b66fa90b99ead6d2466ccce9d
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 86336400d6fb1a8263a3e7242ad7ed870f5efae7cd8c2b18df45fa11adc9af035bac68c0da68c0f67e78b3f09ef49efe2e84c4912ddc48e2d12f30ec474c81cc
languageName: node
linkType: hard
"@byndyusoft/eslint-config@npm:2.2.1":
version: 2.2.1
resolution: "@byndyusoft/eslint-config@npm:2.2.1"
dependencies:
"@typescript-eslint/eslint-plugin": "npm:^5.19.0"
"@typescript-eslint/parser": "npm:^5.19.0"
eslint-config-prettier: "npm:^8.5.0"
eslint-import-resolver-typescript: "npm:^2.7.1"
eslint-plugin-dirs: "npm:^0.0.4"
eslint-plugin-flowtype: "npm:^8.0.3"
eslint-plugin-header: "npm:^3.1.1"
eslint-plugin-import: "npm:^2.26.0"
eslint-plugin-jest: "npm:^26.1.4"
eslint-plugin-jest-dom: "npm:^4.0.1"
eslint-plugin-jsx-a11y: "npm:^6.5.1"
eslint-plugin-n: "npm:^15.1.0"
eslint-plugin-prettier: "npm:^4.0.0"
eslint-plugin-react: "npm:^7.29.4"
eslint-plugin-react-hooks: "npm:^4.4.0"
eslint-plugin-simple-import-sort: "npm:^7.0.0"
eslint-plugin-sonarjs: "npm:^0.13.0"
eslint-plugin-testing-library: "npm:^5.3.1"
eslint-plugin-unicorn: "npm:^42.0.0"
pkg-dir: "npm:^5.0.0"
peerDependencies:
eslint: ^8.8.0
checksum: 25b389b999a1c3601987a7d5b1a823e05da8e0b46a2604b4954fd7de158706ebc985a28fecf7677a246f695dc9f33c1464a369662aa44e96e866b9fb5586226e
languageName: node
linkType: hard
"@byndyusoft/tsconfig@npm:1.2.0":
version: 1.2.0
resolution: "@byndyusoft/tsconfig@npm:1.2.0"
dependencies:
"@tsconfig/node12": "npm:^1.0.7"
"@tsconfig/node14": "npm:^1.0.0"
"@tsconfig/node16": "npm:^1.0.1"
"@tsconfig/node18": "npm:^1.0.1"
checksum: 8f5e4a164c6910ac151bc485e8be4670b82514aa205a7a252e219909fe6045d55959dd0abcb75d8615d086fe34318fee1aa2dc31d0badd6ae87201d701385dcb
languageName: node
linkType: hard
"@byndyusoft/typescript-template@workspace:.":
version: 0.0.0-use.local
resolution: "@byndyusoft/typescript-template@workspace:."
dependencies:
"@byndyusoft/eslint-config": "npm:2.2.1"
"@byndyusoft/tsconfig": "npm:1.2.0"
"@commitlint/cli": "npm:17.3.0"
"@commitlint/config-conventional": "npm:17.3.0"
"@types/jest": "npm:29.2.4"
"@types/node": "npm:14.18.36"
eslint: "npm:8.30.0"
husky: "npm:8.0.2"
jest: "npm:29.3.1"
jest-extended: "npm:3.2.0"
lint-staged: "npm:13.1.0"
markdownlint-cli: "npm:0.32.2"
pinst: "npm:3.0.0"
prettier: "npm:2.8.1"
prettier-plugin-packagejson: "npm:2.3.0"
semantic-release: "npm:19.0.5"
shx: "npm:0.3.4"
ts-jest: "npm:29.0.3"
tslib: "npm:^2.4.0"
typescript: "npm:4.9.4"
languageName: unknown
linkType: soft
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: 5e08870799494f68e5b3b79e9a337bbf5fd7e634904fbbe642769921bf158fe458c41c888f88edf051b78c5325e3339970f00b24e31421c3480bb58f02687218
languageName: node
linkType: hard
"@commitlint/cli@npm:17.3.0":
version: 17.3.0
resolution: "@commitlint/cli@npm:17.3.0"
dependencies:
"@commitlint/format": "npm:^17.0.0"
"@commitlint/lint": "npm:^17.3.0"
"@commitlint/load": "npm:^17.3.0"
"@commitlint/read": "npm:^17.2.0"
"@commitlint/types": "npm:^17.0.0"
execa: "npm:^5.0.0"
lodash.isfunction: "npm:^3.0.9"
resolve-from: "npm:5.0.0"
resolve-global: "npm:1.0.0"
yargs: "npm:^17.0.0"
bin:
commitlint: cli.js
checksum: d35477abf3c454cb4751e766f63f53f3f0bbeb6919a9066ba802a126c91f1a6da79e909a17f50904a7462ef5c960fa9543590397645854d4c798bdf3608bae6b
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:17.3.0":
version: 17.3.0
resolution: "@commitlint/config-conventional@npm:17.3.0"
dependencies:
conventional-changelog-conventionalcommits: "npm:^5.0.0"
checksum: 7e6c9496eb4561d9e1d75d482ad42e16d52786b9d5c1d3cb4c1f98ebc0ba45a541ce09c167167c98d33765434311e2f37d2bfb1439418e288b96f9d3ce1c5849
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^17.1.0":
version: 17.1.0
resolution: "@commitlint/config-validator@npm:17.1.0"
dependencies:
"@commitlint/types": "npm:^17.0.0"
ajv: "npm:^8.11.0"
checksum: d19037d356e06612a55ba915e66a15719429cbf9fa162247b96b851be2047d5a93684cca99ec14058a3affd001e9d91ebdea10c9874d1f03042364b2ce6313b1
languageName: node
linkType: hard
"@commitlint/ensure@npm:^17.3.0":
version: 17.3.0
resolution: "@commitlint/ensure@npm:17.3.0"
dependencies:
"@commitlint/types": "npm:^17.0.0"
lodash.camelcase: "npm:^4.3.0"
lodash.kebabcase: "npm:^4.1.1"
lodash.snakecase: "npm:^4.1.1"
lodash.startcase: "npm:^4.4.0"
lodash.upperfirst: "npm:^4.3.1"
checksum: 10d3923496f126234238c40afdccec294ea840fc42481e80dd5e22e06c1aceaf063b2d5d48fce5937462a42ecf504998af4e21456c31a5b3b14861b68e8cdaf3
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^17.0.0":
version: 17.0.0
resolution: "@commitlint/execute-rule@npm:17.0.0"
checksum: f84c8db196347ad01563ec372ca8a06076c5fd5c136f1a7022eccb76f7f1c9f7859dab8d36bff411a5ac9fdb8fe733f0bd963b9b87889d065d015ff3af4294c6
languageName: node
linkType: hard
"@commitlint/format@npm:^17.0.0":
version: 17.0.0
resolution: "@commitlint/format@npm:17.0.0"
dependencies:
"@commitlint/types": "npm:^17.0.0"
chalk: "npm:^4.1.0"
checksum: 70a19eb1d49f27188f6bd2fa3f373c0e72f993b8d2c41ba699645259c0cfb99ccaee9045c16a6b59a6a469b3d7dda644683a40a86973dd8b7511acf4c25d22ec
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^17.2.0":
version: 17.2.0
resolution: "@commitlint/is-ignored@npm:17.2.0"
dependencies:
"@commitlint/types": "npm:^17.0.0"
semver: "npm:7.3.7"
checksum: 3b9db83c03a33f005282093189a9e1dd06eaf91bbbca50bcf15ba2aad28a9efaf0da4053c75425a4aead31b1d899fca8261b79fe4d8d528751ddf4eb85bc4857
languageName: node
linkType: hard
"@commitlint/lint@npm:^17.3.0":
version: 17.3.0
resolution: "@commitlint/lint@npm:17.3.0"
dependencies:
"@commitlint/is-ignored": "npm:^17.2.0"
"@commitlint/parse": "npm:^17.2.0"
"@commitlint/rules": "npm:^17.3.0"
"@commitlint/types": "npm:^17.0.0"
checksum: 379a527c1e246d44f2853857c236dad0a85d120172574a4b645321c3a7e4ef6e951ae90c779763ce969bbdef37ae4ba401a18118edcb37d99e5027936e29b059
languageName: node
linkType: hard
"@commitlint/load@npm:^17.3.0":
version: 17.3.0
resolution: "@commitlint/load@npm:17.3.0"
dependencies:
"@commitlint/config-validator": "npm:^17.1.0"
"@commitlint/execute-rule": "npm:^17.0.0"
"@commitlint/resolve-extends": "npm:^17.3.0"
"@commitlint/types": "npm:^17.0.0"
"@types/node": "npm:^14.0.0"
chalk: "npm:^4.1.0"
cosmiconfig: "npm:^7.0.0"
cosmiconfig-typescript-loader: "npm:^4.0.0"
lodash.isplainobject: "npm:^4.0.6"
lodash.merge: "npm:^4.6.2"
lodash.uniq: "npm:^4.5.0"
resolve-from: "npm:^5.0.0"
ts-node: "npm:^10.8.1"
typescript: "npm:^4.6.4"
checksum: 76f8b9a0b3a0d5e6f8ece13d5466d5bce8f97ef1e46ae800508bb2bfea67e53a90333a3a8edcc4072d4d23f7fffc18eab29fbabb072029d528ad1a25f1b56bc4
languageName: node
linkType: hard
"@commitlint/message@npm:^17.2.0":
version: 17.2.0
resolution: "@commitlint/message@npm:17.2.0"
checksum: a6d463a9a18025d39927df0c16d6fdc4422d9c7edc7ff73c546f1a4b2f1f027de5d9762e4e7d1492007dc75d0547bf4d20f94c6741430050d757288987aceb95
languageName: node
linkType: hard
"@commitlint/parse@npm:^17.2.0":
version: 17.2.0
resolution: "@commitlint/parse@npm:17.2.0"
dependencies:
"@commitlint/types": "npm:^17.0.0"
conventional-changelog-angular: "npm:^5.0.11"
conventional-commits-parser: "npm:^3.2.2"
checksum: 2ac22d4a9a3319a8d5d58f126532578f6bda491adf37efe2401c60dc795cbb3cf5fe7174de31e30eb8d2b70ff5618969cdd7f453143298a4d5942a29b1ee5ad6
languageName: node
linkType: hard
"@commitlint/read@npm:^17.2.0":
version: 17.2.0
resolution: "@commitlint/read@npm:17.2.0"
dependencies:
"@commitlint/top-level": "npm:^17.0.0"
"@commitlint/types": "npm:^17.0.0"
fs-extra: "npm:^10.0.0"
git-raw-commits: "npm:^2.0.0"
minimist: "npm:^1.2.6"
checksum: 516d9d757da37bb640962180284c6ef79db86bec33734d6e381c71a649e6223961d7dbf98ce93867300170afa7da4e7b9925f5c061cdf2d7ea7430d21e236892
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^17.3.0":
version: 17.3.0
resolution: "@commitlint/resolve-extends@npm:17.3.0"
dependencies:
"@commitlint/config-validator": "npm:^17.1.0"
"@commitlint/types": "npm:^17.0.0"
import-fresh: "npm:^3.0.0"
lodash.mergewith: "npm:^4.6.2"
resolve-from: "npm:^5.0.0"
resolve-global: "npm:^1.0.0"
checksum: eb7e33e46c3d6fcea89713091cfb31da6566d06ecce7c3db48e1895e58a0cc95ffedb6c2562cd6677b8add12d831b4a55c6acfbcc1c2a6a2a88390aa8c82f06d
languageName: node
linkType: hard
"@commitlint/rules@npm:^17.3.0":
version: 17.3.0
resolution: "@commitlint/rules@npm:17.3.0"
dependencies:
"@commitlint/ensure": "npm:^17.3.0"
"@commitlint/message": "npm:^17.2.0"
"@commitlint/to-lines": "npm:^17.0.0"
"@commitlint/types": "npm:^17.0.0"
execa: "npm:^5.0.0"
checksum: 3dcd14fe56f85adb179b819dc85d7cf2789451c9748a0fd631e7fc694f08b0c6b4c9534f11657df5b5f653adccb0bf3cc072de441cae40886b85ef24424a0739
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^17.0.0":
version: 17.0.0
resolution: "@commitlint/to-lines@npm:17.0.0"
checksum: 73abd1520dd77257d1873c82a60563987f6eb8a7d850d5c21c453df2930eba2c2c477d60b3c63cc9a04cfa57b944a1b337f2988262439fbe1e8ffff1a90a4976
languageName: node
linkType: hard
"@commitlint/top-level@npm:^17.0.0":
version: 17.0.0
resolution: "@commitlint/top-level@npm:17.0.0"
dependencies:
find-up: "npm:^5.0.0"
checksum: 114844a8ba87b9bf5cea3f81f6ce821b3e5c3b4d284d7b03b934036999908148f473fc88cc5d29e821a5cf9a5c3a0071b59df52e801f4ee432ca103142815adb
languageName: node
linkType: hard
"@commitlint/types@npm:^17.0.0":
version: 17.0.0
resolution: "@commitlint/types@npm:17.0.0"
dependencies:
chalk: "npm:^4.1.0"
checksum: 4ffe839678f415425b5218128fd666de42d6ebc9a7437cc6aa959bfaf98ef3a975b6d8907d7f168303c84f2c1d7db418946c97e885dd4f273da0fae066be2daa
languageName: node
linkType: hard
"@cspotcode/source-map-support@npm:^0.8.0":
version: 0.8.1
resolution: "@cspotcode/source-map-support@npm:0.8.1"
dependencies:
"@jridgewell/trace-mapping": "npm:0.3.9"
checksum: 4327d8e6e4347897f5baf265c43ff094260a3ad7b53920fa07472aa18699ba7d570e5171082e88d19e4b5cce6f35cc1666b1c8ccb8b74d67e4f482395b8c511d
languageName: node
linkType: hard
"@eslint/eslintrc@npm:^1.4.0":
version: 1.4.0
resolution: "@eslint/eslintrc@npm:1.4.0"
dependencies:
ajv: "npm:^6.12.4"
debug: "npm:^4.3.2"
espree: "npm:^9.4.0"
globals: "npm:^13.19.0"
ignore: "npm:^5.2.0"
import-fresh: "npm:^3.2.1"
js-yaml: "npm:^4.1.0"
minimatch: "npm:^3.1.2"
strip-json-comments: "npm:^3.1.1"
checksum: 64daa4d53d1861d2a810766c5bd239192fb5a8655b25774fbc49ebe40fde1c6172bcc306ac13453ec3306a036694de8b2159e5562535d8f5e0f4feabade31598
languageName: node
linkType: hard
"@gar/promisify@npm:^1.1.3":
version: 1.1.3
resolution: "@gar/promisify@npm:1.1.3"
checksum: 3fadc40481a783ddb90397f5759f92650b57465f7a4a778056bd24b47060595012e9181a55ae547d57a893d37d9776abe9e368f1f6918e37225eb6a83f9a75f8
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.11.8":
version: 0.11.8
resolution: "@humanwhocodes/config-array@npm:0.11.8"
dependencies:
"@humanwhocodes/object-schema": "npm:^1.2.1"
debug: "npm:^4.1.1"
minimatch: "npm:^3.0.5"
checksum: 010892ba3c237e96562df1f21a7e04b611274f2c91b4df6c8263eb7d2ffcec3a5bfcab67b13d9c4acc8a2e3f94cb61d7ced772ecd445b226fb41b88c93e9194c
languageName: node
linkType: hard
"@humanwhocodes/module-importer@npm:^1.0.1":
version: 1.0.1
resolution: "@humanwhocodes/module-importer@npm:1.0.1"
checksum: 5127055802733906004cf372457fadd0f3d800cfdd3dd39d2291e06f5c44ccc47daa2f22b9f483409f15b0a9ff5e1646deb5570ff43e08ef021f865e42b74608
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.1":
version: 1.2.1
resolution: "@humanwhocodes/object-schema@npm:1.2.1"
checksum: c860f96faaaaecd6c5c4ee6912f7c761579031b464c3cf55832e59e18b116968d89b570ef6a9a10b1670a67e7998a530c8c549b4a41b118153340772ad10cea9
languageName: node
linkType: hard
"@isaacs/string-locale-compare@npm:^1.1.0":
version: 1.1.0
resolution: "@isaacs/string-locale-compare@npm:1.1.0"
checksum: 1850e9aace61478554239ba0b7b75f8b2047c4c565a9355cc4c59ad1a3c1e421af9b804170f10735b861f6d967d998ae59225cc91e4a0eafa2931ccc482714c6
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: "npm:^5.3.1"
find-up: "npm:^4.1.0"
get-package-type: "npm:^0.1.0"
js-yaml: "npm:^3.13.1"
resolve-from: "npm:^5.0.0"
checksum: b21115738ddb574f73960a3dee3288c84a6275c75110496c2ce0e2c2b47ac588bd959ac5940e0074f2eb7f2bec177ebf2696ca123f5846d88affbcaf10d7fa34
languageName: node
linkType: hard
"@istanbuljs/schema@npm:^0.1.2":
version: 0.1.3
resolution: "@istanbuljs/schema@npm:0.1.3"
checksum: 1f6fd298c4d287b8c1ba55ab0cec14b4006c3f7aa032fe09a82f3322d943fd8aa9aa5691ad2e1c0c8693d42546c2cfa6adb45d09e2131fb5b975f7caab6aa5d8
languageName: node
linkType: hard
"@jest/console@npm:^29.3.1":
version: 29.3.1
resolution: "@jest/console@npm:29.3.1"
dependencies:
"@jest/types": "npm:^29.3.1"
"@types/node": "npm:*"
chalk: "npm:^4.0.0"
jest-message-util: "npm:^29.3.1"
jest-util: "npm:^29.3.1"
slash: "npm:^3.0.0"
checksum: f799344be742f908acc268eef292e9f0be987b09ce66181fe8d0f9d8b2ceb79696bdc66cf710c0b0e246215334363c90a43c4984ee112c96702b9234105b14e7
languageName: node
linkType: hard
"@jest/core@npm:^29.3.1":
version: 29.3.1
resolution: "@jest/core@npm:29.3.1"
dependencies:
"@jest/console": "npm:^29.3.1"
"@jest/reporters": "npm:^29.3.1"
"@jest/test-result": "npm:^29.3.1"
"@jest/transform": "npm:^29.3.1"
"@jest/types": "npm:^29.3.1"
"@types/node": "npm:*"
ansi-escapes: "npm:^4.2.1"
chalk: "npm:^4.0.0"
ci-info: "npm:^3.2.0"
exit: "npm:^0.1.2"
graceful-fs: "npm:^4.2.9"
jest-changed-files: "npm:^29.2.0"
jest-config: "npm:^29.3.1"
jest-haste-map: "npm:^29.3.1"
jest-message-util: "npm:^29.3.1"
jest-regex-util: "npm:^29.2.0"
jest-resolve: "npm:^29.3.1"
jest-resolve-dependencies: "npm:^29.3.1"
jest-runner: "npm:^29.3.1"
jest-runtime: "npm:^29.3.1"
jest-snapshot: "npm:^29.3.1"
jest-util: "npm:^29.3.1"
jest-validate: "npm:^29.3.1"
jest-watcher: "npm:^29.3.1"
micromatch: "npm:^4.0.4"
pretty-format: "npm:^29.3.1"
slash: "npm:^3.0.0"
strip-ansi: "npm:^6.0.0"
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
checksum: 80958491c44120273e08eed60e8f77b2fdef435a97c2bd1aeea27a04039d95e45c35fc9e489a2509a24b603f5f33ea6fe4eaefe593203811d5feb718ff4fb99d
languageName: node
linkType: hard
"@jest/environment@npm:^29.3.1":
version: 29.3.1
resolution: "@jest/environment@npm:29.3.1"
dependencies:
"@jest/fake-timers": "npm:^29.3.1"
"@jest/types": "npm:^29.3.1"
"@types/node": "npm:*"
jest-mock: "npm:^29.3.1"
checksum: 4d55705e76ad0998a1ee7c487d07d7c02641553d80e8e608d5b6d5965582179a1e71804d840b08aa1422c0f4e20854822af8245bc7a9e198b23dd37a85228807
languageName: node
linkType: hard
"@jest/expect-utils@npm:^29.3.1":
version: 29.3.1
resolution: "@jest/expect-utils@npm:29.3.1"
dependencies:
jest-get-type: "npm:^29.2.0"
checksum: b616f71d97331221c0ef1f3efefb5a23428a57e9fafd58ac1fda42516cbd327410f5f18ffa9f02d3f979d73bdbd78ddadb2066890dca1f316d59a79fc45024e1
languageName: node
linkType: hard
"@jest/expect@npm:^29.3.1":
version: 29.3.1
resolution: "@jest/expect@npm:29.3.1"
dependencies:
expect: "npm:^29.3.1"
jest-snapshot: "npm:^29.3.1"
checksum: ecc46e47c9818a56f948a7b0d96f9a739798cf0baaf1c8c920df922d9670974563e99cdb53ed50629e32e4db82a05d1109c76fc381fcf1061e51a0745d8813d3
languageName: node
linkType: hard
"@jest/fake-timers@npm:^29.3.1":
version: 29.3.1
resolution: "@jest/fake-timers@npm:29.3.1"
dependencies:
"@jest/types": "npm:^29.3.1"
"@sinonjs/fake-timers": "npm:^9.1.2"
"@types/node": "npm:*"
jest-message-util: "npm:^29.3.1"
jest-mock: "npm:^29.3.1"
jest-util: "npm:^29.3.1"
checksum: 951e8170ed56dc521bd6a2d6fece1dc91f9dc955fedfa71cbe8c8d334b6ebc5121e21ed86f065d0606e5b45de73aa651ae993a763281e74dc1d3a4d7174db4de
languageName: node
linkType: hard
"@jest/globals@npm:^29.3.1":
version: 29.3.1
resolution: "@jest/globals@npm:29.3.1"
dependencies:
"@jest/environment": "npm:^29.3.1"
"@jest/expect": "npm:^29.3.1"
"@jest/types": "npm:^29.3.1"
jest-mock: "npm:^29.3.1"
checksum: 3484a6c6ecf25dfc40c9a401300decfea5185a5e4867f8a6d43adbcbbcd6af4e5e6637cbc647a179a37b269d2c646211418b01cbd331e0970c3d59004d47a781
languageName: node
linkType: hard
"@jest/reporters@npm:^29.3.1":
version: 29.3.1
resolution: "@jest/reporters@npm:29.3.1"
dependencies:
"@bcoe/v8-coverage": "npm:^0.2.3"
"@jest/console": "npm:^29.3.1"
"@jest/test-result": "npm:^29.3.1"
"@jest/transform": "npm:^29.3.1"
"@jest/types": "npm:^29.3.1"
"@jridgewell/trace-mapping": "npm:^0.3.15"
"@types/node": "npm:*"
chalk: "npm:^4.0.0"
collect-v8-coverage: "npm:^1.0.0"
exit: "npm:^0.1.2"
glob: "npm:^7.1.3"
graceful-fs: "npm:^4.2.9"
istanbul-lib-coverage: "npm:^3.0.0"
istanbul-lib-instrument: "npm:^5.1.0"
istanbul-lib-report: "npm:^3.0.0"
istanbul-lib-source-maps: "npm:^4.0.0"
istanbul-reports: "npm:^3.1.3"
jest-message-util: "npm:^29.3.1"
jest-util: "npm:^29.3.1"
jest-worker: "npm:^29.3.1"
slash: "npm:^3.0.0"
string-length: "npm:^4.0.1"
strip-ansi: "npm:^6.0.0"
v8-to-istanbul: "npm:^9.0.1"
peerDependencies:
node-notifier: ^8.0.1 || ^9.0.0 || ^10.0.0
peerDependenciesMeta:
node-notifier:
optional: true
checksum: 19f7fa5265aeb8a9be9890769d76527dbc5bd02e56bde5e5c39690605c3fa8978ac8c52a15b3321f0e65e2fb2f4f220b894af16e9180699bfbbd3a42317a9abd
languageName: node
linkType: hard
"@jest/schemas@npm:^29.0.0":
version: 29.0.0
resolution: "@jest/schemas@npm:29.0.0"
dependencies:
"@sinclair/typebox": "npm:^0.24.1"
checksum: 174f589fa0326e4f393cf56ac45beb8412e2ccd7c6040b45062035d80c95f5ae71512dab5757906b923ebfcd9c2b57ea40986377e0c06ad10ab2e24b561ac28d
languageName: node
linkType: hard
"@jest/source-map@npm:^29.2.0":
version: 29.2.0
resolution: "@jest/source-map@npm:29.2.0"
dependencies:
"@jridgewell/trace-mapping": "npm:^0.3.15"
callsites: "npm:^3.0.0"
graceful-fs: "npm:^4.2.9"
checksum: 390c856de46ea6bd42a1ddbe5201520d403050babce9cc929cfc6beb30d645aa66f1df81cb17e42b90cb3774edd34ab51f607267dfaa2b3e0dc0376716d44aac
languageName: node
linkType: hard
"@jest/test-result@npm:^29.3.1":
version: 29.3.1
resolution: "@jest/test-result@npm:29.3.1"
dependencies:
"@jest/console": "npm:^29.3.1"
"@jest/types": "npm:^29.3.1"
"@types/istanbul-lib-coverage": "npm:^2.0.0"
collect-v8-coverage: "npm:^1.0.0"
checksum: 986b7a0afeb27c81a7351994791f1bc06036033db8023d2f1b9271221c87a4284b00ab8be80ef96993ff7e4f39726a2e350af1bf805c480e730de9b5eaabe3a3
languageName: node
linkType: hard
"@jest/test-sequencer@npm:^29.3.1":
version: 29.3.1
resolution: "@jest/test-sequencer@npm:29.3.1"
dependencies:
"@jest/test-result": "npm:^29.3.1"
graceful-fs: "npm:^4.2.9"
jest-haste-map: "npm:^29.3.1"
slash: "npm:^3.0.0"
checksum: a71e86ab18b4992a5a6abe527d6fa420b21907eec5812e770e3ff1089a89f64f5add3c23c2a7af275221c1270903fd1b9f9afde75ccf58b34792f88ff58d6b81
languageName: node
linkType: hard
"@jest/transform@npm:^29.3.1":
version: 29.3.1
resolution: "@jest/transform@npm:29.3.1"
dependencies:
"@babel/core": "npm:^7.11.6"
"@jest/types": "npm:^29.3.1"
"@jridgewell/trace-mapping": "npm:^0.3.15"
babel-plugin-istanbul: "npm:^6.1.1"
chalk: "npm:^4.0.0"
convert-source-map: "npm:^2.0.0"
fast-json-stable-stringify: "npm:^2.1.0"
graceful-fs: "npm:^4.2.9"
jest-haste-map: "npm:^29.3.1"
jest-regex-util: "npm:^29.2.0"
jest-util: "npm:^29.3.1"
micromatch: "npm:^4.0.4"
pirates: "npm:^4.0.4"
slash: "npm:^3.0.0"
write-file-atomic: "npm:^4.0.1"