generated from Byndyusoft/node-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
yarn.lock
10573 lines (9520 loc) · 369 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.12
resolution: "@babel/core@npm:7.20.12"
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.11"
"@babel/helpers": "npm:^7.20.7"
"@babel/parser": "npm:^7.20.7"
"@babel/template": "npm:^7.20.7"
"@babel/traverse": "npm:^7.20.12"
"@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.2"
semver: "npm:^6.3.0"
checksum: 7ab10d7f3045e282786e7ed20b8da220b315b23131713f7fb4f75210110146bae2a5b3a0db36baf375356c1226d8c659d032a031ef129eea85c1dd3884c311c0
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.11":
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.12, @babel/traverse@npm:^7.20.7, @babel/traverse@npm:^7.7.2":
version: 7.20.12
resolution: "@babel/traverse@npm:7.20.12"
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: 2af2c8ea671ecc23d42e4c7d04d412ffa65fec5a54cebe51b52b731fb20a1cbe0808ffb9b979e8aa46b9071683d59423b7ae884ce1ae303eed4791259b2937e5
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/class-validator-extended@npm:1.0.1":
version: 1.0.1
resolution: "@byndyusoft/class-validator-extended@npm:1.0.1"
dependencies:
lodash: "npm:^4.17.21"
tslib: "npm:^2.3.1"
yn: "npm:^4.0.0"
peerDependencies:
class-transformer: ^0.5.1
class-validator: ^0.13.1
reflect-metadata: ^0.1.13
checksum: b0ded97ba7e5ad20f32c6158ffc1e25623e03809cba863138ce5d970f5697431af7abd6e71fe8f3c154cf37aaee636a5e7f43e1ad6318e75e2791e826206a7fa
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/nest-dynamic-module@npm:^1.0.0":
version: 1.0.0
resolution: "@byndyusoft/nest-dynamic-module@npm:1.0.0"
dependencies:
tslib: "npm:^2.3.1"
checksum: d24c1b1208575eb50402215ce8d128834871d4766a424fb12d0623f04b982d155070cfee0108cbe1b1495b2498e1f080801529fca76a26e2e0ab02e297fe390c
languageName: node
linkType: hard
"@byndyusoft/nest-kafka@workspace:.":
version: 0.0.0-use.local
resolution: "@byndyusoft/nest-kafka@workspace:."
dependencies:
"@byndyusoft/class-validator-extended": "npm:1.0.1"
"@byndyusoft/eslint-config": "npm:2.2.1"
"@byndyusoft/nest-dynamic-module": "npm:^1.0.0"
"@byndyusoft/nest-opentracing": "npm:2.3.2"
"@byndyusoft/nest-pino": "npm:3.1.2-1"
"@byndyusoft/tsconfig": "npm:1.2.0"
"@commitlint/cli": "npm:17.4.1"
"@commitlint/config-conventional": "npm:17.4.0"
"@kafkajs/confluent-schema-registry": "npm:3.3.0"
"@nestjs/common": "npm:9.2.1"
"@nestjs/microservices": "npm:9.2.1"
"@types/error-cause": "npm:^1.0.1"
"@types/jest": "npm:29.2.5"
"@types/lodash": "npm:4.14.191"
"@types/node": "npm:14.18.36"
"@types/retry": "npm:^0.12.2"
axios: "npm:^0.27.2"
class-transformer: "npm:0.5.1"
class-validator: "npm:0.14.0"
error-cause: "npm:^1.0.5"
eslint: "npm:8.31.0"
husky: "npm:8.0.3"
jest: "npm:29.3.1"
jest-extended: "npm:3.2.2"
kafkajs: "npm:2.2.3"
lint-staged: "npm:13.1.0"
lodash: "npm:^4.17.21"
markdownlint-cli: "npm:0.33.0"
pino: "npm:8.8.0"
pinst: "npm:3.0.0"
prettier: "npm:2.8.2"
prettier-plugin-packagejson: "npm:2.3.0"
retry: "npm:^0.13.1"
rxjs: "npm:7.8.0"
semantic-release: "npm:20.0.2"
shx: "npm:0.3.4"
ts-jest: "npm:29.0.3"
ts-patch: "npm:2.1.0"
tslib: "npm:^2.4.1"
typescript: "npm:4.9.4"
typescript-transform-paths: "npm:3.4.6"
peerDependencies:
"@byndyusoft/class-validator-extended": ^1.0.1
"@byndyusoft/nest-opentracing": ^2.3.2
"@byndyusoft/nest-pino": ^3.1.2-1
"@kafkajs/confluent-schema-registry": ^3.3.0
"@nestjs/common": ^8.0.0 || ^9.0.0
"@nestjs/microservices": ^8.0.0 || ^9.0.0
class-transformer: ^0.5.1
class-validator: ^0.14.0
kafkajs: ^2.2.3
rxjs: ^7.8.0
languageName: unknown
linkType: soft
"@byndyusoft/nest-opentracing@npm:2.3.2":
version: 2.3.2
resolution: "@byndyusoft/nest-opentracing@npm:2.3.2"
dependencies:
"@byndyusoft/nest-dynamic-module": "npm:^1.0.0"
jaeger-client: "npm:~3.18.1"
opentracing: "npm:~0.14.4"
prom-client: "npm:~11.3.0"
url-join: "npm:^4.0.1"
peerDependencies:
"@nestjs/axios": ^0.0.1
"@nestjs/common": ^8.0.2
axios: ^0.21.1
express: ^4.17.1
checksum: 4a227e0d794882ee1ec97d38a788e8a497c06054c6fad09049f5661ee7a31c460c0f09b2fd487651b1097a5db88c3fb374cd8cdc56f65e998778ff215afa152e
languageName: node
linkType: hard
"@byndyusoft/nest-pino@npm:3.1.2-1":
version: 3.1.2-1
resolution: "@byndyusoft/nest-pino@npm:3.1.2-1"
peerDependencies:
"@nestjs/common": ^8.0.0 || ^9.0.0
pino-http: ^6.4.0 || ^7.0.0 || ^8.0.0
checksum: d5d82d3cbba0a617c21f88670aaf6eb0a399793b19ca73e8beb36f4f97b766a2a28fafb67c89e0343b27bc99e92333bf2762303a330403587b82ccac2aed7d19
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
"@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.4.1":
version: 17.4.1
resolution: "@commitlint/cli@npm:17.4.1"
dependencies:
"@commitlint/format": "npm:^17.4.0"
"@commitlint/lint": "npm:^17.4.0"
"@commitlint/load": "npm:^17.4.1"
"@commitlint/read": "npm:^17.4.0"
"@commitlint/types": "npm:^17.4.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: ee01cbd0bb024a0d33ef290004e3186b65e5d84c03a9a2b917ae91e415027491423dc20b6697b66dce25fc262e244ddcd516434b5253557a23c0a61fb4153138
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:17.4.0":
version: 17.4.0
resolution: "@commitlint/config-conventional@npm:17.4.0"
dependencies:
conventional-changelog-conventionalcommits: "npm:^5.0.0"
checksum: 65aca9c2025755b2dc6c8bbee4e487198dcd89eaf46480426b64082045fa97fe739bf56632f0eea5d92fa0eb650e08934848b8d931791a33fb9675a68302140d
languageName: node
linkType: hard
"@commitlint/config-validator@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/config-validator@npm:17.4.0"
dependencies:
"@commitlint/types": "npm:^17.4.0"
ajv: "npm:^8.11.0"
checksum: 355746588b516035c012f62c09b85e8333d1dee5588cc91541f2d04cf1b2f05480c0ef00faeb23de0c73bf502379a81b6839e8fc1b9a282911732d04b03ef314
languageName: node
linkType: hard
"@commitlint/ensure@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/ensure@npm:17.4.0"
dependencies:
"@commitlint/types": "npm:^17.4.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: 707e9dcf12caeb917663d94bfcea5b88aada66a2f359db189e121841f76e36517fab2c7bdaf12327433506175613262c61b2832f7239045f42dd3fe964af0e87
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/execute-rule@npm:17.4.0"
checksum: e68a0119c643421713078ed46eaa32e8ca0b4ccb112bd937f43405e060f2b7321cc3d746558d3dbf33caeaa9b4315a35fd3edb9c626cd5d35c970ee3d25b08fb
languageName: node
linkType: hard
"@commitlint/format@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/format@npm:17.4.0"
dependencies:
"@commitlint/types": "npm:^17.4.0"
chalk: "npm:^4.1.0"
checksum: b77c69670706a97634e8ff7cdcf9c8826ba67db79805a43a1f5c0a246483f0c35e948a094de02d72035270e137684ac306912232bb7c30d26f611447ad866535
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/is-ignored@npm:17.4.0"
dependencies:
"@commitlint/types": "npm:^17.4.0"
semver: "npm:7.3.8"
checksum: 5068fe39c7058507d994fa3efaa08670d62b21e2161c4527667036c935718afe5ce98916584e164b11b38ec0efb0b702c25ecf3361e1a1de432b1b990c31d30a
languageName: node
linkType: hard
"@commitlint/lint@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/lint@npm:17.4.0"
dependencies:
"@commitlint/is-ignored": "npm:^17.4.0"
"@commitlint/parse": "npm:^17.4.0"
"@commitlint/rules": "npm:^17.4.0"
"@commitlint/types": "npm:^17.4.0"
checksum: 9055f6a64eafaef8d35856555ef980ac1e5d73121c91b75b6300933f75a72754603d734008bff102334ab38068d0b34232fefb9977120122bb717b6fc80130c3
languageName: node
linkType: hard
"@commitlint/load@npm:^17.4.1":
version: 17.4.1
resolution: "@commitlint/load@npm:17.4.1"
dependencies:
"@commitlint/config-validator": "npm:^17.4.0"
"@commitlint/execute-rule": "npm:^17.4.0"
"@commitlint/resolve-extends": "npm:^17.4.0"
"@commitlint/types": "npm:^17.4.0"
"@types/node": "npm:*"
chalk: "npm:^4.1.0"
cosmiconfig: "npm:^8.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: fda67c0b9b6f4733032a5860f4b78a396dcc9d3eb4aaf5c70f6a2380cf943e1d5084aad440c5c40ed5d95c082227e9788c132228397cadcd95fb2594708cbb7a
languageName: node
linkType: hard
"@commitlint/message@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/message@npm:17.4.0"
checksum: 5ce44cd14d6723dbaf6683e4223f6c8cc48e33897baccd27923ce50b5cfd1f780d70fa79f11c581c394f75c24d9037339dadb932edd771dcf73e5a6f4683e876
languageName: node
linkType: hard
"@commitlint/parse@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/parse@npm:17.4.0"
dependencies:
"@commitlint/types": "npm:^17.4.0"
conventional-changelog-angular: "npm:^5.0.11"
conventional-commits-parser: "npm:^3.2.2"
checksum: 2e755745a9b900833e0fbdcce7b187743ebd02d6450a8b4d33f6634d3d0c0ac80f613815135c20d26a76ca3c385b2d3ff633a644747174921c9362fc53fdd4cc
languageName: node
linkType: hard
"@commitlint/read@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/read@npm:17.4.0"
dependencies:
"@commitlint/top-level": "npm:^17.4.0"
"@commitlint/types": "npm:^17.4.0"
fs-extra: "npm:^11.0.0"
git-raw-commits: "npm:^2.0.0"
minimist: "npm:^1.2.6"
checksum: d15342dd7602d51dcaa99dd2d9c50ba350579f549023eef12e237a530d02b390263ef785ebbbfbc3a275bc3e825d1cb823e53699a20ea79ecd4686d9dfdcbc8a
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/resolve-extends@npm:17.4.0"
dependencies:
"@commitlint/config-validator": "npm:^17.4.0"
"@commitlint/types": "npm:^17.4.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: 7a6a45a8f0f30670f90d157c541e23781437a98bdcc3f5eae437000270111bf8f2ac38d229631bc0c5ee1fe6c793f2f371faf06a0e81b3762730b291057fe844
languageName: node
linkType: hard
"@commitlint/rules@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/rules@npm:17.4.0"
dependencies:
"@commitlint/ensure": "npm:^17.4.0"
"@commitlint/message": "npm:^17.4.0"
"@commitlint/to-lines": "npm:^17.4.0"
"@commitlint/types": "npm:^17.4.0"
execa: "npm:^5.0.0"
checksum: 0ace0cb4a193ff6c89dd62e6262e3bcda93ce48cc18c782504490550c52b29a5f53da7eb7943b44c0816f9c2ea547c1bbabe1df59e98e29f021cafda03b72828
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/to-lines@npm:17.4.0"
checksum: bbff3c9d34e6f2c5c5cf39cf71347d41603f3709ff6665c56976d6a81a0930e3227596036f546254ef6aed2dba4f044d96da3aaf24765f0848b63b3ba714bb27
languageName: node
linkType: hard
"@commitlint/top-level@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/top-level@npm:17.4.0"
dependencies:
find-up: "npm:^5.0.0"
checksum: e80f9565bc8c8739a165fcf3a6802fdc84b766b18861c98e9c4feed59f3e301dacb6997282962473edb77828a06106753d178655d2758171491042bc7f7b5268
languageName: node
linkType: hard
"@commitlint/types@npm:^17.4.0":
version: 17.4.0
resolution: "@commitlint/types@npm:17.4.0"
dependencies:
chalk: "npm:^4.1.0"
checksum: e9b57f73e13f8506fb5f81c3a7c374e8f5f12c69e2d67b560334e57994220844f85ccc75044247653b21faef0b258f1661ed48bcbe0c7de92cfc26e312e2ded8
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.1":
version: 1.4.1
resolution: "@eslint/eslintrc@npm:1.4.1"
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: 4e469ed508c3154078503b1f22b9d7f2498e76e770ff3f8c61c9961a16760c817e977f2f00b02201d1e91d6a4ebc766c1c67aae9189b00d5c1fe2e7205b6ad72
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"