-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
11728 lines (11728 loc) · 458 KB
/
package-lock.json
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
{
"name": "passwordless-phone-number-otp-cognito-demo",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "passwordless-phone-number-otp-cognito-demo",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"@lumigo/tracer": "^1.79.4",
"aws-sdk": "^2.1569.0",
"chance": "^1.1.11",
"dotenv": "^16.4.5",
"lodash": "^4.17.21",
"serverless-offline": "^13.3.3"
},
"devDependencies": {
"serverless": "^3.28.1",
"serverless-iam-roles-per-function": "^3.2.0",
"serverless-lumigo": "^1.14.3"
}
},
"node_modules/@aws-crypto/crc32": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-3.0.0.tgz",
"integrity": "sha512-IzSgsrxUcsrejQbPVilIKy16kAT52EwB6zSaI+M3xxIhKh5+aldEyvI+z6erM7TCLB2BJsFrtHjp6/4/sr+3dA==",
"dependencies": {
"@aws-crypto/util": "^3.0.0",
"@aws-sdk/types": "^3.222.0",
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/crc32/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-crypto/ie11-detection": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/ie11-detection/-/ie11-detection-3.0.0.tgz",
"integrity": "sha512-341lBBkiY1DfDNKai/wXM3aujNBkXR7tq1URPQDL9wi3AUbI80NR74uF1TXHMm7po1AcnFk8iu2S2IeU/+/A+Q==",
"dependencies": {
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/ie11-detection/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-crypto/sha256-browser": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-3.0.0.tgz",
"integrity": "sha512-8VLmW2B+gjFbU5uMeqtQM6Nj0/F1bro80xQXCW6CQBWgosFWXTx77aeOF5CAIAmbOK64SdMBJdNr6J41yP5mvQ==",
"dependencies": {
"@aws-crypto/ie11-detection": "^3.0.0",
"@aws-crypto/sha256-js": "^3.0.0",
"@aws-crypto/supports-web-crypto": "^3.0.0",
"@aws-crypto/util": "^3.0.0",
"@aws-sdk/types": "^3.222.0",
"@aws-sdk/util-locate-window": "^3.0.0",
"@aws-sdk/util-utf8-browser": "^3.0.0",
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/sha256-browser/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-crypto/sha256-js": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-3.0.0.tgz",
"integrity": "sha512-PnNN7os0+yd1XvXAy23CFOmTbMaDxgxXtTKHybrJ39Y8kGzBATgBFibWJKH6BhytLI/Zyszs87xCOBNyBig6vQ==",
"dependencies": {
"@aws-crypto/util": "^3.0.0",
"@aws-sdk/types": "^3.222.0",
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/sha256-js/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-crypto/supports-web-crypto": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-3.0.0.tgz",
"integrity": "sha512-06hBdMwUAb2WFTuGG73LSC0wfPu93xWwo5vL2et9eymgmu3Id5vFAHBbajVWiGhPO37qcsdCap/FqXvJGJWPIg==",
"dependencies": {
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/supports-web-crypto/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-crypto/util": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@aws-crypto/util/-/util-3.0.0.tgz",
"integrity": "sha512-2OJlpeJpCR48CC8r+uKVChzs9Iungj9wkZrl8Z041DWEWvyIHILYKCPNzJghKsivj+S3mLo6BVc7mBNzdxA46w==",
"dependencies": {
"@aws-sdk/types": "^3.222.0",
"@aws-sdk/util-utf8-browser": "^3.0.0",
"tslib": "^1.11.1"
}
},
"node_modules/@aws-crypto/util/node_modules/tslib": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
"integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
},
"node_modules/@aws-sdk/client-lambda": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-lambda/-/client-lambda-3.525.0.tgz",
"integrity": "sha512-Jsz2F6X6DBV962T4wTyQgP2KqsIS3Hxw6shC5653tapCrR+AK2psFpeKs9w3SQA8D0SnEOAQf/5ay4n9sL+fZw==",
"dependencies": {
"@aws-crypto/sha256-browser": "3.0.0",
"@aws-crypto/sha256-js": "3.0.0",
"@aws-sdk/client-sts": "3.525.0",
"@aws-sdk/core": "3.525.0",
"@aws-sdk/credential-provider-node": "3.525.0",
"@aws-sdk/middleware-host-header": "3.523.0",
"@aws-sdk/middleware-logger": "3.523.0",
"@aws-sdk/middleware-recursion-detection": "3.523.0",
"@aws-sdk/middleware-user-agent": "3.525.0",
"@aws-sdk/region-config-resolver": "3.525.0",
"@aws-sdk/types": "3.523.0",
"@aws-sdk/util-endpoints": "3.525.0",
"@aws-sdk/util-user-agent-browser": "3.523.0",
"@aws-sdk/util-user-agent-node": "3.525.0",
"@smithy/config-resolver": "^2.1.4",
"@smithy/core": "^1.3.5",
"@smithy/eventstream-serde-browser": "^2.1.3",
"@smithy/eventstream-serde-config-resolver": "^2.1.3",
"@smithy/eventstream-serde-node": "^2.1.3",
"@smithy/fetch-http-handler": "^2.4.3",
"@smithy/hash-node": "^2.1.3",
"@smithy/invalid-dependency": "^2.1.3",
"@smithy/middleware-content-length": "^2.1.3",
"@smithy/middleware-endpoint": "^2.4.4",
"@smithy/middleware-retry": "^2.1.4",
"@smithy/middleware-serde": "^2.1.3",
"@smithy/middleware-stack": "^2.1.3",
"@smithy/node-config-provider": "^2.2.4",
"@smithy/node-http-handler": "^2.4.1",
"@smithy/protocol-http": "^3.2.1",
"@smithy/smithy-client": "^2.4.2",
"@smithy/types": "^2.10.1",
"@smithy/url-parser": "^2.1.3",
"@smithy/util-base64": "^2.1.1",
"@smithy/util-body-length-browser": "^2.1.1",
"@smithy/util-body-length-node": "^2.2.1",
"@smithy/util-defaults-mode-browser": "^2.1.4",
"@smithy/util-defaults-mode-node": "^2.2.3",
"@smithy/util-endpoints": "^1.1.4",
"@smithy/util-middleware": "^2.1.3",
"@smithy/util-retry": "^2.1.3",
"@smithy/util-stream": "^2.1.3",
"@smithy/util-utf8": "^2.1.1",
"@smithy/util-waiter": "^2.1.3",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/client-sso": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.525.0.tgz",
"integrity": "sha512-6KwGQWFoNLH1UupdWPFdKPfTgjSz1kN8/r8aCzuvvXBe4Pz+iDUZ6FEJzGWNc9AapjvZDNO1hs23slomM9rTaA==",
"dependencies": {
"@aws-crypto/sha256-browser": "3.0.0",
"@aws-crypto/sha256-js": "3.0.0",
"@aws-sdk/core": "3.525.0",
"@aws-sdk/middleware-host-header": "3.523.0",
"@aws-sdk/middleware-logger": "3.523.0",
"@aws-sdk/middleware-recursion-detection": "3.523.0",
"@aws-sdk/middleware-user-agent": "3.525.0",
"@aws-sdk/region-config-resolver": "3.525.0",
"@aws-sdk/types": "3.523.0",
"@aws-sdk/util-endpoints": "3.525.0",
"@aws-sdk/util-user-agent-browser": "3.523.0",
"@aws-sdk/util-user-agent-node": "3.525.0",
"@smithy/config-resolver": "^2.1.4",
"@smithy/core": "^1.3.5",
"@smithy/fetch-http-handler": "^2.4.3",
"@smithy/hash-node": "^2.1.3",
"@smithy/invalid-dependency": "^2.1.3",
"@smithy/middleware-content-length": "^2.1.3",
"@smithy/middleware-endpoint": "^2.4.4",
"@smithy/middleware-retry": "^2.1.4",
"@smithy/middleware-serde": "^2.1.3",
"@smithy/middleware-stack": "^2.1.3",
"@smithy/node-config-provider": "^2.2.4",
"@smithy/node-http-handler": "^2.4.1",
"@smithy/protocol-http": "^3.2.1",
"@smithy/smithy-client": "^2.4.2",
"@smithy/types": "^2.10.1",
"@smithy/url-parser": "^2.1.3",
"@smithy/util-base64": "^2.1.1",
"@smithy/util-body-length-browser": "^2.1.1",
"@smithy/util-body-length-node": "^2.2.1",
"@smithy/util-defaults-mode-browser": "^2.1.4",
"@smithy/util-defaults-mode-node": "^2.2.3",
"@smithy/util-endpoints": "^1.1.4",
"@smithy/util-middleware": "^2.1.3",
"@smithy/util-retry": "^2.1.3",
"@smithy/util-utf8": "^2.1.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/client-sso-oidc": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-sso-oidc/-/client-sso-oidc-3.525.0.tgz",
"integrity": "sha512-zz13k/6RkjPSLmReSeGxd8wzGiiZa4Odr2Tv3wTcxClM4wOjD+zOgGv4Fe32b9AMqaueiCdjbvdu7AKcYxFA4A==",
"dependencies": {
"@aws-crypto/sha256-browser": "3.0.0",
"@aws-crypto/sha256-js": "3.0.0",
"@aws-sdk/client-sts": "3.525.0",
"@aws-sdk/core": "3.525.0",
"@aws-sdk/middleware-host-header": "3.523.0",
"@aws-sdk/middleware-logger": "3.523.0",
"@aws-sdk/middleware-recursion-detection": "3.523.0",
"@aws-sdk/middleware-user-agent": "3.525.0",
"@aws-sdk/region-config-resolver": "3.525.0",
"@aws-sdk/types": "3.523.0",
"@aws-sdk/util-endpoints": "3.525.0",
"@aws-sdk/util-user-agent-browser": "3.523.0",
"@aws-sdk/util-user-agent-node": "3.525.0",
"@smithy/config-resolver": "^2.1.4",
"@smithy/core": "^1.3.5",
"@smithy/fetch-http-handler": "^2.4.3",
"@smithy/hash-node": "^2.1.3",
"@smithy/invalid-dependency": "^2.1.3",
"@smithy/middleware-content-length": "^2.1.3",
"@smithy/middleware-endpoint": "^2.4.4",
"@smithy/middleware-retry": "^2.1.4",
"@smithy/middleware-serde": "^2.1.3",
"@smithy/middleware-stack": "^2.1.3",
"@smithy/node-config-provider": "^2.2.4",
"@smithy/node-http-handler": "^2.4.1",
"@smithy/protocol-http": "^3.2.1",
"@smithy/smithy-client": "^2.4.2",
"@smithy/types": "^2.10.1",
"@smithy/url-parser": "^2.1.3",
"@smithy/util-base64": "^2.1.1",
"@smithy/util-body-length-browser": "^2.1.1",
"@smithy/util-body-length-node": "^2.2.1",
"@smithy/util-defaults-mode-browser": "^2.1.4",
"@smithy/util-defaults-mode-node": "^2.2.3",
"@smithy/util-endpoints": "^1.1.4",
"@smithy/util-middleware": "^2.1.3",
"@smithy/util-retry": "^2.1.3",
"@smithy/util-utf8": "^2.1.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"@aws-sdk/credential-provider-node": "^3.525.0"
}
},
"node_modules/@aws-sdk/client-sts": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/client-sts/-/client-sts-3.525.0.tgz",
"integrity": "sha512-a8NUGRvO6rkfTZCbMaCsjDjLbERCwIUU9dIywFYcRgbFhkupJ7fSaZz3Het98U51M9ZbTEpaTa3fz0HaJv8VJw==",
"dependencies": {
"@aws-crypto/sha256-browser": "3.0.0",
"@aws-crypto/sha256-js": "3.0.0",
"@aws-sdk/core": "3.525.0",
"@aws-sdk/middleware-host-header": "3.523.0",
"@aws-sdk/middleware-logger": "3.523.0",
"@aws-sdk/middleware-recursion-detection": "3.523.0",
"@aws-sdk/middleware-user-agent": "3.525.0",
"@aws-sdk/region-config-resolver": "3.525.0",
"@aws-sdk/types": "3.523.0",
"@aws-sdk/util-endpoints": "3.525.0",
"@aws-sdk/util-user-agent-browser": "3.523.0",
"@aws-sdk/util-user-agent-node": "3.525.0",
"@smithy/config-resolver": "^2.1.4",
"@smithy/core": "^1.3.5",
"@smithy/fetch-http-handler": "^2.4.3",
"@smithy/hash-node": "^2.1.3",
"@smithy/invalid-dependency": "^2.1.3",
"@smithy/middleware-content-length": "^2.1.3",
"@smithy/middleware-endpoint": "^2.4.4",
"@smithy/middleware-retry": "^2.1.4",
"@smithy/middleware-serde": "^2.1.3",
"@smithy/middleware-stack": "^2.1.3",
"@smithy/node-config-provider": "^2.2.4",
"@smithy/node-http-handler": "^2.4.1",
"@smithy/protocol-http": "^3.2.1",
"@smithy/smithy-client": "^2.4.2",
"@smithy/types": "^2.10.1",
"@smithy/url-parser": "^2.1.3",
"@smithy/util-base64": "^2.1.1",
"@smithy/util-body-length-browser": "^2.1.1",
"@smithy/util-body-length-node": "^2.2.1",
"@smithy/util-defaults-mode-browser": "^2.1.4",
"@smithy/util-defaults-mode-node": "^2.2.3",
"@smithy/util-endpoints": "^1.1.4",
"@smithy/util-middleware": "^2.1.3",
"@smithy/util-retry": "^2.1.3",
"@smithy/util-utf8": "^2.1.1",
"fast-xml-parser": "4.2.5",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"@aws-sdk/credential-provider-node": "^3.525.0"
}
},
"node_modules/@aws-sdk/core": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.525.0.tgz",
"integrity": "sha512-E3LtEtMWCriQOFZpVKpLYzbdw/v2PAOEAMhn2VRRZ1g0/g1TXzQrfhEU2yd8l/vQEJaCJ82ooGGg7YECviBUxA==",
"dependencies": {
"@smithy/core": "^1.3.5",
"@smithy/protocol-http": "^3.2.1",
"@smithy/signature-v4": "^2.1.3",
"@smithy/smithy-client": "^2.4.2",
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-env": {
"version": "3.523.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.523.0.tgz",
"integrity": "sha512-Y6DWdH6/OuMDoNKVzZlNeBc6f1Yjk1lYMjANKpIhMbkRCvLJw/PYZKOZa8WpXbTYdgg9XLjKybnLIb3ww3uuzA==",
"dependencies": {
"@aws-sdk/types": "3.523.0",
"@smithy/property-provider": "^2.1.3",
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-http": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.525.0.tgz",
"integrity": "sha512-RNWQGuSBQZhl3iqklOslUEfQ4br1V3DCPboMpeqFtddUWJV3m2u2extFur9/4Uy+1EHVF120IwZUKtd8dF+ibw==",
"dependencies": {
"@aws-sdk/types": "3.523.0",
"@smithy/fetch-http-handler": "^2.4.3",
"@smithy/node-http-handler": "^2.4.1",
"@smithy/property-provider": "^2.1.3",
"@smithy/protocol-http": "^3.2.1",
"@smithy/smithy-client": "^2.4.2",
"@smithy/types": "^2.10.1",
"@smithy/util-stream": "^2.1.3",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-ini": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.525.0.tgz",
"integrity": "sha512-JDnccfK5JRb9jcgpc9lirL9PyCwGIqY0nKdw3LlX5WL5vTpTG4E1q7rLAlpNh7/tFD1n66Itarfv2tsyHMIqCw==",
"dependencies": {
"@aws-sdk/client-sts": "3.525.0",
"@aws-sdk/credential-provider-env": "3.523.0",
"@aws-sdk/credential-provider-process": "3.523.0",
"@aws-sdk/credential-provider-sso": "3.525.0",
"@aws-sdk/credential-provider-web-identity": "3.525.0",
"@aws-sdk/types": "3.523.0",
"@smithy/credential-provider-imds": "^2.2.3",
"@smithy/property-provider": "^2.1.3",
"@smithy/shared-ini-file-loader": "^2.3.3",
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-node": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.525.0.tgz",
"integrity": "sha512-RJXlO8goGXpnoHQAyrCcJ0QtWEOFa34LSbfdqBIjQX/fwnjUuEmiGdXTV3AZmwYQ7juk49tfBneHbtOP3AGqsQ==",
"dependencies": {
"@aws-sdk/credential-provider-env": "3.523.0",
"@aws-sdk/credential-provider-http": "3.525.0",
"@aws-sdk/credential-provider-ini": "3.525.0",
"@aws-sdk/credential-provider-process": "3.523.0",
"@aws-sdk/credential-provider-sso": "3.525.0",
"@aws-sdk/credential-provider-web-identity": "3.525.0",
"@aws-sdk/types": "3.523.0",
"@smithy/credential-provider-imds": "^2.2.3",
"@smithy/property-provider": "^2.1.3",
"@smithy/shared-ini-file-loader": "^2.3.3",
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-process": {
"version": "3.523.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.523.0.tgz",
"integrity": "sha512-f0LP9KlFmMvPWdKeUKYlZ6FkQAECUeZMmISsv6NKtvPCI9e4O4cLTeR09telwDK8P0HrgcRuZfXM7E30m8re0Q==",
"dependencies": {
"@aws-sdk/types": "3.523.0",
"@smithy/property-provider": "^2.1.3",
"@smithy/shared-ini-file-loader": "^2.3.3",
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-sso": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.525.0.tgz",
"integrity": "sha512-7V7ybtufxdD3plxeIeB6aqHZeFIUlAyPphXIUgXrGY10iNcosL970rQPBeggsohe4gCM6UvY2TfMeEcr+ZE8FA==",
"dependencies": {
"@aws-sdk/client-sso": "3.525.0",
"@aws-sdk/token-providers": "3.525.0",
"@aws-sdk/types": "3.523.0",
"@smithy/property-provider": "^2.1.3",
"@smithy/shared-ini-file-loader": "^2.3.3",
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/credential-provider-web-identity": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.525.0.tgz",
"integrity": "sha512-sAukOjR1oKb2JXG4nPpuBFpSwGUhrrY17PG/xbTy8NAoLLhrqRwnErcLfdTfmj6tH+3094k6ws/Sh8a35ae7fA==",
"dependencies": {
"@aws-sdk/client-sts": "3.525.0",
"@aws-sdk/types": "3.523.0",
"@smithy/property-provider": "^2.1.3",
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-host-header": {
"version": "3.523.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.523.0.tgz",
"integrity": "sha512-4g3q7Ta9sdD9TMUuohBAkbx/e3I/juTqfKi7TPgP+8jxcYX72MOsgemAMHuP6CX27eyj4dpvjH+w4SIVDiDSmg==",
"dependencies": {
"@aws-sdk/types": "3.523.0",
"@smithy/protocol-http": "^3.2.1",
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-logger": {
"version": "3.523.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.523.0.tgz",
"integrity": "sha512-PeDNJNhfiaZx54LBaLTXzUaJ9LXFwDFFIksipjqjvxMafnoVcQwKbkoPUWLe5ytT4nnL1LogD3s55mERFUsnwg==",
"dependencies": {
"@aws-sdk/types": "3.523.0",
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-recursion-detection": {
"version": "3.523.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.523.0.tgz",
"integrity": "sha512-nZ3Vt7ehfSDYnrcg/aAfjjvpdE+61B3Zk68i6/hSUIegT3IH9H1vSW67NDKVp+50hcEfzWwM2HMPXxlzuyFyrw==",
"dependencies": {
"@aws-sdk/types": "3.523.0",
"@smithy/protocol-http": "^3.2.1",
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/middleware-user-agent": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.525.0.tgz",
"integrity": "sha512-4al/6uO+t/QIYXK2OgqzDKQzzLAYJza1vWFS+S0lJ3jLNGyLB5BMU5KqWjDzevYZ4eCnz2Nn7z0FveUTNz8YdQ==",
"dependencies": {
"@aws-sdk/types": "3.523.0",
"@aws-sdk/util-endpoints": "3.525.0",
"@smithy/protocol-http": "^3.2.1",
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/region-config-resolver": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.525.0.tgz",
"integrity": "sha512-8kFqXk6UyKgTMi7N7QlhA6qM4pGPWbiUXqEY2RgUWngtxqNFGeM9JTexZeuavQI+qLLe09VPShPNX71fEDcM6w==",
"dependencies": {
"@aws-sdk/types": "3.523.0",
"@smithy/node-config-provider": "^2.2.4",
"@smithy/types": "^2.10.1",
"@smithy/util-config-provider": "^2.2.1",
"@smithy/util-middleware": "^2.1.3",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/token-providers": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.525.0.tgz",
"integrity": "sha512-puVjbxuK0Dq7PTQ2HdddHy2eQjOH8GZbump74yWJa6JVpRW84LlOcNmP+79x4Kscvz2ldWB8XDFw/pcCiSDe5A==",
"dependencies": {
"@aws-sdk/client-sso-oidc": "3.525.0",
"@aws-sdk/types": "3.523.0",
"@smithy/property-provider": "^2.1.3",
"@smithy/shared-ini-file-loader": "^2.3.3",
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/types": {
"version": "3.523.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.523.0.tgz",
"integrity": "sha512-AqGIu4u+SxPiUuNBp2acCVcq80KDUFjxe6e3cMTvKWTzCbrVk1AXv0dAaJnCmdkWIha6zJDWxpIk/aL4EGhZ9A==",
"dependencies": {
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/util-endpoints": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.525.0.tgz",
"integrity": "sha512-DIW7WWU5tIGkeeKX6NJUyrEIdWMiqjLQG3XBzaUj+ufIENwNjdAHhlD8l2vX7Yr3JZRT6yN/84wBCj7Tw1xd1g==",
"dependencies": {
"@aws-sdk/types": "3.523.0",
"@smithy/types": "^2.10.1",
"@smithy/util-endpoints": "^1.1.4",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/util-locate-window": {
"version": "3.495.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.495.0.tgz",
"integrity": "sha512-MfaPXT0kLX2tQaR90saBT9fWQq2DHqSSJRzW+MZWsmF+y5LGCOhO22ac/2o6TKSQm7h0HRc2GaADqYYYor62yg==",
"dependencies": {
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@aws-sdk/util-user-agent-browser": {
"version": "3.523.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.523.0.tgz",
"integrity": "sha512-6ZRNdGHX6+HQFqTbIA5+i8RWzxFyxsZv8D3soRfpdyWIKkzhSz8IyRKXRciwKBJDaC7OX2jzGE90wxRQft27nA==",
"dependencies": {
"@aws-sdk/types": "3.523.0",
"@smithy/types": "^2.10.1",
"bowser": "^2.11.0",
"tslib": "^2.5.0"
}
},
"node_modules/@aws-sdk/util-user-agent-node": {
"version": "3.525.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.525.0.tgz",
"integrity": "sha512-88Wjt4efyUSBGcyIuh1dvoMqY1k15jpJc5A/3yi67clBQEFsu9QCodQCQPqmRjV3VRcMtBOk+jeCTiUzTY5dRQ==",
"dependencies": {
"@aws-sdk/types": "3.523.0",
"@smithy/node-config-provider": "^2.2.4",
"@smithy/types": "^2.10.1",
"tslib": "^2.5.0"
},
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"aws-crt": ">=1.0.0"
},
"peerDependenciesMeta": {
"aws-crt": {
"optional": true
}
}
},
"node_modules/@aws-sdk/util-utf8-browser": {
"version": "3.259.0",
"resolved": "https://registry.npmjs.org/@aws-sdk/util-utf8-browser/-/util-utf8-browser-3.259.0.tgz",
"integrity": "sha512-UvFa/vR+e19XookZF8RzFZBrw2EUkQWxiBW0yYQAhvk3C+QVGl0H3ouca8LDBlBfQKXwmW3huo/59H8rwb1wJw==",
"dependencies": {
"tslib": "^2.3.1"
}
},
"node_modules/@hapi/accept": {
"version": "6.0.3",
"resolved": "https://registry.npmjs.org/@hapi/accept/-/accept-6.0.3.tgz",
"integrity": "sha512-p72f9k56EuF0n3MwlBNThyVE5PXX40g+aQh+C/xbKrfzahM2Oispv3AXmOIU51t3j77zay1qrX7IIziZXspMlw==",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hoek": "^11.0.2"
}
},
"node_modules/@hapi/ammo": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@hapi/ammo/-/ammo-6.0.1.tgz",
"integrity": "sha512-pmL+nPod4g58kXrMcsGLp05O2jF4P2Q3GiL8qYV7nKYEh3cGf+rV4P5Jyi2Uq0agGhVU63GtaSAfBEZOlrJn9w==",
"dependencies": {
"@hapi/hoek": "^11.0.2"
}
},
"node_modules/@hapi/b64": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@hapi/b64/-/b64-6.0.1.tgz",
"integrity": "sha512-ZvjX4JQReUmBheeCq+S9YavcnMMHWqx3S0jHNXWIM1kQDxB9cyfSycpVvjfrKcIS8Mh5N3hmu/YKo4Iag9g2Kw==",
"dependencies": {
"@hapi/hoek": "^11.0.2"
}
},
"node_modules/@hapi/boom": {
"version": "10.0.1",
"resolved": "https://registry.npmjs.org/@hapi/boom/-/boom-10.0.1.tgz",
"integrity": "sha512-ERcCZaEjdH3OgSJlyjVk8pHIFeus91CjKP3v+MpgBNp5IvGzP2l/bRiD78nqYcKPaZdbKkK5vDBVPd2ohHBlsA==",
"dependencies": {
"@hapi/hoek": "^11.0.2"
}
},
"node_modules/@hapi/bounce": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@hapi/bounce/-/bounce-3.0.1.tgz",
"integrity": "sha512-G+/Pp9c1Ha4FDP+3Sy/Xwg2O4Ahaw3lIZFSX+BL4uWi64CmiETuZPxhKDUD4xBMOUZbBlzvO8HjiK8ePnhBadA==",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hoek": "^11.0.2"
}
},
"node_modules/@hapi/bourne": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-3.0.0.tgz",
"integrity": "sha512-Waj1cwPXJDucOib4a3bAISsKJVb15MKi9IvmTI/7ssVEm6sywXGjVJDhl6/umt1pK1ZS7PacXU3A1PmFKHEZ2w=="
},
"node_modules/@hapi/call": {
"version": "9.0.1",
"resolved": "https://registry.npmjs.org/@hapi/call/-/call-9.0.1.tgz",
"integrity": "sha512-uPojQRqEL1GRZR4xXPqcLMujQGaEpyVPRyBlD8Pp5rqgIwLhtveF9PkixiKru2THXvuN8mUrLeet5fqxKAAMGg==",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hoek": "^11.0.2"
}
},
"node_modules/@hapi/catbox": {
"version": "12.1.1",
"resolved": "https://registry.npmjs.org/@hapi/catbox/-/catbox-12.1.1.tgz",
"integrity": "sha512-hDqYB1J+R0HtZg4iPH3LEnldoaBsar6bYp0EonBmNQ9t5CO+1CqgCul2ZtFveW1ReA5SQuze9GPSU7/aecERhw==",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hoek": "^11.0.2",
"@hapi/podium": "^5.0.0",
"@hapi/validate": "^2.0.1"
}
},
"node_modules/@hapi/catbox-memory": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@hapi/catbox-memory/-/catbox-memory-6.0.1.tgz",
"integrity": "sha512-sVb+/ZxbZIvaMtJfAbdyY+QJUQg9oKTwamXpEg/5xnfG5WbJLTjvEn4kIGKz9pN3ENNbIL/bIdctmHmqi/AdGA==",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hoek": "^11.0.2"
}
},
"node_modules/@hapi/content": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/@hapi/content/-/content-6.0.0.tgz",
"integrity": "sha512-CEhs7j+H0iQffKfe5Htdak5LBOz/Qc8TRh51cF+BFv0qnuph3Em4pjGVzJMkI2gfTDdlJKWJISGWS1rK34POGA==",
"dependencies": {
"@hapi/boom": "^10.0.0"
}
},
"node_modules/@hapi/cryptiles": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@hapi/cryptiles/-/cryptiles-6.0.1.tgz",
"integrity": "sha512-9GM9ECEHfR8lk5ASOKG4+4ZsEzFqLfhiryIJ2ISePVB92OHLp/yne4m+zn7z9dgvM98TLpiFebjDFQ0UHcqxXQ==",
"dependencies": {
"@hapi/boom": "^10.0.1"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@hapi/file": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@hapi/file/-/file-3.0.0.tgz",
"integrity": "sha512-w+lKW+yRrLhJu620jT3y+5g2mHqnKfepreykvdOcl9/6up8GrQQn+l3FRTsjHTKbkbfQFkuksHpdv2EcpKcJ4Q=="
},
"node_modules/@hapi/h2o2": {
"version": "10.0.4",
"resolved": "https://registry.npmjs.org/@hapi/h2o2/-/h2o2-10.0.4.tgz",
"integrity": "sha512-dvD8+Y/Okc0fh0blqaYCLIrcy0+1LqIhMr7hjk8elLQZ9mkw2hKFB9dFKuRfWf+1nvHpGlW+PwccqkdebynQbg==",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hoek": "^11.0.2",
"@hapi/validate": "^2.0.1",
"@hapi/wreck": "^18.0.1"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@hapi/hapi": {
"version": "21.3.3",
"resolved": "https://registry.npmjs.org/@hapi/hapi/-/hapi-21.3.3.tgz",
"integrity": "sha512-6pgwWVl/aSKSNVn86n+mWa06jRqCAKi2adZp/Hti19A0u5x3/6eiKz8UTBPMzfrdGf9WcrYbFBYzWr/qd2s28g==",
"dependencies": {
"@hapi/accept": "^6.0.1",
"@hapi/ammo": "^6.0.1",
"@hapi/boom": "^10.0.1",
"@hapi/bounce": "^3.0.1",
"@hapi/call": "^9.0.1",
"@hapi/catbox": "^12.1.1",
"@hapi/catbox-memory": "^6.0.1",
"@hapi/heavy": "^8.0.1",
"@hapi/hoek": "^11.0.2",
"@hapi/mimos": "^7.0.1",
"@hapi/podium": "^5.0.1",
"@hapi/shot": "^6.0.1",
"@hapi/somever": "^4.1.1",
"@hapi/statehood": "^8.1.1",
"@hapi/subtext": "^8.1.0",
"@hapi/teamwork": "^6.0.0",
"@hapi/topo": "^6.0.1",
"@hapi/validate": "^2.0.1"
},
"engines": {
"node": ">=14.15.0"
}
},
"node_modules/@hapi/heavy": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/@hapi/heavy/-/heavy-8.0.1.tgz",
"integrity": "sha512-gBD/NANosNCOp6RsYTsjo2vhr5eYA3BEuogk6cxY0QdhllkkTaJFYtTXv46xd6qhBVMbMMqcSdtqey+UQU3//w==",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/hoek": "^11.0.2",
"@hapi/validate": "^2.0.1"
}
},
"node_modules/@hapi/hoek": {
"version": "11.0.4",
"resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-11.0.4.tgz",
"integrity": "sha512-PnsP5d4q7289pS2T2EgGz147BFJ2Jpb4yrEdkpz2IhgEUzos1S7HTl7ezWh1yfYzYlj89KzLdCRkqsP6SIryeQ=="
},
"node_modules/@hapi/iron": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/@hapi/iron/-/iron-7.0.1.tgz",
"integrity": "sha512-tEZnrOujKpS6jLKliyWBl3A9PaE+ppuL/+gkbyPPDb/l2KSKQyH4lhMkVb+sBhwN+qaxxlig01JRqB8dk/mPxQ==",
"dependencies": {
"@hapi/b64": "^6.0.1",
"@hapi/boom": "^10.0.1",
"@hapi/bourne": "^3.0.0",
"@hapi/cryptiles": "^6.0.1",
"@hapi/hoek": "^11.0.2"
}
},
"node_modules/@hapi/mimos": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/@hapi/mimos/-/mimos-7.0.1.tgz",
"integrity": "sha512-b79V+BrG0gJ9zcRx1VGcCI6r6GEzzZUgiGEJVoq5gwzuB2Ig9Cax8dUuBauQCFKvl2YWSWyOc8mZ8HDaJOtkew==",
"dependencies": {
"@hapi/hoek": "^11.0.2",
"mime-db": "^1.52.0"
}
},
"node_modules/@hapi/nigel": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@hapi/nigel/-/nigel-5.0.1.tgz",
"integrity": "sha512-uv3dtYuB4IsNaha+tigWmN8mQw/O9Qzl5U26Gm4ZcJVtDdB1AVJOwX3X5wOX+A07qzpEZnOMBAm8jjSqGsU6Nw==",
"dependencies": {
"@hapi/hoek": "^11.0.2",
"@hapi/vise": "^5.0.1"
},
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@hapi/pez": {
"version": "6.1.0",
"resolved": "https://registry.npmjs.org/@hapi/pez/-/pez-6.1.0.tgz",
"integrity": "sha512-+FE3sFPYuXCpuVeHQ/Qag1b45clR2o54QoonE/gKHv9gukxQ8oJJZPR7o3/ydDTK6racnCJXxOyT1T93FCJMIg==",
"dependencies": {
"@hapi/b64": "^6.0.1",
"@hapi/boom": "^10.0.1",
"@hapi/content": "^6.0.0",
"@hapi/hoek": "^11.0.2",
"@hapi/nigel": "^5.0.1"
}
},
"node_modules/@hapi/podium": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@hapi/podium/-/podium-5.0.1.tgz",
"integrity": "sha512-eznFTw6rdBhAijXFIlBOMJJd+lXTvqbrBIS4Iu80r2KTVIo4g+7fLy4NKp/8+UnSt5Ox6mJtAlKBU/Sf5080TQ==",
"dependencies": {
"@hapi/hoek": "^11.0.2",
"@hapi/teamwork": "^6.0.0",
"@hapi/validate": "^2.0.1"
}
},
"node_modules/@hapi/shot": {
"version": "6.0.1",
"resolved": "https://registry.npmjs.org/@hapi/shot/-/shot-6.0.1.tgz",
"integrity": "sha512-s5ynMKZXYoDd3dqPw5YTvOR/vjHvMTxc388+0qL0jZZP1+uwXuUD32o9DuuuLsmTlyXCWi02BJl1pBpwRuUrNA==",
"dependencies": {
"@hapi/hoek": "^11.0.2",
"@hapi/validate": "^2.0.1"
}
},
"node_modules/@hapi/somever": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/@hapi/somever/-/somever-4.1.1.tgz",
"integrity": "sha512-lt3QQiDDOVRatS0ionFDNrDIv4eXz58IibQaZQDOg4DqqdNme8oa0iPWcE0+hkq/KTeBCPtEOjDOBKBKwDumVg==",
"dependencies": {
"@hapi/bounce": "^3.0.1",
"@hapi/hoek": "^11.0.2"
}
},
"node_modules/@hapi/statehood": {
"version": "8.1.1",
"resolved": "https://registry.npmjs.org/@hapi/statehood/-/statehood-8.1.1.tgz",
"integrity": "sha512-YbK7PSVUA59NArAW5Np0tKRoIZ5VNYUicOk7uJmWZF6XyH5gGL+k62w77SIJb0AoAJ0QdGQMCQ/WOGL1S3Ydow==",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/bounce": "^3.0.1",
"@hapi/bourne": "^3.0.0",
"@hapi/cryptiles": "^6.0.1",
"@hapi/hoek": "^11.0.2",
"@hapi/iron": "^7.0.1",
"@hapi/validate": "^2.0.1"
}
},
"node_modules/@hapi/subtext": {
"version": "8.1.0",
"resolved": "https://registry.npmjs.org/@hapi/subtext/-/subtext-8.1.0.tgz",
"integrity": "sha512-PyaN4oSMtqPjjVxLny1k0iYg4+fwGusIhaom9B2StinBclHs7v46mIW706Y+Wo21lcgulGyXbQrmT/w4dus6ww==",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/bourne": "^3.0.0",
"@hapi/content": "^6.0.0",
"@hapi/file": "^3.0.0",
"@hapi/hoek": "^11.0.2",
"@hapi/pez": "^6.1.0",
"@hapi/wreck": "^18.0.1"
}
},
"node_modules/@hapi/teamwork": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/@hapi/teamwork/-/teamwork-6.0.0.tgz",
"integrity": "sha512-05HumSy3LWfXpmJ9cr6HzwhAavrHkJ1ZRCmNE2qJMihdM5YcWreWPfyN0yKT2ZjCM92au3ZkuodjBxOibxM67A==",
"engines": {
"node": ">=14.0.0"
}
},
"node_modules/@hapi/topo": {
"version": "6.0.2",
"resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-6.0.2.tgz",
"integrity": "sha512-KR3rD5inZbGMrHmgPxsJ9dbi6zEK+C3ZwUwTa+eMwWLz7oijWUTWD2pMSNNYJAU6Qq+65NkxXjqHr/7LM2Xkqg==",
"dependencies": {
"@hapi/hoek": "^11.0.2"
}
},
"node_modules/@hapi/validate": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@hapi/validate/-/validate-2.0.1.tgz",
"integrity": "sha512-NZmXRnrSLK8MQ9y/CMqE9WSspgB9xA41/LlYR0k967aSZebWr4yNrpxIbov12ICwKy4APSlWXZga9jN5p6puPA==",
"dependencies": {
"@hapi/hoek": "^11.0.2",
"@hapi/topo": "^6.0.1"
}
},
"node_modules/@hapi/vise": {
"version": "5.0.1",
"resolved": "https://registry.npmjs.org/@hapi/vise/-/vise-5.0.1.tgz",
"integrity": "sha512-XZYWzzRtINQLedPYlIkSkUr7m5Ddwlu99V9elh8CSygXstfv3UnWIXT0QD+wmR0VAG34d2Vx3olqcEhRRoTu9A==",
"dependencies": {
"@hapi/hoek": "^11.0.2"
}
},
"node_modules/@hapi/wreck": {
"version": "18.0.1",
"resolved": "https://registry.npmjs.org/@hapi/wreck/-/wreck-18.0.1.tgz",
"integrity": "sha512-OLHER70+rZxvDl75xq3xXOfd3e8XIvz8fWY0dqg92UvhZ29zo24vQgfqgHSYhB5ZiuFpSLeriOisAlxAo/1jWg==",
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/bourne": "^3.0.0",
"@hapi/hoek": "^11.0.2"
}
},
"node_modules/@kwsites/file-exists": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz",
"integrity": "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==",
"dependencies": {
"debug": "^4.1.1"
}
},
"node_modules/@kwsites/promise-deferred": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz",
"integrity": "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw=="
},
"node_modules/@lumigo/tracer": {
"version": "1.79.4",
"resolved": "https://registry.npmjs.org/@lumigo/tracer/-/tracer-1.79.4.tgz",
"integrity": "sha512-0E2AYmK8I9wpLNPyTtB7INcfTO5ZvrtKrc5E8Cr6XM5cTRc855ErbOJl90XRMWt4tyfwIW3k4TiQzdifkLgrPA==",
"dependencies": {
"agentkeepalive": "^4.1.4",
"axios": "0.24.0",
"shimmer": "1.2.1",
"utf8": "^3.0.0"
}
},
"node_modules/@lumigo/tracer/node_modules/axios": {
"version": "0.24.0",
"resolved": "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz",
"integrity": "sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==",
"dependencies": {
"follow-redirects": "^1.14.4"
}
},
"node_modules/@nodelib/fs.scandir": {
"version": "2.1.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
"integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
"dependencies": {
"@nodelib/fs.stat": "2.0.5",
"run-parallel": "^1.1.9"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.stat": {
"version": "2.0.5",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
"integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
"engines": {
"node": ">= 8"
}
},
"node_modules/@nodelib/fs.walk": {
"version": "1.2.8",
"resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
"integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
"dependencies": {
"@nodelib/fs.scandir": "2.1.5",
"fastq": "^1.6.0"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/@serverless/dashboard-plugin": {
"version": "6.2.3",
"resolved": "https://registry.npmjs.org/@serverless/dashboard-plugin/-/dashboard-plugin-6.2.3.tgz",
"integrity": "sha512-iTZhpZbiVl6G2AyfgoqxemqqpG4pUceWys3GsyZtjimnfnGd2UFBOMVUMTavLhYia7lQc4kQVuXQ+afLlkg+pQ==",
"dependencies": {
"@serverless/event-mocks": "^1.1.1",
"@serverless/platform-client": "^4.3.2",
"@serverless/utils": "^6.8.2",