-
Notifications
You must be signed in to change notification settings - Fork 18
/
yarn.lock
7588 lines (6805 loc) · 255 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: 8
"@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: 3963eff3ebfb0e091c7e6f99596ef4b258683e4ba8a134e4e95f77afe85be5c931e184fff6435fb4885d12eba04a5e25532f7fbc292ca13b48e7da943474e2f3
languageName: node
linkType: hard
"@babel/code-frame@npm:^7.0.0, @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: 0adbe4f8d91586f764f524e57631f582ab988b2ef504391a5d89db29bfaaf7c67c237798ed4a249b6a2d7135852cf94d3d07ce6b9739dd1df1f271d5ed069565
languageName: node
linkType: hard
"@babel/compat-data@npm:^7.15.0":
version: 7.15.0
resolution: "@babel/compat-data@npm:7.15.0"
checksum: 65088d87b14966dcdba397c799f312beb1e7a4dac178e7daa922a17ee9b65d8cfd9f35ff8352ccb6e20bb9a169df1171263ef5fd5967aa25d544ea3f62681993
languageName: node
linkType: hard
"@babel/core@npm:7.15.5, @babel/core@npm:^7.1.0, @babel/core@npm:^7.7.2, @babel/core@npm:^7.7.5":
version: 7.15.5
resolution: "@babel/core@npm:7.15.5"
dependencies:
"@babel/code-frame": ^7.14.5
"@babel/generator": ^7.15.4
"@babel/helper-compilation-targets": ^7.15.4
"@babel/helper-module-transforms": ^7.15.4
"@babel/helpers": ^7.15.4
"@babel/parser": ^7.15.5
"@babel/template": ^7.15.4
"@babel/traverse": ^7.15.4
"@babel/types": ^7.15.4
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: 8121bf74040d98562b773c1e92a174cd53c99a5158ae5a9ef25645ed35d6f821c64155e394cdb04e7dc77a0871ba42a638f6703b2c44a75bc04564b21cad9e1b
languageName: node
linkType: hard
"@babel/generator@npm:^7.15.4, @babel/generator@npm:^7.7.2":
version: 7.15.4
resolution: "@babel/generator@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
jsesc: ^2.5.1
source-map: ^0.5.0
checksum: fec8e8fa46723d7edf4087dc07b1f65a64488cba9662458431dd00d2a24f7c41b21e3160cfa1ba3df9373b2bb5e84189a95206c9ce6f14845a3929fc1ab58f57
languageName: node
linkType: hard
"@babel/helper-compilation-targets@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-compilation-targets@npm:7.15.4"
dependencies:
"@babel/compat-data": ^7.15.0
"@babel/helper-validator-option": ^7.14.5
browserslist: ^4.16.6
semver: ^6.3.0
peerDependencies:
"@babel/core": ^7.0.0
checksum: a2b9767d5658da90bd79170b4b0d2987930fb6708d48428619f9f4664c47e3f9409801b76c7603446404b453c67e54682cc86840cb1c29aa06c956533ebaf5ba
languageName: node
linkType: hard
"@babel/helper-function-name@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-function-name@npm:7.15.4"
dependencies:
"@babel/helper-get-function-arity": ^7.15.4
"@babel/template": ^7.15.4
"@babel/types": ^7.15.4
checksum: 0500e8e40753fdc25252b30609b12df8ebb997a4e5b4c2145774855c026a4338c0510fc7b819035d5f9d76cf3bd63417c0b7b58f0836a10996300f2f925c4e0f
languageName: node
linkType: hard
"@babel/helper-get-function-arity@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-get-function-arity@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: 1a3dba8700ec69b5b120401769897a1a0ca2edcf6b546659d49946dcc8b0755c4c58dd8f15739f5cf851d4ca1db76f56759897c6f5b9f76f2fef989dc4f8fd54
languageName: node
linkType: hard
"@babel/helper-hoist-variables@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-hoist-variables@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: 1a9ae0a27112b5f4e4ab91da2a1b40a8f91d8ce195e965d900ec3f13b583a1ab36834fb3edc2812523fa1d586ce21c3e6d8ce437d168e23a5d8e7e2e46b50f6f
languageName: node
linkType: hard
"@babel/helper-member-expression-to-functions@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-member-expression-to-functions@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: 30cf27e2afbaf1d58d189c5f36951a6af7d2bfccdfdb7d57e91749620d9c3c37d78324a1725079d3ab4a0e5c4e5f3d5f19a275d5dd269baa2aa8852835b05d6d
languageName: node
linkType: hard
"@babel/helper-module-imports@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-module-imports@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: 519681cb9c27fcacd85ef13534020db3a2bac1d53a4d988fd9f3cf1ec223854311d4193c961cc2031c4d1df3b1a35a849b38237302752ae3d29eb00e5b9a904a
languageName: node
linkType: hard
"@babel/helper-module-transforms@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-module-transforms@npm:7.15.4"
dependencies:
"@babel/helper-module-imports": ^7.15.4
"@babel/helper-replace-supers": ^7.15.4
"@babel/helper-simple-access": ^7.15.4
"@babel/helper-split-export-declaration": ^7.15.4
"@babel/helper-validator-identifier": ^7.14.9
"@babel/template": ^7.15.4
"@babel/traverse": ^7.15.4
"@babel/types": ^7.15.4
checksum: 5bb31696c96247e17c19fe87c708bf95f592cc26fcc1c8f32f5037d8f87a8933b327b31f0ae92529bab91137d8bb5bf8be4106829f0eaaea4e41d7fcc7ce7938
languageName: node
linkType: hard
"@babel/helper-optimise-call-expression@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-optimise-call-expression@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: 7c929d1a3dbed7ee776dd8a4502b92433bb14ce6217372581db117de294edcf7b8678b1f703b8309c769bb46f2e4f005cdb3958dec508a486b2b03a9a919b542
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.8.0":
version: 7.14.5
resolution: "@babel/helper-plugin-utils@npm:7.14.5"
checksum: fe20e90a24d02770a60ebe80ab9f0dfd7258503cea8006c71709ac9af1aa3e47b0de569499673f11ea6c99597f8c0e4880ae1d505986e61101b69716820972fe
languageName: node
linkType: hard
"@babel/helper-replace-supers@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-replace-supers@npm:7.15.4"
dependencies:
"@babel/helper-member-expression-to-functions": ^7.15.4
"@babel/helper-optimise-call-expression": ^7.15.4
"@babel/traverse": ^7.15.4
"@babel/types": ^7.15.4
checksum: b08a23914a5f7f964aefa4518255006d3a58e4c0cf972527c1fe3c79ebff4d6d50c9f1d370b8d62e0085766a654910e39ba196fab522d794142d2219eea8430d
languageName: node
linkType: hard
"@babel/helper-simple-access@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-simple-access@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: 8c3462264d6755c1e190a709fa90667c1691cb61cdca2d3f9119dd93adfd9fbcb292bcc48dbd7e065b8c27d9371f2793799a92aec124a3260288ed112e00c839
languageName: node
linkType: hard
"@babel/helper-split-export-declaration@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helper-split-export-declaration@npm:7.15.4"
dependencies:
"@babel/types": ^7.15.4
checksum: 6baf45996e1323fdfc30666e9c0b3219d74c54dc71e9130acfa4d9d4c53faa95618ac383a1c82a156555908323384a416b4a29e88b337de98fdb476212134f99
languageName: node
linkType: hard
"@babel/helper-validator-identifier@npm:^7.14.5, @babel/helper-validator-identifier@npm:^7.14.9":
version: 7.14.9
resolution: "@babel/helper-validator-identifier@npm:7.14.9"
checksum: 58552531a7674363e74672434c312ddaf1545b8a43308e1a7f38db58bf79c796c095a6dab6a6105eb0d783b97441f6cbb525bb887f29a35f232fcdbd8cb240dc
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: 1b25c34a5cb3d8602280f33b9ab687d2a77895e3616458d0f70ddc450ada9b05e342c44f322bc741d51b252e84cff6ec44ae93d622a3354828579a643556b523
languageName: node
linkType: hard
"@babel/helpers@npm:^7.15.4":
version: 7.15.4
resolution: "@babel/helpers@npm:7.15.4"
dependencies:
"@babel/template": ^7.15.4
"@babel/traverse": ^7.15.4
"@babel/types": ^7.15.4
checksum: e60738110086c183d0ce369ad56949d5dceeb7d73d8fdb892f36d5b8525192e6b97f4563eb77334f47ac27ac43a21f3c4cd53bff342c2a0d5f4008a2b0169c89
languageName: node
linkType: hard
"@babel/highlight@npm:^7.10.4, @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: 4e4b22fb886c939551d73307de16232c186fdb4d8ec8f514541b058feaecdba5234788a0740ca5bcd28777f4108596c39ac4b7463684c63b3812f6071e3fb88f
languageName: node
linkType: hard
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.15.4, @babel/parser@npm:^7.15.5, @babel/parser@npm:^7.7.2, @babel/parser@npm:^7.9.4":
version: 7.15.5
resolution: "@babel/parser@npm:7.15.5"
bin:
parser: ./bin/babel-parser.js
checksum: abc39a66b9bf6c861e25b07ad99830c4da6ce345135ebe08ee81a0e8d2f62cddc5f1fd825885fcd609a41b59531c856083d880f7836bd89c148136f834dfc3fe
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: 7ed1c1d9b9e5b64ef028ea5e755c0be2d4e5e4e3d6cf7df757b9a8c4cfa4193d268176d0f1f7fbecdda6fe722885c7fda681f480f3741d8a2d26854736f05367
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: 3a10849d83e47aec50f367a9e56a6b22d662ddce643334b087f9828f4c3dd73bdc5909aaeabe123fed78515767f9ca43498a0e621c438d1cd2802d7fae3c9648
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": ^7.12.13
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 24f34b196d6342f28d4bad303612d7ff566ab0a013ce89e775d98d6f832969462e7235f3e7eaf17678a533d4be0ba45d3ae34ab4e5a9dcbda5d98d49e5efa2fc
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: 166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b
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: bf5aea1f3188c9a507e16efe030efb996853ca3cadd6512c51db7233cc58f3ac89ff8c6bdfb01d30843b161cfe7d321e1bf28da82f7ab8d7e6bc5464666f354a
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: aff33577037e34e515911255cdbb1fd39efee33658aa00b8a5fd3a4b903585112d037cce1cc9e4632f0487dc554486106b79ccd5ea63a2e00df4363f6d4ff886
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: 87aca4918916020d1fedba54c0e232de408df2644a425d153be368313fdde40d96088feed6c4e5ab72aac89be5d07fef2ddf329a15109c5eb65df006bf2580d1
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: 01ec5547bd0497f76cc903ff4d6b02abc8c05f301c88d2622b6d834e33a5651aa7c7a3d80d8d57656a4588f7276eba357f6b7e006482f5b564b7a6488de493a1
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: fddcf581a57f77e80eb6b981b10658421bc321ba5f0a5b754118c6a92a5448f12a0c336f77b8abf734841e102e5126d69110a306eadb03ca3e1547cab31f5cbf
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: 910d90e72bc90ea1ce698e89c1027fed8845212d5ab588e35ef91f13b93143845f94e2539d831dc8d8ededc14ec02f04f7bd6a8179edd43a326c784e7ed7f0b9
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: eef94d53a1453361553c1f98b68d17782861a04a392840341bc91780838dd4e695209c783631cf0de14c635758beafb6a3a65399846ffa4386bff90639347f30
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": ^7.14.5
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: bbd1a56b095be7820029b209677b194db9b1d26691fe999856462e66b25b281f031f3dfd91b1619e9dcf95bebe336211833b854d0fb8780d618e35667c2d0d7e
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: 5447d13b31aeeeaa5c2b945e60a598642dedca480f11d3232b0927aeb6a6bb8201a0025f509bc23851da4bf126f69b0522790edbd58f4560f0a4984cabd0d126
languageName: node
linkType: hard
"@babel/runtime@npm:^7.15.4":
version: 7.18.0
resolution: "@babel/runtime@npm:7.18.0"
dependencies:
regenerator-runtime: ^0.13.4
checksum: 9d0caa5fe690623fb6c5df6fb3b3581d227b55ef9f7c35eba0da83d10aa756669a81fe521ac4dbc007e5790716bac40ebe71ff098e2d1a9599dd696a282a3e95
languageName: node
linkType: hard
"@babel/template@npm:^7.15.4, @babel/template@npm:^7.3.3":
version: 7.15.4
resolution: "@babel/template@npm:7.15.4"
dependencies:
"@babel/code-frame": ^7.14.5
"@babel/parser": ^7.15.4
"@babel/types": ^7.15.4
checksum: 58ca51fdd40bbaaddf2e46513dd05d5823f214cb2877b3f353abf5541a033a1b6570c29c2c80e60f2b55966326e40bebbf53666b261646ccf410b3d984af42ce
languageName: node
linkType: hard
"@babel/traverse@npm:^7.1.0, @babel/traverse@npm:^7.15.4, @babel/traverse@npm:^7.7.2":
version: 7.15.4
resolution: "@babel/traverse@npm:7.15.4"
dependencies:
"@babel/code-frame": ^7.14.5
"@babel/generator": ^7.15.4
"@babel/helper-function-name": ^7.15.4
"@babel/helper-hoist-variables": ^7.15.4
"@babel/helper-split-export-declaration": ^7.15.4
"@babel/parser": ^7.15.4
"@babel/types": ^7.15.4
debug: ^4.1.0
globals: ^11.1.0
checksum: 831506a92c8ed76dc60504de37663bf5a553d7b1b009a94defc082cddb6c380c5487a1aa9438bcd7b9891a2a72758a63e4f878154aa70699d09b388b1445d774
languageName: node
linkType: hard
"@babel/types@npm:^7.0.0, @babel/types@npm:^7.15.4, @babel/types@npm:^7.3.0, @babel/types@npm:^7.3.3":
version: 7.15.4
resolution: "@babel/types@npm:7.15.4"
dependencies:
"@babel/helper-validator-identifier": ^7.14.9
to-fast-properties: ^2.0.0
checksum: dac7d733edf2102e97f197929693fae6025161f3edda5a0f621f69e9d0741b8596c6f2152492bef869b55d0205e214867e8730f389283e85432b8f093e295c4b
languageName: node
linkType: hard
"@babel/types@npm:^7.8.3":
version: 7.15.6
resolution: "@babel/types@npm:7.15.6"
dependencies:
"@babel/helper-validator-identifier": ^7.14.9
to-fast-properties: ^2.0.0
checksum: 37f497dde10d238b5eb184efab83b415a86611e3d73dc0434de0cfb851b20ee606a3b7e1525e5b2d522fac1248d0345fea0468006f246262511b80cd3ed2419f
languageName: node
linkType: hard
"@bcoe/v8-coverage@npm:^0.2.3":
version: 0.2.3
resolution: "@bcoe/v8-coverage@npm:0.2.3"
checksum: 850f9305536d0f2bd13e9e0881cb5f02e4f93fad1189f7b2d4bebf694e3206924eadee1068130d43c11b750efcc9405f88a8e42ef098b6d75239c0f047de1a27
languageName: node
linkType: hard
"@colors/colors@npm:1.5.0":
version: 1.5.0
resolution: "@colors/colors@npm:1.5.0"
checksum: d64d5260bed1d5012ae3fc617d38d1afc0329fec05342f4e6b838f46998855ba56e0a73833f4a80fa8378c84810da254f76a8a19c39d038260dc06dc4e007425
languageName: node
linkType: hard
"@commitlint/cli@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/cli@npm:12.1.4"
dependencies:
"@commitlint/format": ^12.1.4
"@commitlint/lint": ^12.1.4
"@commitlint/load": ^12.1.4
"@commitlint/read": ^12.1.4
"@commitlint/types": ^12.1.4
lodash: ^4.17.19
resolve-from: 5.0.0
resolve-global: 1.0.0
yargs: ^16.2.0
bin:
commitlint: cli.js
checksum: f5e0827abd19ce1cfece73717fd60d5fef0377f582a6db218f6bcc2e13e84c65595ef50a7870651cc7f00f29205a046f764a54d0b84ff0efdbb6c44414256ea2
languageName: node
linkType: hard
"@commitlint/config-conventional@npm:12.x":
version: 12.1.4
resolution: "@commitlint/config-conventional@npm:12.1.4"
dependencies:
conventional-changelog-conventionalcommits: ^4.3.1
checksum: e8850cec1d4f5db24e40c6fab958f5770e1c51fe7f3875624c7aca492d0ae2390e3afdcfe0758fa2fe5d4bdbbea73f08576da1632bd3fd92b103d63ba6ee4620
languageName: node
linkType: hard
"@commitlint/ensure@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/ensure@npm:12.1.4"
dependencies:
"@commitlint/types": ^12.1.4
lodash: ^4.17.19
checksum: c9959665a35d672aa2b319cdb3e3c7de344ec45b26403c6d28c1d54e0081aab855bca4e00ffd6538c98fea735f2ceeff7703e11d180a5098675080f8c7fe0623
languageName: node
linkType: hard
"@commitlint/execute-rule@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/execute-rule@npm:12.1.4"
checksum: c65bca03817cee6631f09245e94c4aa76cee9e6a17598ea95b86c79ee7a737354de9aff8377e5268e81fb896cad3d7f35d05590807179a9ce89a76b7974f2b7e
languageName: node
linkType: hard
"@commitlint/format@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/format@npm:12.1.4"
dependencies:
"@commitlint/types": ^12.1.4
chalk: ^4.0.0
checksum: ce96231e53d74d227706a51bb5037defa0b3e44f034629cc11f6e455665addd931b99cf4ad860c8575349de42bdd04ecbd216bad793a4283b40d534f17200d30
languageName: node
linkType: hard
"@commitlint/is-ignored@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/is-ignored@npm:12.1.4"
dependencies:
"@commitlint/types": ^12.1.4
semver: 7.3.5
checksum: 9e04b389e60881c3695f674ff75ebff78c850be8fb1158bb4decc8e8432857d5bed9c6fb6a6a4352b5254b2e745c66126e9ae932b713ee72a3193f922e61ca1a
languageName: node
linkType: hard
"@commitlint/lint@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/lint@npm:12.1.4"
dependencies:
"@commitlint/is-ignored": ^12.1.4
"@commitlint/parse": ^12.1.4
"@commitlint/rules": ^12.1.4
"@commitlint/types": ^12.1.4
checksum: bfa5f900ee60f430014ab2bdd21a0c7139a17057e100da3d8dad528708b1414cc347a1a93e0952c82fcddd598308849ce2a3ed827927578f8dfe8bbf84387517
languageName: node
linkType: hard
"@commitlint/load@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/load@npm:12.1.4"
dependencies:
"@commitlint/execute-rule": ^12.1.4
"@commitlint/resolve-extends": ^12.1.4
"@commitlint/types": ^12.1.4
chalk: ^4.0.0
cosmiconfig: ^7.0.0
lodash: ^4.17.19
resolve-from: ^5.0.0
checksum: 535bfff8d50cd3363feeb3e4cfd2dbeb0ccd51de8b3c20b0f2ab6a002f81542f6426de950f24391b719c170cc6362ced3fc8b0b1dcf62a221f3deb1d29330884
languageName: node
linkType: hard
"@commitlint/message@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/message@npm:12.1.4"
checksum: dfefa772e1a47fe3943cb0bc490dfbf92fe41edd967671df0af4eeed17b1fee7d4ef6075d6e720cc8e1e50aa4feab39cab67bccbeb352b199bc219d91ae01ce5
languageName: node
linkType: hard
"@commitlint/parse@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/parse@npm:12.1.4"
dependencies:
"@commitlint/types": ^12.1.4
conventional-changelog-angular: ^5.0.11
conventional-commits-parser: ^3.0.0
checksum: 0ad2090d05d8135b7b81f2f2032188d5aea56bf96e841c683dc440c1c5bf561b4d544447412842648d94e8b9cf49e2198440f64504d20750737455fe240afaee
languageName: node
linkType: hard
"@commitlint/read@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/read@npm:12.1.4"
dependencies:
"@commitlint/top-level": ^12.1.4
"@commitlint/types": ^12.1.4
fs-extra: ^9.0.0
git-raw-commits: ^2.0.0
checksum: 2497e447289d7dcde1227965dcd11794d682ecc3d0b55564555115eb78d569e979057835e982dbb5d22e5462fc74083f05f0f0e450525b04c9432f73190deba7
languageName: node
linkType: hard
"@commitlint/resolve-extends@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/resolve-extends@npm:12.1.4"
dependencies:
import-fresh: ^3.0.0
lodash: ^4.17.19
resolve-from: ^5.0.0
resolve-global: ^1.0.0
checksum: 8f93ce231d02c76b1a408ff1e61eba8f6317597b63eb8cab6a024cb9b22bebb25eacf8de18c70715057188fbc649accf115665c253f13f0108e70664838410b2
languageName: node
linkType: hard
"@commitlint/rules@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/rules@npm:12.1.4"
dependencies:
"@commitlint/ensure": ^12.1.4
"@commitlint/message": ^12.1.4
"@commitlint/to-lines": ^12.1.4
"@commitlint/types": ^12.1.4
checksum: c7be16960ac7ecf4c9598bf36de7a0c99a7de574607083cb8a11049cbedbc5a7317cc16d394f3b25e2c35b6487bb97e2c3e660d8972d553a3ec04a9360b565e7
languageName: node
linkType: hard
"@commitlint/to-lines@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/to-lines@npm:12.1.4"
checksum: 39b3de6b632a717f0ef851179e0c1503c128834e5b608ed8a34d4831dcc7c38482d72e43c5159009a6e3f691532f865d8570ed2bd2b3c9a6ddddf343aa461ef7
languageName: node
linkType: hard
"@commitlint/top-level@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/top-level@npm:12.1.4"
dependencies:
find-up: ^5.0.0
checksum: 29fad9cb86e5ae751e37486daed2bf65b49ef728838ae6828f964cda40dd64cee2d4392c1da094a7f732f482991049cd334bad402cb7f588c5455794d77fef8f
languageName: node
linkType: hard
"@commitlint/types@npm:^12.1.4":
version: 12.1.4
resolution: "@commitlint/types@npm:12.1.4"
dependencies:
chalk: ^4.0.0
checksum: 3f46760a2f9b8006a6e8c23eeabaf0c95ebc9f314ce88fc73cf9dbe208ba2dbfd8386349b7ff0caff95a84ec02260dbfdbcb67d5fadc781b1908ba5907019329
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": 0.3.9
checksum: 5718f267085ed8edb3e7ef210137241775e607ee18b77d95aa5bd7514f47f5019aa2d82d96b3bf342ef7aa890a346fa1044532ff7cc3009e7d24fce3ce6200fa
languageName: node
linkType: hard
"@cucumber/ci-environment@npm:9.0.4":
version: 9.0.4
resolution: "@cucumber/ci-environment@npm:9.0.4"
checksum: 6ac4ec128eca4f144a167e90d61588168113d958fe5bad78817189418b15d5654af0271cd1f9e1e4c8651d593a6a45e4c56614508ecc4674e0154df90eb6219d
languageName: node
linkType: hard
"@cucumber/cucumber-expressions@npm:15.1.1":
version: 15.1.1
resolution: "@cucumber/cucumber-expressions@npm:15.1.1"
dependencies:
regexp-match-indices: 1.0.2
checksum: 3920d067dcb378d1d3695873666234a5a7e01670a80328188a0ba76059ac0ec5554af7a410849f1103576c8922af8585df7de26c4a1f48b057c8ee0f5a0eb168
languageName: node
linkType: hard
"@cucumber/cucumber@npm:8.x":
version: 8.2.1
resolution: "@cucumber/cucumber@npm:8.2.1"
dependencies:
"@cspotcode/source-map-support": ^0.8.0
"@cucumber/ci-environment": 9.0.4
"@cucumber/cucumber-expressions": 15.1.1
"@cucumber/gherkin": 23.0.1
"@cucumber/gherkin-streams": 5.0.1
"@cucumber/gherkin-utils": 7.0.0
"@cucumber/html-formatter": 19.1.0
"@cucumber/message-streams": 4.0.1
"@cucumber/messages": 18.0.0
"@cucumber/tag-expressions": 4.1.0
assertion-error-formatter: ^3.0.0
capital-case: ^1.0.4
chalk: ^4.1.2
cli-table3: 0.6.2
commander: ^9.0.0
duration: ^0.2.2
durations: ^3.4.2
figures: ^3.2.0
glob: ^7.1.6
indent-string: ^4.0.0
is-stream: ^2.0.0
knuth-shuffle-seeded: ^1.0.6
lodash.merge: ^4.6.2
lodash.mergewith: ^4.6.2
mz: ^2.7.0
progress: ^2.0.3
resolve: ^1.19.0
resolve-pkg: ^2.0.0
semver: 7.3.7
stack-chain: ^2.0.0
string-argv: ^0.3.1
supports-color: ^8.1.1
tmp: ^0.2.1
util-arity: ^1.1.0
verror: ^1.10.0
yup: ^0.32.11
bin:
cucumber-js: bin/cucumber.js
checksum: e0140150b3243a75e27952c3366a2383f0f28e2b878effa1f29dab4d5050a88a3a47bc74b305fd426bfe164363f011da928b84b35c8ab05e4739c97803efe39b
languageName: node
linkType: hard
"@cucumber/gherkin-streams@npm:5.0.1":
version: 5.0.1
resolution: "@cucumber/gherkin-streams@npm:5.0.1"
dependencies:
commander: 9.1.0
source-map-support: 0.5.21
peerDependencies:
"@cucumber/gherkin": ">=22.0.0"
"@cucumber/message-streams": ">=4.0.0"
"@cucumber/messages": ">=17.1.1"
bin:
gherkin-javascript: bin/gherkin
checksum: b8e85b60c0b6773f61adafa107bbf745ba2fc786a200913a6302a472d62d55c30355b0ce8b462fee281bccb02ede4422e95c017d95e6e90aac60e9342b114a34
languageName: node
linkType: hard
"@cucumber/gherkin-utils@npm:7.0.0":
version: 7.0.0
resolution: "@cucumber/gherkin-utils@npm:7.0.0"
dependencies:
"@cucumber/messages": ^17.1.0
"@teppeis/multimaps": 2.0.0
commander: 8.1.0
bin:
gherkin-utils: bin/gherkin-utils
checksum: db92bd1649c6f3a88013a4af2b7417a7072d22fab79f1b1891d895910e3333f7111fb990a55917dac4ed2131fd63b9337cae437d729741263ca79fafce93a6a3
languageName: node
linkType: hard
"@cucumber/gherkin@npm:23.0.1":
version: 23.0.1
resolution: "@cucumber/gherkin@npm:23.0.1"
dependencies:
"@cucumber/messages": ^18.0.0
checksum: 1b82b5ec000b6032e499a7ada96900f773761b1cbf2ff8f85caf0040446afade106b75e5cbd7b492cfc6a23b7641c07f21ad3646d8b395b4bbed339d5a2a3943
languageName: node
linkType: hard
"@cucumber/html-formatter@npm:19.1.0":
version: 19.1.0
resolution: "@cucumber/html-formatter@npm:19.1.0"
peerDependencies:
"@cucumber/messages": ">=18"
checksum: e0f807eff98a9e573aacd92bf04c2e0b913693197be5a232ecef98c59fb8b571d6f92e18ca0cc96775b3bf2261e30db07d4b819e825d74fd5a54534900b039e2
languageName: node
linkType: hard
"@cucumber/message-streams@npm:4.0.1":
version: 4.0.1
resolution: "@cucumber/message-streams@npm:4.0.1"
peerDependencies:
"@cucumber/messages": ">=17.1.1"
checksum: 1ebb05ccf90501c00e3b55237746bae438a621e9f88152ec19407d76c7632a250d09b0ab9168b4179918362c79da948d45aae68a02689a7b36a57fcc5befc883
languageName: node
linkType: hard
"@cucumber/messages@npm:18.0.0, @cucumber/messages@npm:^18.0.0":
version: 18.0.0
resolution: "@cucumber/messages@npm:18.0.0"
dependencies:
"@types/uuid": 8.3.4
class-transformer: 0.5.1
reflect-metadata: 0.1.13
uuid: 8.3.2
checksum: e60c2e6d386c2ab53c62d2266cfd04cbf5a8b6486ba0943ad0d11bd53ef7ba0c037eed0e2807b7d7c365eadcf8e3ea94d224bfa7538ed6b9676e95e0cc831fdd
languageName: node
linkType: hard
"@cucumber/messages@npm:^17.1.0":
version: 17.1.1
resolution: "@cucumber/messages@npm:17.1.1"
dependencies:
"@types/uuid": 8.3.1
class-transformer: 0.4.0
reflect-metadata: 0.1.13
uuid: 8.3.2
checksum: 360852bd76eb827fcb70cb2dd39dc16efe191186bb1ca99ab954eacd50b234323bb9bd24e39db5f12d4ebb5708ba6b06f39c74227a64bcf51428ee38f08e0f45
languageName: node
linkType: hard
"@cucumber/tag-expressions@npm:4.1.0":
version: 4.1.0
resolution: "@cucumber/tag-expressions@npm:4.1.0"
checksum: e1546a3fc9cfc9b6fb16aaef1b40cbd88614ddc9517583356b72400c9c43a01610d41d4eb94f31f4e23906b960ba44211ea9a5cbec1efb74d4c69a4676f982ac
languageName: node
linkType: hard
"@ekino/veggies@workspace:.":
version: 0.0.0-use.local
resolution: "@ekino/veggies@workspace:."
dependencies:
"@commitlint/config-conventional": 12.x
"@cucumber/cucumber": 8.x
arg: 5.0.1
babylon: 6.x
chai: 4.3
chalk: 4.x
commitlint: 12.x
conventional-changelog: ^3.1.24
conventional-changelog-cli: 2.x
coveralls: 3.x
eslint: 7.x
fs-extra: 10.0
gh-pages: 3.x
glob: 7.1
husky: 7.x
jest: 27.x
jest-diff: 27.0
js-yaml: 4.1
jsdoc: 3.x
lint-staged: 11.x
lodash: 4.17
minami: 1.x
moment-timezone: 0.5.33
mustache: 4.x
natural-compare: 1.4
nock: 13.x
prettier: 2.x
pretty-format: 27.0
request: 2.88
sinon: 11.x
tough-cookie: 4.0
peerDependencies:
"@cucumber/cucumber": ">=8.0.0"
bin:
veggies: ./bin/veggies.js
languageName: unknown
linkType: soft
"@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: 03a7704150b868c318aab6a94d87a33d30dc2ec579d27374575014f06237ba1370ae11178db772f985ef680d469dc237e7b16a1c5d8edaaeb8c3733e7a95a6d3
languageName: node
linkType: hard
"@gar/promisify@npm:^1.0.1":
version: 1.1.2
resolution: "@gar/promisify@npm:1.1.2"
checksum: d05081e0887a49c178b75ee3067bd6ee086f73c154d121b854fb2e044e8a89cb1cbb6de3a0dd93a519b80f0531fda68b099dd7256205f7fbb3490324342f2217
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.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: 44ee6a9f05d93dd9d5935a006b17572328ba9caff8002442f601736cbda79c580cc0f5a49ce9eb88fbacc5c3a6b62098357c2e95326cd17bb9f1a6c61d6e95e7
languageName: node
linkType: hard
"@humanwhocodes/object-schema@npm:^1.2.0":
version: 1.2.0
resolution: "@humanwhocodes/object-schema@npm:1.2.0"
checksum: 40b75480376de8104d65f7c44a7dd76d30fb57823ca8ba3a3239b2b568323be894d93440578a72fd8e5e2cc3df3577ce0d2f0fe308b990dd51cf35392bf3c9a2
languageName: node
linkType: hard
"@hutson/parse-repository-url@npm:^3.0.0":
version: 3.0.2
resolution: "@hutson/parse-repository-url@npm:3.0.2"
checksum: 39992c5f183c5ca3d761d6ed9dfabcb79b5f3750bf1b7f3532e1dc439ca370138bbd426ee250fdaba460bc948e6761fbefd484b8f4f36885d71ded96138340d1
languageName: node
linkType: hard
"@istanbuljs/load-nyc-config@npm:^1.0.0":
version: 1.1.0
resolution: "@istanbuljs/load-nyc-config@npm:1.1.0"
dependencies:
camelcase: ^5.3.1
find-up: ^4.1.0
get-package-type: ^0.1.0
js-yaml: ^3.13.1
resolve-from: ^5.0.0
checksum: d578da5e2e804d5c93228450a1380e1a3c691de4953acc162f387b717258512a3e07b83510a936d9fab03eac90817473917e24f5d16297af3867f59328d58568
languageName: node
linkType: hard
"@istanbuljs/schema@npm:^0.1.2":
version: 0.1.3
resolution: "@istanbuljs/schema@npm:0.1.3"
checksum: 5282759d961d61350f33d9118d16bcaed914ebf8061a52f4fa474b2cb08720c9c81d165e13b82f2e5a8a212cc5af482f0c6fc1ac27b9e067e5394c9a6ed186c9
languageName: node
linkType: hard
"@jest/console@npm:^27.1.1":
version: 27.1.1
resolution: "@jest/console@npm:27.1.1"
dependencies:
"@jest/types": ^27.1.1
"@types/node": "*"
chalk: ^4.0.0
jest-message-util: ^27.1.1
jest-util: ^27.1.1
slash: ^3.0.0
checksum: 7f64fb10147f866284a224bdf5c43ce2252bb1e7d48ef81f6522fa33fa268d9acf747e02fbea58c33d059527ed0bbc88887a194256be95874061231a1f5887fc
languageName: node
linkType: hard
"@jest/core@npm:^27.1.1":
version: 27.1.1
resolution: "@jest/core@npm:27.1.1"
dependencies:
"@jest/console": ^27.1.1
"@jest/reporters": ^27.1.1
"@jest/test-result": ^27.1.1
"@jest/transform": ^27.1.1
"@jest/types": ^27.1.1
"@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.1.1
jest-config: ^27.1.1
jest-haste-map: ^27.1.1
jest-message-util: ^27.1.1
jest-regex-util: ^27.0.6
jest-resolve: ^27.1.1
jest-resolve-dependencies: ^27.1.1
jest-runner: ^27.1.1
jest-runtime: ^27.1.1
jest-snapshot: ^27.1.1
jest-util: ^27.1.1
jest-validate: ^27.1.1
jest-watcher: ^27.1.1
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: 1e070220057cc43c287625cdd883272d69ed9027f4e8cdb81aa6102b00f50e22c9b0450be82d9394b37cba9f731d8e2a99ae7cf025c2c5aacbab7486cc9a1fcb
languageName: node
linkType: hard
"@jest/environment@npm:^27.1.1":
version: 27.1.1
resolution: "@jest/environment@npm:27.1.1"
dependencies:
"@jest/fake-timers": ^27.1.1
"@jest/types": ^27.1.1
"@types/node": "*"
jest-mock: ^27.1.1
checksum: d9c54ef1f44a1a4af33a1199cb6f027d48ef16083d7c83079a70613cf532b0b418bd1ca4c462a400409cff2e382c9780793cafafd0ed0d590fd1b8bb1a51f3b0
languageName: node
linkType: hard
"@jest/fake-timers@npm:^27.1.1":
version: 27.1.1
resolution: "@jest/fake-timers@npm:27.1.1"
dependencies:
"@jest/types": ^27.1.1
"@sinonjs/fake-timers": ^7.0.2
"@types/node": "*"
jest-message-util: ^27.1.1
jest-mock: ^27.1.1
jest-util: ^27.1.1
checksum: e25cb00b8f6f2fb29356ff769fada932096fbe3ee4dedad2fc450927c97d3c358ace7c8ecc5e9dd585d74d418489610b7c48c682dd130d9aae428122df902c4a
languageName: node
linkType: hard
"@jest/globals@npm:^27.1.1":
version: 27.1.1
resolution: "@jest/globals@npm:27.1.1"
dependencies:
"@jest/environment": ^27.1.1
"@jest/types": ^27.1.1
expect: ^27.1.1
checksum: f8204c2647539c2eae930e81a71b66854ff15e427ba7d033788b0f76a2a1dc7e4ea71fc1ea04da784ebdec17d7b91ebae997e42f0623727436a84e69cc663a2d
languageName: node
linkType: hard
"@jest/reporters@npm:^27.1.1":
version: 27.1.1
resolution: "@jest/reporters@npm:27.1.1"
dependencies:
"@bcoe/v8-coverage": ^0.2.3
"@jest/console": ^27.1.1
"@jest/test-result": ^27.1.1
"@jest/transform": ^27.1.1
"@jest/types": ^27.1.1
chalk: ^4.0.0
collect-v8-coverage: ^1.0.0
exit: ^0.1.2
glob: ^7.1.2
graceful-fs: ^4.2.4
istanbul-lib-coverage: ^3.0.0
istanbul-lib-instrument: ^4.0.3
istanbul-lib-report: ^3.0.0
istanbul-lib-source-maps: ^4.0.0
istanbul-reports: ^3.0.2