forked from jaredpalmer/cypress-image-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
yarn.lock
6789 lines (5889 loc) · 302 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 IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@ampproject/remapping@^2.1.0":
"integrity" "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w=="
"resolved" "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz"
"version" "2.2.0"
dependencies:
"@jridgewell/gen-mapping" "^0.1.0"
"@jridgewell/trace-mapping" "^0.3.9"
"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.16.7":
"integrity" "sha512-iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/highlight" "^7.16.7"
"@babel/compat-data@^7.17.10":
"integrity" "sha512-BxhE40PVCBxVEJsSBhB6UWyAuqJRxGsAw8BdHMJ3AKGydcwuWW4kOO3HmqBQAdcq/OP+/DlTVxLvsCzRTnZuGg=="
"resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.5.tgz"
"version" "7.18.5"
"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.8.0":
"integrity" "sha512-MGY8vg3DxMnctw0LdvSEojOsumc70g0t18gNyUdAZqB1Rpd1Bqo/svHGvt+UJ6JcGX+DIekGFDxxIWofBxLCnQ=="
"resolved" "https://registry.npmjs.org/@babel/core/-/core-7.18.5.tgz"
"version" "7.18.5"
dependencies:
"@ampproject/remapping" "^2.1.0"
"@babel/code-frame" "^7.16.7"
"@babel/generator" "^7.18.2"
"@babel/helper-compilation-targets" "^7.18.2"
"@babel/helper-module-transforms" "^7.18.0"
"@babel/helpers" "^7.18.2"
"@babel/parser" "^7.18.5"
"@babel/template" "^7.16.7"
"@babel/traverse" "^7.18.5"
"@babel/types" "^7.18.4"
"convert-source-map" "^1.7.0"
"debug" "^4.1.0"
"gensync" "^1.0.0-beta.2"
"json5" "^2.2.1"
"semver" "^6.3.0"
"@babel/generator@^7.18.2", "@babel/generator@^7.7.2":
"integrity" "sha512-W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw=="
"resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.18.2.tgz"
"version" "7.18.2"
dependencies:
"@babel/types" "^7.18.2"
"@jridgewell/gen-mapping" "^0.3.0"
"jsesc" "^2.5.1"
"@babel/helper-compilation-targets@^7.18.2":
"integrity" "sha512-s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz"
"version" "7.18.2"
dependencies:
"@babel/compat-data" "^7.17.10"
"@babel/helper-validator-option" "^7.16.7"
"browserslist" "^4.20.2"
"semver" "^6.3.0"
"@babel/helper-environment-visitor@^7.16.7", "@babel/helper-environment-visitor@^7.18.2":
"integrity" "sha512-14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz"
"version" "7.18.2"
"@babel/helper-function-name@^7.17.9":
"integrity" "sha512-7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg=="
"resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz"
"version" "7.17.9"
dependencies:
"@babel/template" "^7.16.7"
"@babel/types" "^7.17.0"
"@babel/helper-hoist-variables@^7.16.7":
"integrity" "sha512-m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg=="
"resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-module-imports@^7.16.7":
"integrity" "sha512-LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-module-transforms@^7.18.0":
"integrity" "sha512-kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA=="
"resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz"
"version" "7.18.0"
dependencies:
"@babel/helper-environment-visitor" "^7.16.7"
"@babel/helper-module-imports" "^7.16.7"
"@babel/helper-simple-access" "^7.17.7"
"@babel/helper-split-export-declaration" "^7.16.7"
"@babel/helper-validator-identifier" "^7.16.7"
"@babel/template" "^7.16.7"
"@babel/traverse" "^7.18.0"
"@babel/types" "^7.18.0"
"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.17.12", "@babel/helper-plugin-utils@^7.8.0":
"integrity" "sha512-JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA=="
"resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz"
"version" "7.17.12"
"@babel/helper-simple-access@^7.17.7":
"integrity" "sha512-7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz"
"version" "7.18.2"
dependencies:
"@babel/types" "^7.18.2"
"@babel/helper-split-export-declaration@^7.16.7":
"integrity" "sha512-xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw=="
"resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/types" "^7.16.7"
"@babel/helper-validator-identifier@^7.16.7":
"integrity" "sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"
"version" "7.16.7"
"@babel/helper-validator-option@^7.16.7":
"integrity" "sha512-TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz"
"version" "7.16.7"
"@babel/helpers@^7.18.2":
"integrity" "sha512-j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg=="
"resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.2.tgz"
"version" "7.18.2"
dependencies:
"@babel/template" "^7.16.7"
"@babel/traverse" "^7.18.2"
"@babel/types" "^7.18.2"
"@babel/highlight@^7.16.7":
"integrity" "sha512-7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.12.tgz"
"version" "7.17.12"
dependencies:
"@babel/helper-validator-identifier" "^7.16.7"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.16.7", "@babel/parser@^7.18.5":
"integrity" "sha512-YZWVaglMiplo7v8f1oMQ5ZPQr0vn7HPeZXxXWsxXJRjGVrzUFn9OxFQl1sb5wzfootjA/yChhW84BV+383FSOw=="
"resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.18.5.tgz"
"version" "7.18.5"
"@babel/plugin-syntax-async-generators@^7.8.4":
"integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"
"version" "7.8.4"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-bigint@^7.8.3":
"integrity" "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-class-properties@^7.8.3":
"integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"
"version" "7.12.13"
dependencies:
"@babel/helper-plugin-utils" "^7.12.13"
"@babel/plugin-syntax-import-meta@^7.8.3":
"integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-json-strings@^7.8.3":
"integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-logical-assignment-operators@^7.8.3":
"integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3":
"integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-numeric-separator@^7.8.3":
"integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-plugin-utils" "^7.10.4"
"@babel/plugin-syntax-object-rest-spread@^7.8.3":
"integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-catch-binding@^7.8.3":
"integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-optional-chaining@^7.8.3":
"integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"
"version" "7.8.3"
dependencies:
"@babel/helper-plugin-utils" "^7.8.0"
"@babel/plugin-syntax-top-level-await@^7.8.3":
"integrity" "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"
"version" "7.14.5"
dependencies:
"@babel/helper-plugin-utils" "^7.14.5"
"@babel/plugin-syntax-typescript@^7.7.2":
"integrity" "sha512-TYY0SXFiO31YXtNg3HtFwNJHjLsAyIIhAhNWkQ5whPPS7HWUFlg9z0Ta4qAQNjQbP1wsSt/oKkmZ/4/WWdMUpw=="
"resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.17.12.tgz"
"version" "7.17.12"
dependencies:
"@babel/helper-plugin-utils" "^7.17.12"
"@babel/runtime@^7.10.4", "@babel/runtime@^7.5.5":
"integrity" "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz"
"version" "7.12.5"
dependencies:
"regenerator-runtime" "^0.13.4"
"@babel/template@^7.16.7", "@babel/template@^7.3.3":
"integrity" "sha512-I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="
"resolved" "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz"
"version" "7.16.7"
dependencies:
"@babel/code-frame" "^7.16.7"
"@babel/parser" "^7.16.7"
"@babel/types" "^7.16.7"
"@babel/traverse@^7.18.0", "@babel/traverse@^7.18.2", "@babel/traverse@^7.18.5", "@babel/traverse@^7.7.2":
"integrity" "sha512-aKXj1KT66sBj0vVzk6rEeAO6Z9aiiQ68wfDgge3nHhA/my6xMM/7HGQUNumKZaoa2qUPQ5whJG9aAifsxUKfLA=="
"resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.5.tgz"
"version" "7.18.5"
dependencies:
"@babel/code-frame" "^7.16.7"
"@babel/generator" "^7.18.2"
"@babel/helper-environment-visitor" "^7.18.2"
"@babel/helper-function-name" "^7.17.9"
"@babel/helper-hoist-variables" "^7.16.7"
"@babel/helper-split-export-declaration" "^7.16.7"
"@babel/parser" "^7.18.5"
"@babel/types" "^7.18.4"
"debug" "^4.1.0"
"globals" "^11.1.0"
"@babel/types@^7.0.0", "@babel/types@^7.16.7", "@babel/types@^7.17.0", "@babel/types@^7.18.0", "@babel/types@^7.18.2", "@babel/types@^7.18.4", "@babel/types@^7.3.0", "@babel/types@^7.3.3":
"integrity" "sha512-ThN1mBcMq5pG/Vm2IcBmPPfyPXbd8S02rS+OBIDENdufvqC7Z/jHPCv9IcP01277aKtDI8g/2XysBN4hA8niiw=="
"resolved" "https://registry.npmjs.org/@babel/types/-/types-7.18.4.tgz"
"version" "7.18.4"
dependencies:
"@babel/helper-validator-identifier" "^7.16.7"
"to-fast-properties" "^2.0.0"
"@bcoe/v8-coverage@^0.2.3":
"integrity" "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw=="
"resolved" "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz"
"version" "0.2.3"
"@changesets/apply-release-plan@^6.0.0":
"integrity" "sha512-gp6nIdVdfYdwKww2+f8whckKmvfE4JEm4jJgBhTmooi0uzHWhnxvk6JIzQi89qEAMINN0SeVNnXiAtbFY0Mj3w=="
"resolved" "https://registry.npmjs.org/@changesets/apply-release-plan/-/apply-release-plan-6.0.0.tgz"
"version" "6.0.0"
dependencies:
"@babel/runtime" "^7.10.4"
"@changesets/config" "^2.0.0"
"@changesets/get-version-range-type" "^0.3.2"
"@changesets/git" "^1.3.2"
"@changesets/types" "^5.0.0"
"@manypkg/get-packages" "^1.1.3"
"detect-indent" "^6.0.0"
"fs-extra" "^7.0.1"
"lodash.startcase" "^4.4.0"
"outdent" "^0.5.0"
"prettier" "^1.19.1"
"resolve-from" "^5.0.0"
"semver" "^5.4.1"
"@changesets/assemble-release-plan@^5.1.3":
"integrity" "sha512-I+TTkUoqvxBEuDLoJfJYKDXIJ+nyiTbVJ8KGhpXEsLq4N/ms/AStSbouJwF2d/p3cB+RCPr5+gXh31GSN4kA7w=="
"resolved" "https://registry.npmjs.org/@changesets/assemble-release-plan/-/assemble-release-plan-5.1.3.tgz"
"version" "5.1.3"
dependencies:
"@babel/runtime" "^7.10.4"
"@changesets/errors" "^0.1.4"
"@changesets/get-dependents-graph" "^1.3.2"
"@changesets/types" "^5.0.0"
"@manypkg/get-packages" "^1.1.3"
"semver" "^5.4.1"
"@changesets/changelog-git@^0.1.11":
"integrity" "sha512-sWJvAm+raRPeES9usNpZRkooeEB93lOpUN0Lmjz5vhVAb7XGIZrHEJ93155bpE1S0c4oJ5Di9ZWgzIwqhWP/Wg=="
"resolved" "https://registry.npmjs.org/@changesets/changelog-git/-/changelog-git-0.1.11.tgz"
"version" "0.1.11"
dependencies:
"@changesets/types" "^5.0.0"
"@changesets/changelog-github@^0.4.5":
"integrity" "sha512-J36QJml3mXYm88PLY2qGepmb7j6LA3NM/wuUy6XBwh14qzVTRek+3Xww5oqeZhpK5lK8ELxGahdhSdYQzMv0kA=="
"resolved" "https://registry.npmjs.org/@changesets/changelog-github/-/changelog-github-0.4.5.tgz"
"version" "0.4.5"
dependencies:
"@changesets/get-github-info" "^0.5.1"
"@changesets/types" "^5.0.0"
"dotenv" "^8.1.0"
"@changesets/cli@^2.23.0":
"integrity" "sha512-Gi3tMi0Vr6eNd8GX6q73tbOm9XOzGfuLEm4PYVeWG2neg5DlRGNOjYwrFULJ/An3N9MHtHn4r5h1Qvnju9Ijug=="
"resolved" "https://registry.npmjs.org/@changesets/cli/-/cli-2.23.0.tgz"
"version" "2.23.0"
dependencies:
"@babel/runtime" "^7.10.4"
"@changesets/apply-release-plan" "^6.0.0"
"@changesets/assemble-release-plan" "^5.1.3"
"@changesets/changelog-git" "^0.1.11"
"@changesets/config" "^2.0.0"
"@changesets/errors" "^0.1.4"
"@changesets/get-dependents-graph" "^1.3.2"
"@changesets/get-release-plan" "^3.0.9"
"@changesets/git" "^1.3.2"
"@changesets/logger" "^0.0.5"
"@changesets/pre" "^1.0.11"
"@changesets/read" "^0.5.5"
"@changesets/types" "^5.0.0"
"@changesets/write" "^0.1.8"
"@manypkg/get-packages" "^1.1.3"
"@types/is-ci" "^3.0.0"
"@types/semver" "^6.0.0"
"ansi-colors" "^4.1.3"
"chalk" "^2.1.0"
"enquirer" "^2.3.0"
"external-editor" "^3.1.0"
"fs-extra" "^7.0.1"
"human-id" "^1.0.2"
"is-ci" "^3.0.1"
"meow" "^6.0.0"
"outdent" "^0.5.0"
"p-limit" "^2.2.0"
"preferred-pm" "^3.0.0"
"resolve-from" "^5.0.0"
"semver" "^5.4.1"
"spawndamnit" "^2.0.0"
"term-size" "^2.1.0"
"tty-table" "^4.1.5"
"@changesets/config@^2.0.0":
"integrity" "sha512-r5bIFY6CN3K6SQ+HZbjyE3HXrBIopONR47mmX7zUbORlybQXtympq9rVAOzc0Oflbap8QeIexc+hikfZoREXDg=="
"resolved" "https://registry.npmjs.org/@changesets/config/-/config-2.0.0.tgz"
"version" "2.0.0"
dependencies:
"@changesets/errors" "^0.1.4"
"@changesets/get-dependents-graph" "^1.3.2"
"@changesets/logger" "^0.0.5"
"@changesets/types" "^5.0.0"
"@manypkg/get-packages" "^1.1.3"
"fs-extra" "^7.0.1"
"micromatch" "^4.0.2"
"@changesets/errors@^0.1.4":
"integrity" "sha512-HAcqPF7snsUJ/QzkWoKfRfXushHTu+K5KZLJWPb34s4eCZShIf8BFO3fwq6KU8+G7L5KdtN2BzQAXOSXEyiY9Q=="
"resolved" "https://registry.npmjs.org/@changesets/errors/-/errors-0.1.4.tgz"
"version" "0.1.4"
dependencies:
"extendable-error" "^0.1.5"
"@changesets/get-dependents-graph@^1.3.2":
"integrity" "sha512-tsqA6qZRB86SQuApSoDvI8yEWdyIlo/WLI4NUEdhhxLMJ0dapdeT6rUZRgSZzK1X2nv5YwR0MxQBbDAiDibKrg=="
"resolved" "https://registry.npmjs.org/@changesets/get-dependents-graph/-/get-dependents-graph-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"@changesets/types" "^5.0.0"
"@manypkg/get-packages" "^1.1.3"
"chalk" "^2.1.0"
"fs-extra" "^7.0.1"
"semver" "^5.4.1"
"@changesets/get-github-info@^0.5.1":
"integrity" "sha512-w2yl3AuG+hFuEEmT6j1zDlg7GQLM/J2UxTmk0uJBMdRqHni4zXGe/vUlPfLom5KfX3cRfHc0hzGvloDPjWFNZw=="
"resolved" "https://registry.npmjs.org/@changesets/get-github-info/-/get-github-info-0.5.1.tgz"
"version" "0.5.1"
dependencies:
"dataloader" "^1.4.0"
"node-fetch" "^2.5.0"
"@changesets/get-release-plan@^3.0.9":
"integrity" "sha512-5C1r4DcOjVxcCvPmXpymeyT6mdSTLCNiB2L+5uf19BRkDKndJdIQorH5Fe2XBR2nHUcZQFT+2TXDzCepat969w=="
"resolved" "https://registry.npmjs.org/@changesets/get-release-plan/-/get-release-plan-3.0.9.tgz"
"version" "3.0.9"
dependencies:
"@babel/runtime" "^7.10.4"
"@changesets/assemble-release-plan" "^5.1.3"
"@changesets/config" "^2.0.0"
"@changesets/pre" "^1.0.11"
"@changesets/read" "^0.5.5"
"@changesets/types" "^5.0.0"
"@manypkg/get-packages" "^1.1.3"
"@changesets/get-version-range-type@^0.3.2":
"integrity" "sha512-SVqwYs5pULYjYT4op21F2pVbcrca4qA/bAA3FmFXKMN7Y+HcO8sbZUTx3TAy2VXulP2FACd1aC7f2nTuqSPbqg=="
"resolved" "https://registry.npmjs.org/@changesets/get-version-range-type/-/get-version-range-type-0.3.2.tgz"
"version" "0.3.2"
"@changesets/git@^1.3.2":
"integrity" "sha512-p5UL+urAg0Nnpt70DLiBe2iSsMcDubTo9fTOD/61krmcJ466MGh71OHwdAwu1xG5+NKzeysdy1joRTg8CXcEXA=="
"resolved" "https://registry.npmjs.org/@changesets/git/-/git-1.3.2.tgz"
"version" "1.3.2"
dependencies:
"@babel/runtime" "^7.10.4"
"@changesets/errors" "^0.1.4"
"@changesets/types" "^5.0.0"
"@manypkg/get-packages" "^1.1.3"
"is-subdir" "^1.1.1"
"spawndamnit" "^2.0.0"
"@changesets/logger@^0.0.5":
"integrity" "sha512-gJyZHomu8nASHpaANzc6bkQMO9gU/ib20lqew1rVx753FOxffnCrJlGIeQVxNWCqM+o6OOleCo/ivL8UAO5iFw=="
"resolved" "https://registry.npmjs.org/@changesets/logger/-/logger-0.0.5.tgz"
"version" "0.0.5"
dependencies:
"chalk" "^2.1.0"
"@changesets/parse@^0.3.13":
"integrity" "sha512-wh9Ifa0dungY6d2nMz6XxF6FZ/1I7j+mEgPAqrIyKS64nifTh1Ua82qKKMMK05CL7i4wiB2NYc3SfnnCX3RVeA=="
"resolved" "https://registry.npmjs.org/@changesets/parse/-/parse-0.3.13.tgz"
"version" "0.3.13"
dependencies:
"@changesets/types" "^5.0.0"
"js-yaml" "^3.13.1"
"@changesets/pre@^1.0.11":
"integrity" "sha512-CXZnt4SV9waaC9cPLm7818+SxvLKIDHUxaiTXnJYDp1c56xIexx1BNfC1yMuOdzO2a3rAIcZua5Odxr3dwSKfg=="
"resolved" "https://registry.npmjs.org/@changesets/pre/-/pre-1.0.11.tgz"
"version" "1.0.11"
dependencies:
"@babel/runtime" "^7.10.4"
"@changesets/errors" "^0.1.4"
"@changesets/types" "^5.0.0"
"@manypkg/get-packages" "^1.1.3"
"fs-extra" "^7.0.1"
"@changesets/read@^0.5.5":
"integrity" "sha512-bzonrPWc29Tsjvgh+8CqJ0apQOwWim0zheeD4ZK44ApSa/GudnZJTODtA3yNOOuQzeZmL0NUebVoHIurtIkA7w=="
"resolved" "https://registry.npmjs.org/@changesets/read/-/read-0.5.5.tgz"
"version" "0.5.5"
dependencies:
"@babel/runtime" "^7.10.4"
"@changesets/git" "^1.3.2"
"@changesets/logger" "^0.0.5"
"@changesets/parse" "^0.3.13"
"@changesets/types" "^5.0.0"
"chalk" "^2.1.0"
"fs-extra" "^7.0.1"
"p-filter" "^2.1.0"
"@changesets/types@^4.0.1":
"integrity" "sha512-LDQvVDv5Kb50ny2s25Fhm3d9QSZimsoUGBsUioj6MC3qbMUCuC8GPIvk/M6IvXx3lYhAs0lwWUQLb+VIEUCECw=="
"resolved" "https://registry.npmjs.org/@changesets/types/-/types-4.1.0.tgz"
"version" "4.1.0"
"@changesets/types@^5.0.0":
"integrity" "sha512-IT1kBLSbAgTS4WtpU6P5ko054hq12vk4tgeIFRVE7Vnm4a/wgbNvBalgiKP0MjEXbCkZbItiGQHkCGxYWR55sA=="
"resolved" "https://registry.npmjs.org/@changesets/types/-/types-5.0.0.tgz"
"version" "5.0.0"
"@changesets/write@^0.1.8":
"integrity" "sha512-oIHeFVMuP6jf0TPnKPpaFpvvAf3JBc+s2pmVChbeEgQTBTALoF51Z9kqxQfG4XONZPHZnqkmy564c7qohhhhTQ=="
"resolved" "https://registry.npmjs.org/@changesets/write/-/write-0.1.8.tgz"
"version" "0.1.8"
dependencies:
"@babel/runtime" "^7.10.4"
"@changesets/types" "^5.0.0"
"fs-extra" "^7.0.1"
"human-id" "^1.0.2"
"prettier" "^1.19.1"
"@colors/colors@1.5.0":
"integrity" "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ=="
"resolved" "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz"
"version" "1.5.0"
"@cypress/request@^2.88.10":
"integrity" "sha512-Zp7F+R93N0yZyG34GutyTNr+okam7s/Fzc1+i3kcqOP8vk6OuajuE9qZJ6Rs+10/1JFtXFYMdyarnU1rZuJesg=="
"resolved" "https://registry.npmjs.org/@cypress/request/-/request-2.88.10.tgz"
"version" "2.88.10"
dependencies:
"aws-sign2" "~0.7.0"
"aws4" "^1.8.0"
"caseless" "~0.12.0"
"combined-stream" "~1.0.6"
"extend" "~3.0.2"
"forever-agent" "~0.6.1"
"form-data" "~2.3.2"
"http-signature" "~1.3.6"
"is-typedarray" "~1.0.0"
"isstream" "~0.1.2"
"json-stringify-safe" "~5.0.1"
"mime-types" "~2.1.19"
"performance-now" "^2.1.0"
"qs" "~6.5.2"
"safe-buffer" "^5.1.2"
"tough-cookie" "~2.5.0"
"tunnel-agent" "^0.6.0"
"uuid" "^8.3.2"
"@cypress/xvfb@^1.2.4":
"integrity" "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q=="
"resolved" "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz"
"version" "1.2.4"
dependencies:
"debug" "^3.1.0"
"lodash.once" "^4.1.1"
"@eslint/eslintrc@^1.3.0":
"integrity" "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz"
"version" "1.3.0"
dependencies:
"ajv" "^6.12.4"
"debug" "^4.3.2"
"espree" "^9.3.2"
"globals" "^13.15.0"
"ignore" "^5.2.0"
"import-fresh" "^3.2.1"
"js-yaml" "^4.1.0"
"minimatch" "^3.1.2"
"strip-json-comments" "^3.1.1"
"@humanwhocodes/config-array@^0.9.2":
"integrity" "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz"
"version" "0.9.5"
dependencies:
"@humanwhocodes/object-schema" "^1.2.1"
"debug" "^4.1.1"
"minimatch" "^3.0.4"
"@humanwhocodes/object-schema@^1.2.1":
"integrity" "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
"resolved" "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
"version" "1.2.1"
"@istanbuljs/load-nyc-config@^1.0.0":
"integrity" "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="
"resolved" "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"
"version" "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"
"@istanbuljs/schema@^0.1.2":
"integrity" "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="
"resolved" "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"
"version" "0.1.3"
"@jest/console@^28.1.1":
"integrity" "sha512-0RiUocPVFEm3WRMOStIHbRWllG6iW6E3/gUPnf4lkrVFyXIIDeCe+vlKeYyFOMhB2EPE6FLFCNADSOOQMaqvyA=="
"resolved" "https://registry.npmjs.org/@jest/console/-/console-28.1.1.tgz"
"version" "28.1.1"
dependencies:
"@jest/types" "^28.1.1"
"@types/node" "*"
"chalk" "^4.0.0"
"jest-message-util" "^28.1.1"
"jest-util" "^28.1.1"
"slash" "^3.0.0"
"@jest/core@^28.1.1":
"integrity" "sha512-3pYsBoZZ42tXMdlcFeCc/0j9kOlK7MYuXs2B1QbvDgMoW1K9NJ4G/VYvIbMb26iqlkTfPHo7SC2JgjDOk/mxXw=="
"resolved" "https://registry.npmjs.org/@jest/core/-/core-28.1.1.tgz"
"version" "28.1.1"
dependencies:
"@jest/console" "^28.1.1"
"@jest/reporters" "^28.1.1"
"@jest/test-result" "^28.1.1"
"@jest/transform" "^28.1.1"
"@jest/types" "^28.1.1"
"@types/node" "*"
"ansi-escapes" "^4.2.1"
"chalk" "^4.0.0"
"ci-info" "^3.2.0"
"exit" "^0.1.2"
"graceful-fs" "^4.2.9"
"jest-changed-files" "^28.0.2"
"jest-config" "^28.1.1"
"jest-haste-map" "^28.1.1"
"jest-message-util" "^28.1.1"
"jest-regex-util" "^28.0.2"
"jest-resolve" "^28.1.1"
"jest-resolve-dependencies" "^28.1.1"
"jest-runner" "^28.1.1"
"jest-runtime" "^28.1.1"
"jest-snapshot" "^28.1.1"
"jest-util" "^28.1.1"
"jest-validate" "^28.1.1"
"jest-watcher" "^28.1.1"
"micromatch" "^4.0.4"
"pretty-format" "^28.1.1"
"rimraf" "^3.0.0"
"slash" "^3.0.0"
"strip-ansi" "^6.0.0"
"@jest/environment@^28.1.1":
"integrity" "sha512-9auVQ2GzQ7nrU+lAr8KyY838YahElTX9HVjbQPPS2XjlxQ+na18G113OoBhyBGBtD6ZnO/SrUy5WR8EzOj1/Uw=="
"resolved" "https://registry.npmjs.org/@jest/environment/-/environment-28.1.1.tgz"
"version" "28.1.1"
dependencies:
"@jest/fake-timers" "^28.1.1"
"@jest/types" "^28.1.1"
"@types/node" "*"
"jest-mock" "^28.1.1"
"@jest/expect-utils@^28.1.1":
"integrity" "sha512-n/ghlvdhCdMI/hTcnn4qV57kQuV9OTsZzH1TTCVARANKhl6hXJqLKUkwX69ftMGpsbpt96SsDD8n8LD2d9+FRw=="
"resolved" "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-28.1.1.tgz"
"version" "28.1.1"
dependencies:
"jest-get-type" "^28.0.2"
"@jest/expect@^28.1.1":
"integrity" "sha512-/+tQprrFoT6lfkMj4mW/mUIfAmmk/+iQPmg7mLDIFOf2lyf7EBHaS+x3RbeR0VZVMe55IvX7QRoT/2aK3AuUXg=="
"resolved" "https://registry.npmjs.org/@jest/expect/-/expect-28.1.1.tgz"
"version" "28.1.1"
dependencies:
"expect" "^28.1.1"
"jest-snapshot" "^28.1.1"
"@jest/fake-timers@^28.1.1":
"integrity" "sha512-BY/3+TyLs5+q87rGWrGUY5f8e8uC3LsVHS9Diz8+FV3ARXL4sNnkLlIB8dvDvRrp+LUCGM+DLqlsYubizGUjIA=="
"resolved" "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-28.1.1.tgz"
"version" "28.1.1"
dependencies:
"@jest/types" "^28.1.1"
"@sinonjs/fake-timers" "^9.1.1"
"@types/node" "*"
"jest-message-util" "^28.1.1"
"jest-mock" "^28.1.1"
"jest-util" "^28.1.1"
"@jest/globals@^28.1.1":
"integrity" "sha512-dEgl/6v7ToB4vXItdvcltJBgny0xBE6xy6IYQrPJAJggdEinGxCDMivNv7sFzPcTITGquXD6UJwYxfJ/5ZwDSg=="
"resolved" "https://registry.npmjs.org/@jest/globals/-/globals-28.1.1.tgz"
"version" "28.1.1"
dependencies:
"@jest/environment" "^28.1.1"
"@jest/expect" "^28.1.1"
"@jest/types" "^28.1.1"
"@jest/reporters@^28.1.1":
"integrity" "sha512-597Zj4D4d88sZrzM4atEGLuO7SdA/YrOv9SRXHXRNC+/FwPCWxZhBAEzhXoiJzfRwn8zes/EjS8Lo6DouGN5Gg=="
"resolved" "https://registry.npmjs.org/@jest/reporters/-/reporters-28.1.1.tgz"
"version" "28.1.1"
dependencies:
"@bcoe/v8-coverage" "^0.2.3"
"@jest/console" "^28.1.1"
"@jest/test-result" "^28.1.1"
"@jest/transform" "^28.1.1"
"@jest/types" "^28.1.1"
"@jridgewell/trace-mapping" "^0.3.7"
"@types/node" "*"
"chalk" "^4.0.0"
"collect-v8-coverage" "^1.0.0"
"exit" "^0.1.2"
"glob" "^7.1.3"
"graceful-fs" "^4.2.9"
"istanbul-lib-coverage" "^3.0.0"
"istanbul-lib-instrument" "^5.1.0"
"istanbul-lib-report" "^3.0.0"
"istanbul-lib-source-maps" "^4.0.0"
"istanbul-reports" "^3.1.3"
"jest-message-util" "^28.1.1"
"jest-util" "^28.1.1"
"jest-worker" "^28.1.1"
"slash" "^3.0.0"
"string-length" "^4.0.1"
"strip-ansi" "^6.0.0"
"terminal-link" "^2.0.0"
"v8-to-istanbul" "^9.0.0"
"@jest/schemas@^28.0.2":
"integrity" "sha512-YVDJZjd4izeTDkij00vHHAymNXQ6WWsdChFRK86qck6Jpr3DCL5W3Is3vslviRlP+bLuMYRLbdp98amMvqudhA=="
"resolved" "https://registry.npmjs.org/@jest/schemas/-/schemas-28.0.2.tgz"
"version" "28.0.2"
dependencies:
"@sinclair/typebox" "^0.23.3"
"@jest/source-map@^28.0.2":
"integrity" "sha512-Y9dxC8ZpN3kImkk0LkK5XCEneYMAXlZ8m5bflmSL5vrwyeUpJfentacCUg6fOb8NOpOO7hz2+l37MV77T6BFPw=="
"resolved" "https://registry.npmjs.org/@jest/source-map/-/source-map-28.0.2.tgz"
"version" "28.0.2"
dependencies:
"@jridgewell/trace-mapping" "^0.3.7"
"callsites" "^3.0.0"
"graceful-fs" "^4.2.9"
"@jest/test-result@^28.1.1":
"integrity" "sha512-hPmkugBktqL6rRzwWAtp1JtYT4VHwv8OQ+9lE5Gymj6dHzubI/oJHMUpPOt8NrdVWSrz9S7bHjJUmv2ggFoUNQ=="
"resolved" "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.1.tgz"
"version" "28.1.1"
dependencies:
"@jest/console" "^28.1.1"
"@jest/types" "^28.1.1"
"@types/istanbul-lib-coverage" "^2.0.0"
"collect-v8-coverage" "^1.0.0"
"@jest/test-sequencer@^28.1.1":
"integrity" "sha512-nuL+dNSVMcWB7OOtgb0EGH5AjO4UBCt68SLP08rwmC+iRhyuJWS9MtZ/MpipxFwKAlHFftbMsydXqWre8B0+XA=="
"resolved" "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-28.1.1.tgz"
"version" "28.1.1"
dependencies:
"@jest/test-result" "^28.1.1"
"graceful-fs" "^4.2.9"
"jest-haste-map" "^28.1.1"
"slash" "^3.0.0"
"@jest/transform@^28.1.1":
"integrity" "sha512-PkfaTUuvjUarl1EDr5ZQcCA++oXkFCP9QFUkG0yVKVmNObjhrqDy0kbMpMebfHWm3CCDHjYNem9eUSH8suVNHQ=="
"resolved" "https://registry.npmjs.org/@jest/transform/-/transform-28.1.1.tgz"
"version" "28.1.1"
dependencies:
"@babel/core" "^7.11.6"
"@jest/types" "^28.1.1"
"@jridgewell/trace-mapping" "^0.3.7"
"babel-plugin-istanbul" "^6.1.1"
"chalk" "^4.0.0"
"convert-source-map" "^1.4.0"
"fast-json-stable-stringify" "^2.0.0"
"graceful-fs" "^4.2.9"
"jest-haste-map" "^28.1.1"
"jest-regex-util" "^28.0.2"
"jest-util" "^28.1.1"
"micromatch" "^4.0.4"
"pirates" "^4.0.4"
"slash" "^3.0.0"
"write-file-atomic" "^4.0.1"
"@jest/types@^28.1.1":
"integrity" "sha512-vRXVqSg1VhDnB8bWcmvLzmg0Bt9CRKVgHPXqYwvWMX3TvAjeO+nRuK6+VdTKCtWOvYlmkF/HqNAL/z+N3B53Kw=="
"resolved" "https://registry.npmjs.org/@jest/types/-/types-28.1.1.tgz"
"version" "28.1.1"
dependencies:
"@jest/schemas" "^28.0.2"
"@types/istanbul-lib-coverage" "^2.0.0"
"@types/istanbul-reports" "^3.0.0"
"@types/node" "*"
"@types/yargs" "^17.0.8"
"chalk" "^4.0.0"
"@jridgewell/gen-mapping@^0.1.0":
"integrity" "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"
"version" "0.1.1"
dependencies:
"@jridgewell/set-array" "^1.0.0"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/gen-mapping@^0.3.0":
"integrity" "sha512-GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg=="
"resolved" "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz"
"version" "0.3.1"
dependencies:
"@jridgewell/set-array" "^1.0.0"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@jridgewell/trace-mapping" "^0.3.9"
"@jridgewell/resolve-uri@^3.0.3":
"integrity" "sha512-8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA=="
"resolved" "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz"
"version" "3.0.7"
"@jridgewell/set-array@^1.0.0":
"integrity" "sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ=="
"resolved" "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.1.tgz"
"version" "1.1.1"
"@jridgewell/sourcemap-codec@^1.4.10":
"integrity" "sha512-GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w=="
"resolved" "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz"
"version" "1.4.13"
"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.7", "@jridgewell/trace-mapping@^0.3.9":
"integrity" "sha512-o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w=="
"resolved" "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz"
"version" "0.3.13"
dependencies:
"@jridgewell/resolve-uri" "^3.0.3"
"@jridgewell/sourcemap-codec" "^1.4.10"
"@manypkg/find-root@^1.1.0":
"integrity" "sha512-mki5uBvhHzO8kYYix/WRy2WX8S3B5wdVSc9D6KcU5lQNglP2yt58/VfLuAK49glRXChosY8ap2oJ1qgma3GUVA=="
"resolved" "https://registry.npmjs.org/@manypkg/find-root/-/find-root-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"@babel/runtime" "^7.5.5"
"@types/node" "^12.7.1"
"find-up" "^4.1.0"
"fs-extra" "^8.1.0"
"@manypkg/get-packages@^1.1.3":
"integrity" "sha512-fo+QhuU3qE/2TQMQmbVMqaQ6EWbMhi4ABWP+O4AM1NqPBuy0OrApV5LO6BrrgnhtAHS2NH6RrVk9OL181tTi8A=="
"resolved" "https://registry.npmjs.org/@manypkg/get-packages/-/get-packages-1.1.3.tgz"
"version" "1.1.3"
dependencies:
"@babel/runtime" "^7.5.5"
"@changesets/types" "^4.0.1"
"@manypkg/find-root" "^1.1.0"
"fs-extra" "^8.1.0"
"globby" "^11.0.0"
"read-yaml-file" "^1.1.0"
"@nodelib/fs.scandir@2.1.4":
"integrity" "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz"
"version" "2.1.4"
dependencies:
"@nodelib/fs.stat" "2.0.4"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.4":
"integrity" "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz"
"version" "2.0.4"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz"
"version" "1.2.6"
dependencies:
"@nodelib/fs.scandir" "2.1.4"
"fastq" "^1.6.0"
"@sinclair/typebox@^0.23.3":
"integrity" "sha512-AFBVi/iT4g20DHoujvMH1aEDn8fGJh4xsRGCP6d8RpLPMqsNPvW01Jcn0QysXTsg++/xj25NmJsGyH9xug/wKg=="
"resolved" "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.23.5.tgz"
"version" "0.23.5"
"@sinonjs/commons@^1.7.0":
"integrity" "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ=="
"resolved" "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz"
"version" "1.8.3"
dependencies:
"type-detect" "4.0.8"
"@sinonjs/fake-timers@^9.1.1":
"integrity" "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw=="
"resolved" "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz"
"version" "9.1.2"
dependencies:
"@sinonjs/commons" "^1.7.0"
"@types/babel__core@^7.1.14":
"integrity" "sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw=="
"resolved" "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.19.tgz"
"version" "7.1.19"
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
"@types/babel__generator" "*"
"@types/babel__template" "*"
"@types/babel__traverse" "*"
"@types/babel__generator@*":
"integrity" "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg=="
"resolved" "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz"
"version" "7.6.4"
dependencies:
"@babel/types" "^7.0.0"
"@types/babel__template@*":
"integrity" "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g=="
"resolved" "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz"
"version" "7.4.1"
dependencies:
"@babel/parser" "^7.1.0"
"@babel/types" "^7.0.0"
"@types/babel__traverse@*", "@types/babel__traverse@^7.0.6":
"integrity" "sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA=="
"resolved" "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.1.tgz"
"version" "7.17.1"
dependencies:
"@babel/types" "^7.3.0"
"@types/graceful-fs@^4.1.3":
"integrity" "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw=="
"resolved" "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz"
"version" "4.1.5"
dependencies:
"@types/node" "*"
"@types/is-ci@^3.0.0":
"integrity" "sha512-Q0Op0hdWbYd1iahB+IFNQcWXFq4O0Q5MwQP7uN0souuQ4rPg1vEYcnIOfr1gY+M+6rc8FGoRaBO1mOOvL29sEQ=="
"resolved" "https://registry.npmjs.org/@types/is-ci/-/is-ci-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"ci-info" "^3.1.0"
"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1":
"integrity" "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g=="
"resolved" "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz"
"version" "2.0.4"
"@types/istanbul-lib-report@*":
"integrity" "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg=="
"resolved" "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"
"version" "3.0.0"
dependencies:
"@types/istanbul-lib-coverage" "*"
"@types/istanbul-reports@^3.0.0":
"integrity" "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="
"resolved" "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"@types/istanbul-lib-report" "*"
"@types/json5@^0.0.29":
"integrity" "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
"resolved" "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"
"version" "0.0.29"
"@types/minimatch@^3.0.3":
"integrity" "sha512-Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="
"resolved" "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz"
"version" "3.0.5"
"@types/minimist@^1.2.0":
"integrity" "sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg=="
"resolved" "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.1.tgz"
"version" "1.2.1"
"@types/node@*", "@types/node@^12.7.1":
"integrity" "sha512-lowukE3GUI+VSYSu6VcBXl14d61Rp5hA1D+61r16qnwC0lYNSqdxcvRh0pswejorHfS+HgwBasM8jLXz0/aOsw=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-12.19.15.tgz"
"version" "12.19.15"
"@types/node@^14.14.31":
"integrity" "sha512-x5W9s+8P4XteaxT/jKF0PSb7XEvo5VmqEWgsMlyeY4ZlLK8I6aH6g5TPPyDlLAep+GYf4kefb7HFyc7PAO3m+Q=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-14.18.21.tgz"
"version" "14.18.21"
"@types/normalize-package-data@^2.4.0":
"integrity" "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="
"resolved" "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz"
"version" "2.4.0"
"@types/prettier@^2.1.5":
"integrity" "sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg=="
"resolved" "https://registry.npmjs.org/@types/prettier/-/prettier-2.6.3.tgz"
"version" "2.6.3"
"@types/semver@^6.0.0":
"integrity" "sha512-RxAwYt4rGwK5GyoRwuP0jT6ZHAVTdz2EqgsHmX0PYNjGsko+OeT4WFXXTs/lM3teJUJodM+SNtAL5/pXIJ61IQ=="
"resolved" "https://registry.npmjs.org/@types/semver/-/semver-6.2.2.tgz"
"version" "6.2.2"
"@types/sinonjs__fake-timers@8.1.1":
"integrity" "sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g=="
"resolved" "https://registry.npmjs.org/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz"
"version" "8.1.1"
"@types/sizzle@^2.3.2":
"integrity" "sha512-JYM8x9EGF163bEyhdJBpR2QX1R5naCJHC8ucJylJ3w9/CVBaskdQ8WqBf8MmQrd1kRvp/a4TS8HJ+bxzR7ZJYQ=="
"resolved" "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.3.tgz"