-
Notifications
You must be signed in to change notification settings - Fork 26
/
package-lock.json
15402 lines (15402 loc) · 612 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": "acronym-decoder-chrome-angular",
"version": "0.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "acronym-decoder-chrome-angular",
"version": "0.0.0",
"license": "MIT",
"dependencies": {
"@angular/animations": "^16.2.12",
"@angular/cdk": "^16.2.14",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/flex-layout": "^15.0.0-beta.42",
"@angular/forms": "^16.2.12",
"@angular/material": "^16.2.14",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"@ng-bootstrap/ng-bootstrap": "^15.1.1",
"@popperjs/core": "^2.11.8",
"@types/universal-analytics": "^0.4.5",
"bootstrap": "^5.3.1",
"core-js": "^3.37.1",
"crypto-browserify": "^3.12.0",
"rxjs": "^7.5.4",
"stream-http": "^3.2.0",
"universal-analytics": "^0.5.3",
"zone.js": "^0.14.6"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^16.0.1",
"@angular-devkit/build-angular": "^16.2.16",
"@angular/cli": "^16.2.16",
"@angular/compiler-cli": "^16.2.12",
"@angular/language-service": "^16.2.12",
"@types/chrome": "^0.0.178",
"@types/jasmine": "^3.10.3",
"@types/jasminewd2": "^2.0.10",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.21",
"codelyzer": "^6.0.2",
"https-browserify": "^1.0.0",
"jasmine-core": "^4.0.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"protractor": "^7.0.0",
"ts-loader": "^9.2.6",
"ts-node": "^10.5.0",
"tslint": "^6.1.3",
"typescript": "^4.5.5",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2"
}
},
"node_modules/@ampproject/remapping": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz",
"integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==",
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.0",
"@jridgewell/trace-mapping": "^0.3.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@angular-builders/custom-webpack": {
"version": "16.0.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular-builders/custom-webpack/-/custom-webpack-16.0.1.tgz",
"integrity": "sha512-C6INC8UOYDcp8LJwNhE0m66yp+nZX50JdgGI8oRn7fqw3gO58qhDgXrR/8BCrSeC8eOx8WxSuvBJ6u+9dozhyw==",
"dev": true,
"dependencies": {
"@angular-devkit/architect": ">=0.1600.0 < 0.1700.0",
"@angular-devkit/build-angular": "^16.0.0",
"@angular-devkit/core": "^16.0.0",
"lodash": "^4.17.15",
"ts-node": "^10.0.0",
"tsconfig-paths": "^4.1.0",
"webpack-merge": "^5.7.3"
},
"engines": {
"node": "^14.20.0 || ^16.13.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/compiler-cli": "^16.0.0"
}
},
"node_modules/@angular-devkit/architect": {
"version": "0.1602.16",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular-devkit/architect/-/architect-0.1602.16.tgz",
"integrity": "sha512-aWEeGU4UlbrSKpcAZsldVNxNXAWEeu9hM2BPk77GftbRC8PBMWpgYyrJWTz2ryn8aSmGKT3T8OyBH4gZA/667w==",
"dev": true,
"dependencies": {
"@angular-devkit/core": "16.2.16",
"rxjs": "7.8.1"
},
"engines": {
"node": "^16.14.0 || >=18.10.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
}
},
"node_modules/@angular-devkit/build-angular": {
"version": "16.2.16",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular-devkit/build-angular/-/build-angular-16.2.16.tgz",
"integrity": "sha512-gEni21kza41xaRnVWP1sMuiWHS/rdoym5FEEGDo9PG60LwRC4lekIgT09GpTlmMu007UEfo0ccQnGroD6+MqWg==",
"dev": true,
"dependencies": {
"@ampproject/remapping": "2.2.1",
"@angular-devkit/architect": "0.1602.16",
"@angular-devkit/build-webpack": "0.1602.16",
"@angular-devkit/core": "16.2.16",
"@babel/core": "7.22.9",
"@babel/generator": "7.22.9",
"@babel/helper-annotate-as-pure": "7.22.5",
"@babel/helper-split-export-declaration": "7.22.6",
"@babel/plugin-proposal-async-generator-functions": "7.20.7",
"@babel/plugin-transform-async-to-generator": "7.22.5",
"@babel/plugin-transform-runtime": "7.22.9",
"@babel/preset-env": "7.22.9",
"@babel/runtime": "7.22.6",
"@babel/template": "7.22.5",
"@discoveryjs/json-ext": "0.5.7",
"@ngtools/webpack": "16.2.16",
"@vitejs/plugin-basic-ssl": "1.0.1",
"ansi-colors": "4.1.3",
"autoprefixer": "10.4.14",
"babel-loader": "9.1.3",
"babel-plugin-istanbul": "6.1.1",
"browserslist": "^4.21.5",
"chokidar": "3.5.3",
"copy-webpack-plugin": "11.0.0",
"critters": "0.0.20",
"css-loader": "6.8.1",
"esbuild-wasm": "0.18.17",
"fast-glob": "3.3.1",
"guess-parser": "0.4.22",
"https-proxy-agent": "5.0.1",
"inquirer": "8.2.4",
"jsonc-parser": "3.2.0",
"karma-source-map-support": "1.4.0",
"less": "4.1.3",
"less-loader": "11.1.0",
"license-webpack-plugin": "4.0.2",
"loader-utils": "3.2.1",
"magic-string": "0.30.1",
"mini-css-extract-plugin": "2.7.6",
"mrmime": "1.0.1",
"open": "8.4.2",
"ora": "5.4.1",
"parse5-html-rewriting-stream": "7.0.0",
"picomatch": "2.3.1",
"piscina": "4.0.0",
"postcss": "8.4.31",
"postcss-loader": "7.3.3",
"resolve-url-loader": "5.0.0",
"rxjs": "7.8.1",
"sass": "1.64.1",
"sass-loader": "13.3.2",
"semver": "7.5.4",
"source-map-loader": "4.0.1",
"source-map-support": "0.5.21",
"terser": "5.19.2",
"text-table": "0.2.0",
"tree-kill": "1.2.2",
"tslib": "2.6.1",
"vite": "4.5.5",
"webpack": "5.94.0",
"webpack-dev-middleware": "6.1.2",
"webpack-dev-server": "4.15.1",
"webpack-merge": "5.9.0",
"webpack-subresource-integrity": "5.1.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
},
"optionalDependencies": {
"esbuild": "0.18.17"
},
"peerDependencies": {
"@angular/compiler-cli": "^16.0.0",
"@angular/localize": "^16.0.0",
"@angular/platform-server": "^16.0.0",
"@angular/service-worker": "^16.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"karma": "^6.3.0",
"ng-packagr": "^16.0.0",
"protractor": "^7.0.0",
"tailwindcss": "^2.0.0 || ^3.0.0",
"typescript": ">=4.9.3 <5.2"
},
"peerDependenciesMeta": {
"@angular/localize": {
"optional": true
},
"@angular/platform-server": {
"optional": true
},
"@angular/service-worker": {
"optional": true
},
"jest": {
"optional": true
},
"jest-environment-jsdom": {
"optional": true
},
"karma": {
"optional": true
},
"ng-packagr": {
"optional": true
},
"protractor": {
"optional": true
},
"tailwindcss": {
"optional": true
}
}
},
"node_modules/@angular-devkit/build-angular/node_modules/@babel/core": {
"version": "7.22.9",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/core/-/core-7.22.9.tgz",
"integrity": "sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==",
"dev": true,
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.22.5",
"@babel/generator": "^7.22.9",
"@babel/helper-compilation-targets": "^7.22.9",
"@babel/helper-module-transforms": "^7.22.9",
"@babel/helpers": "^7.22.6",
"@babel/parser": "^7.22.7",
"@babel/template": "^7.22.5",
"@babel/traverse": "^7.22.8",
"@babel/types": "^7.22.5",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.2",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@angular-devkit/build-webpack": {
"version": "0.1602.16",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular-devkit/build-webpack/-/build-webpack-0.1602.16.tgz",
"integrity": "sha512-b99Sj0btI0C2GIfzoyP8epDMIOLqSTqXOxw6klGtBLaGZfM5KAxqFzekXh8cAnHxWCj20WdNhezS1eUTLOkaIA==",
"dev": true,
"dependencies": {
"@angular-devkit/architect": "0.1602.16",
"rxjs": "7.8.1"
},
"engines": {
"node": "^16.14.0 || >=18.10.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
},
"peerDependencies": {
"webpack": "^5.30.0",
"webpack-dev-server": "^4.0.0"
}
},
"node_modules/@angular-devkit/core": {
"version": "16.2.16",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular-devkit/core/-/core-16.2.16.tgz",
"integrity": "sha512-5xHs9JFmp78sydrOAg0UGErxfMVv5c2f3RXoikS7eBOOXTWEi5pmnOkOvSJ3loQFGVs3Y7i+u02G3VrF5ZxOrA==",
"dev": true,
"dependencies": {
"ajv": "8.12.0",
"ajv-formats": "2.1.1",
"jsonc-parser": "3.2.0",
"picomatch": "2.3.1",
"rxjs": "7.8.1",
"source-map": "0.7.4"
},
"engines": {
"node": "^16.14.0 || >=18.10.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
},
"peerDependencies": {
"chokidar": "^3.5.2"
},
"peerDependenciesMeta": {
"chokidar": {
"optional": true
}
}
},
"node_modules/@angular-devkit/schematics": {
"version": "16.2.16",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular-devkit/schematics/-/schematics-16.2.16.tgz",
"integrity": "sha512-pF6fdtJh6yLmgA7Gs45JIdxPl2MsTAhYcZIMrX1a6ID64dfwtF0MP8fDE6vrWInV1zXbzzf7l7PeKuqVtTSzKg==",
"dev": true,
"dependencies": {
"@angular-devkit/core": "16.2.16",
"jsonc-parser": "3.2.0",
"magic-string": "0.30.1",
"ora": "5.4.1",
"rxjs": "7.8.1"
},
"engines": {
"node": "^16.14.0 || >=18.10.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
}
},
"node_modules/@angular/animations": {
"version": "16.2.12",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular/animations/-/animations-16.2.12.tgz",
"integrity": "sha512-MD0ElviEfAJY8qMOd6/jjSSvtqER2RDAi0lxe6EtUacC1DHCYkaPrKW4vLqY+tmZBg1yf+6n+uS77pXcHHcA3w==",
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/core": "16.2.12"
}
},
"node_modules/@angular/cdk": {
"version": "16.2.14",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular/cdk/-/cdk-16.2.14.tgz",
"integrity": "sha512-n6PrGdiVeSTEmM/HEiwIyg6YQUUymZrb5afaNLGFRM5YL0Y8OBqd+XhCjb0OfD/AfgCUtedVEPwNqrfW8KzgGw==",
"dependencies": {
"tslib": "^2.3.0"
},
"optionalDependencies": {
"parse5": "^7.1.2"
},
"peerDependencies": {
"@angular/common": "^16.0.0 || ^17.0.0",
"@angular/core": "^16.0.0 || ^17.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/cli": {
"version": "16.2.16",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular/cli/-/cli-16.2.16.tgz",
"integrity": "sha512-aqfNYZ45ndrf36i+7AhQ9R8BCm025j7TtYaUmvvjT4LwiUg6f6KtlZPB/ivBlXmd1g9oXqW4advL0AIi8A/Ozg==",
"dev": true,
"dependencies": {
"@angular-devkit/architect": "0.1602.16",
"@angular-devkit/core": "16.2.16",
"@angular-devkit/schematics": "16.2.16",
"@schematics/angular": "16.2.16",
"@yarnpkg/lockfile": "1.1.0",
"ansi-colors": "4.1.3",
"ini": "4.1.1",
"inquirer": "8.2.4",
"jsonc-parser": "3.2.0",
"npm-package-arg": "10.1.0",
"npm-pick-manifest": "8.0.1",
"open": "8.4.2",
"ora": "5.4.1",
"pacote": "15.2.0",
"resolve": "1.22.2",
"semver": "7.5.4",
"symbol-observable": "4.0.0",
"yargs": "17.7.2"
},
"bin": {
"ng": "bin/ng.js"
},
"engines": {
"node": "^16.14.0 || >=18.10.0",
"npm": "^6.11.0 || ^7.5.6 || >=8.0.0",
"yarn": ">= 1.13.0"
}
},
"node_modules/@angular/common": {
"version": "16.2.12",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular/common/-/common-16.2.12.tgz",
"integrity": "sha512-B+WY/cT2VgEaz9HfJitBmgdk4I333XG/ybC98CMC4Wz8E49T8yzivmmxXB3OD6qvjcOB6ftuicl6WBqLbZNg2w==",
"license": "MIT",
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/core": "16.2.12",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/compiler": {
"version": "16.2.12",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular/compiler/-/compiler-16.2.12.tgz",
"integrity": "sha512-6SMXUgSVekGM7R6l1Z9rCtUGtlg58GFmgbpMCsGf+VXxP468Njw8rjT2YZkf5aEPxEuRpSHhDYjqz7n14cwCXQ==",
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/core": "16.2.12"
},
"peerDependenciesMeta": {
"@angular/core": {
"optional": true
}
}
},
"node_modules/@angular/compiler-cli": {
"version": "16.2.12",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular/compiler-cli/-/compiler-cli-16.2.12.tgz",
"integrity": "sha512-pWSrr152562ujh6lsFZR8NfNc5Ljj+zSTQO44DsuB0tZjwEpnRcjJEgzuhGXr+CoiBf+jTSPZKemtSktDk5aaA==",
"dependencies": {
"@babel/core": "7.23.2",
"@jridgewell/sourcemap-codec": "^1.4.14",
"chokidar": "^3.0.0",
"convert-source-map": "^1.5.1",
"reflect-metadata": "^0.1.2",
"semver": "^7.0.0",
"tslib": "^2.3.0",
"yargs": "^17.2.1"
},
"bin": {
"ng-xi18n": "bundles/src/bin/ng_xi18n.js",
"ngc": "bundles/src/bin/ngc.js",
"ngcc": "bundles/ngcc/index.js"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/compiler": "16.2.12",
"typescript": ">=4.9.3 <5.2"
}
},
"node_modules/@angular/compiler-cli/node_modules/@babel/core": {
"version": "7.23.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/core/-/core-7.23.2.tgz",
"integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==",
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.22.13",
"@babel/generator": "^7.23.0",
"@babel/helper-compilation-targets": "^7.22.15",
"@babel/helper-module-transforms": "^7.23.0",
"@babel/helpers": "^7.23.2",
"@babel/parser": "^7.23.0",
"@babel/template": "^7.22.15",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.23.0",
"convert-source-map": "^2.0.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.3",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@angular/compiler-cli/node_modules/@babel/core/node_modules/convert-source-map": {
"version": "2.0.0",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/convert-source-map/-/convert-source-map-2.0.0.tgz",
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg=="
},
"node_modules/@angular/compiler-cli/node_modules/@babel/generator": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/generator/-/generator-7.25.7.tgz",
"integrity": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==",
"dependencies": {
"@babel/types": "^7.25.7",
"@jridgewell/gen-mapping": "^0.3.5",
"@jridgewell/trace-mapping": "^0.3.25",
"jsesc": "^3.0.2"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@angular/compiler-cli/node_modules/@babel/template": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/template/-/template-7.25.7.tgz",
"integrity": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==",
"dependencies": {
"@babel/code-frame": "^7.25.7",
"@babel/parser": "^7.25.7",
"@babel/types": "^7.25.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@angular/compiler-cli/node_modules/jsesc": {
"version": "3.0.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/jsesc/-/jsesc-3.0.2.tgz",
"integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==",
"bin": {
"jsesc": "bin/jsesc"
},
"engines": {
"node": ">=6"
}
},
"node_modules/@angular/core": {
"version": "16.2.12",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular/core/-/core-16.2.12.tgz",
"integrity": "sha512-GLLlDeke/NjroaLYOks0uyzFVo6HyLl7VOm0K1QpLXnYvW63W9Ql/T3yguRZa7tRkOAeFZ3jw+1wnBD4O8MoUA==",
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"rxjs": "^6.5.3 || ^7.4.0",
"zone.js": "~0.13.0"
}
},
"node_modules/@angular/flex-layout": {
"version": "15.0.0-beta.42",
"resolved": "https://registry.npmjs.org/@angular/flex-layout/-/flex-layout-15.0.0-beta.42.tgz",
"integrity": "sha512-cTAPVMMxnyIFwpZwdq0PL5mdP9Qh+R8MB7ZBezVaN3Rz2fRrkagzKpLvPX3TFzepXrvHBdpKsU4b8u+NxEC/6g==",
"deprecated": "This package has been deprecated. Please see https://blog.angular.io/modern-css-in-angular-layouts-4a259dca9127",
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/cdk": ">=15.0.0",
"@angular/common": ">=15.0.2",
"@angular/core": ">=15.0.2",
"@angular/platform-browser": ">=15.0.2",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/forms": {
"version": "16.2.12",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular/forms/-/forms-16.2.12.tgz",
"integrity": "sha512-1Eao89hlBgLR3v8tU91vccn21BBKL06WWxl7zLpQmG6Hun+2jrThgOE4Pf3os4fkkbH4Apj0tWL2fNIWe/blbw==",
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/common": "16.2.12",
"@angular/core": "16.2.12",
"@angular/platform-browser": "16.2.12",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/language-service": {
"version": "16.2.12",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular/language-service/-/language-service-16.2.12.tgz",
"integrity": "sha512-sZwB+ZEjChx9EYcqPaS4OnhC/q5RcedZjIdM9mCxuU/MtseURRYRI/8Hnm1RHo9qyc5PmsQpg7p9Vp/5hXLUjw==",
"dev": true,
"engines": {
"node": "^16.14.0 || >=18.10.0"
}
},
"node_modules/@angular/localize": {
"version": "16.1.6",
"resolved": "https://registry.npmjs.org/@angular/localize/-/localize-16.1.6.tgz",
"integrity": "sha512-DNcY2N6OXNe/SFqupEggGFSnKgKJSHGMN+1qIpadG7cLJitAJS1Z6yh57+sqOJQT8LPP2qm53ab+NF0tib45tg==",
"peer": true,
"dependencies": {
"@babel/core": "7.22.5",
"fast-glob": "3.3.0",
"yargs": "^17.2.1"
},
"bin": {
"localize-extract": "tools/bundles/src/extract/cli.js",
"localize-migrate": "tools/bundles/src/migrate/cli.js",
"localize-translate": "tools/bundles/src/translate/cli.js"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/compiler": "16.1.6",
"@angular/compiler-cli": "16.1.6"
}
},
"node_modules/@angular/localize/node_modules/fast-glob": {
"version": "3.3.0",
"resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.0.tgz",
"integrity": "sha512-ChDuvbOypPuNjO8yIDf36x7BlZX1smcUMTTcyoIjycexOxd6DFsKsg21qVBzEmr3G7fUKIRy2/psii+CIUt7FA==",
"peer": true,
"dependencies": {
"@nodelib/fs.stat": "^2.0.2",
"@nodelib/fs.walk": "^1.2.3",
"glob-parent": "^5.1.2",
"merge2": "^1.3.0",
"micromatch": "^4.0.4"
},
"engines": {
"node": ">=8.6.0"
}
},
"node_modules/@angular/material": {
"version": "16.2.14",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular/material/-/material-16.2.14.tgz",
"integrity": "sha512-zQIxUb23elPfiIvddqkIDYqQhAHa9ZwMblfbv+ug8bxr4D0Dw360jIarxCgMjAcLj7Ccl3GBqZMUnVeM6cjthw==",
"dependencies": {
"@material/animation": "15.0.0-canary.bc9ae6c9c.0",
"@material/auto-init": "15.0.0-canary.bc9ae6c9c.0",
"@material/banner": "15.0.0-canary.bc9ae6c9c.0",
"@material/base": "15.0.0-canary.bc9ae6c9c.0",
"@material/button": "15.0.0-canary.bc9ae6c9c.0",
"@material/card": "15.0.0-canary.bc9ae6c9c.0",
"@material/checkbox": "15.0.0-canary.bc9ae6c9c.0",
"@material/chips": "15.0.0-canary.bc9ae6c9c.0",
"@material/circular-progress": "15.0.0-canary.bc9ae6c9c.0",
"@material/data-table": "15.0.0-canary.bc9ae6c9c.0",
"@material/density": "15.0.0-canary.bc9ae6c9c.0",
"@material/dialog": "15.0.0-canary.bc9ae6c9c.0",
"@material/dom": "15.0.0-canary.bc9ae6c9c.0",
"@material/drawer": "15.0.0-canary.bc9ae6c9c.0",
"@material/elevation": "15.0.0-canary.bc9ae6c9c.0",
"@material/fab": "15.0.0-canary.bc9ae6c9c.0",
"@material/feature-targeting": "15.0.0-canary.bc9ae6c9c.0",
"@material/floating-label": "15.0.0-canary.bc9ae6c9c.0",
"@material/form-field": "15.0.0-canary.bc9ae6c9c.0",
"@material/icon-button": "15.0.0-canary.bc9ae6c9c.0",
"@material/image-list": "15.0.0-canary.bc9ae6c9c.0",
"@material/layout-grid": "15.0.0-canary.bc9ae6c9c.0",
"@material/line-ripple": "15.0.0-canary.bc9ae6c9c.0",
"@material/linear-progress": "15.0.0-canary.bc9ae6c9c.0",
"@material/list": "15.0.0-canary.bc9ae6c9c.0",
"@material/menu": "15.0.0-canary.bc9ae6c9c.0",
"@material/menu-surface": "15.0.0-canary.bc9ae6c9c.0",
"@material/notched-outline": "15.0.0-canary.bc9ae6c9c.0",
"@material/radio": "15.0.0-canary.bc9ae6c9c.0",
"@material/ripple": "15.0.0-canary.bc9ae6c9c.0",
"@material/rtl": "15.0.0-canary.bc9ae6c9c.0",
"@material/segmented-button": "15.0.0-canary.bc9ae6c9c.0",
"@material/select": "15.0.0-canary.bc9ae6c9c.0",
"@material/shape": "15.0.0-canary.bc9ae6c9c.0",
"@material/slider": "15.0.0-canary.bc9ae6c9c.0",
"@material/snackbar": "15.0.0-canary.bc9ae6c9c.0",
"@material/switch": "15.0.0-canary.bc9ae6c9c.0",
"@material/tab": "15.0.0-canary.bc9ae6c9c.0",
"@material/tab-bar": "15.0.0-canary.bc9ae6c9c.0",
"@material/tab-indicator": "15.0.0-canary.bc9ae6c9c.0",
"@material/tab-scroller": "15.0.0-canary.bc9ae6c9c.0",
"@material/textfield": "15.0.0-canary.bc9ae6c9c.0",
"@material/theme": "15.0.0-canary.bc9ae6c9c.0",
"@material/tooltip": "15.0.0-canary.bc9ae6c9c.0",
"@material/top-app-bar": "15.0.0-canary.bc9ae6c9c.0",
"@material/touch-target": "15.0.0-canary.bc9ae6c9c.0",
"@material/typography": "15.0.0-canary.bc9ae6c9c.0",
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/animations": "^16.0.0 || ^17.0.0",
"@angular/cdk": "16.2.14",
"@angular/common": "^16.0.0 || ^17.0.0",
"@angular/core": "^16.0.0 || ^17.0.0",
"@angular/forms": "^16.0.0 || ^17.0.0",
"@angular/platform-browser": "^16.0.0 || ^17.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@angular/platform-browser": {
"version": "16.2.12",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular/platform-browser/-/platform-browser-16.2.12.tgz",
"integrity": "sha512-NnH7ju1iirmVEsUq432DTm0nZBGQsBrU40M3ZeVHMQ2subnGiyUs3QyzDz8+VWLL/T5xTxWLt9BkDn65vgzlIQ==",
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/animations": "16.2.12",
"@angular/common": "16.2.12",
"@angular/core": "16.2.12"
},
"peerDependenciesMeta": {
"@angular/animations": {
"optional": true
}
}
},
"node_modules/@angular/platform-browser-dynamic": {
"version": "16.2.12",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular/platform-browser-dynamic/-/platform-browser-dynamic-16.2.12.tgz",
"integrity": "sha512-ya54jerNgreCVAR278wZavwjrUWImMr2F8yM5n9HBvsMBbFaAQ83anwbOEiHEF2BlR+gJiEBLfpuPRMw20pHqw==",
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/common": "16.2.12",
"@angular/compiler": "16.2.12",
"@angular/core": "16.2.12",
"@angular/platform-browser": "16.2.12"
}
},
"node_modules/@angular/router": {
"version": "16.2.12",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@angular/router/-/router-16.2.12.tgz",
"integrity": "sha512-aU6QnYSza005V9P3W6PpkieL56O0IHps96DjqI1RS8yOJUl3THmokqYN4Fm5+HXy4f390FN9i6ftadYQDKeWmA==",
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": "^16.14.0 || >=18.10.0"
},
"peerDependencies": {
"@angular/common": "16.2.12",
"@angular/core": "16.2.12",
"@angular/platform-browser": "16.2.12",
"rxjs": "^6.5.3 || ^7.4.0"
}
},
"node_modules/@assemblyscript/loader": {
"version": "0.10.1",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@assemblyscript/loader/-/loader-0.10.1.tgz",
"integrity": "sha512-H71nDOOL8Y7kWRLqf6Sums+01Q5msqBW2KhDUTemh1tvY04eSkSXrK0uj/4mmY0Xr16/3zyZmsrxN7CKuRbNRg==",
"dev": true
},
"node_modules/@babel/code-frame": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/code-frame/-/code-frame-7.25.7.tgz",
"integrity": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==",
"dependencies": {
"@babel/highlight": "^7.25.7",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
"version": "7.25.8",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/compat-data/-/compat-data-7.25.8.tgz",
"integrity": "sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.22.5.tgz",
"integrity": "sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==",
"dependencies": {
"@ampproject/remapping": "^2.2.0",
"@babel/code-frame": "^7.22.5",
"@babel/generator": "^7.22.5",
"@babel/helper-compilation-targets": "^7.22.5",
"@babel/helper-module-transforms": "^7.22.5",
"@babel/helpers": "^7.22.5",
"@babel/parser": "^7.22.5",
"@babel/template": "^7.22.5",
"@babel/traverse": "^7.22.5",
"@babel/types": "^7.22.5",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.2",
"semver": "^6.3.0"
},
"engines": {
"node": ">=6.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/babel"
}
},
"node_modules/@babel/generator": {
"version": "7.22.9",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/generator/-/generator-7.22.9.tgz",
"integrity": "sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==",
"dependencies": {
"@babel/types": "^7.22.5",
"@jridgewell/gen-mapping": "^0.3.2",
"@jridgewell/trace-mapping": "^0.3.17",
"jsesc": "^2.5.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-annotate-as-pure": {
"version": "7.22.5",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz",
"integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==",
"dev": true,
"dependencies": {
"@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-builder-binary-assignment-operator-visitor": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.25.7.tgz",
"integrity": "sha512-12xfNeKNH7jubQNm7PAkzlLwEmCs1tfuX3UjIw6vP6QXi+leKh6+LyC/+Ed4EIQermwd58wsyh070yjDHFlNGg==",
"dev": true,
"dependencies": {
"@babel/traverse": "^7.25.7",
"@babel/types": "^7.25.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.7.tgz",
"integrity": "sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==",
"dependencies": {
"@babel/compat-data": "^7.25.7",
"@babel/helper-validator-option": "^7.25.7",
"browserslist": "^4.24.0",
"lru-cache": "^5.1.1",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-create-class-features-plugin": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.7.tgz",
"integrity": "sha512-bD4WQhbkx80mAyj/WCm4ZHcF4rDxkoLFO6ph8/5/mQ3z4vAzltQXAmbc7GvVJx5H+lk5Mi5EmbTeox5nMGCsbw==",
"dev": true,
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.25.7",
"@babel/helper-member-expression-to-functions": "^7.25.7",
"@babel/helper-optimise-call-expression": "^7.25.7",
"@babel/helper-replace-supers": "^7.25.7",
"@babel/helper-skip-transparent-expression-wrappers": "^7.25.7",
"@babel/traverse": "^7.25.7",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/helper-annotate-as-pure": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.7.tgz",
"integrity": "sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==",
"dev": true,
"dependencies": {
"@babel/types": "^7.25.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-create-regexp-features-plugin": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.25.7.tgz",
"integrity": "sha512-byHhumTj/X47wJ6C6eLpK7wW/WBEcnUeb7D0FNc/jFQnQVw7DOso3Zz5u9x/zLrFVkHa89ZGDbkAa1D54NdrCQ==",
"dev": true,
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.25.7",
"regexpu-core": "^6.1.1",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-create-regexp-features-plugin/node_modules/@babel/helper-annotate-as-pure": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.7.tgz",
"integrity": "sha512-4xwU8StnqnlIhhioZf1tqnVWeQ9pvH/ujS8hRfw/WOza+/a+1qv69BWNy+oY231maTCWgKWhfBU7kDpsds6zAA==",
"dev": true,
"dependencies": {
"@babel/types": "^7.25.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-define-polyfill-provider": {
"version": "0.6.2",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz",
"integrity": "sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==",
"dev": true,
"dependencies": {
"@babel/helper-compilation-targets": "^7.22.6",
"@babel/helper-plugin-utils": "^7.22.5",
"debug": "^4.1.1",
"lodash.debounce": "^4.0.8",
"resolve": "^1.14.2"
},
"peerDependencies": {
"@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0"
}
},
"node_modules/@babel/helper-environment-visitor": {
"version": "7.22.20",
"resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz",
"integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-member-expression-to-functions": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.7.tgz",
"integrity": "sha512-O31Ssjd5K6lPbTX9AAYpSKrZmLeagt9uwschJd+Ixo6QiRyfpvgtVQp8qrDR9UNFjZ8+DO34ZkdrN+BnPXemeA==",
"dev": true,
"dependencies": {
"@babel/traverse": "^7.25.7",
"@babel/types": "^7.25.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-module-imports/-/helper-module-imports-7.25.7.tgz",
"integrity": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==",
"dependencies": {
"@babel/traverse": "^7.25.7",
"@babel/types": "^7.25.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-module-transforms/-/helper-module-transforms-7.25.7.tgz",
"integrity": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==",
"dependencies": {
"@babel/helper-module-imports": "^7.25.7",
"@babel/helper-simple-access": "^7.25.7",
"@babel/helper-validator-identifier": "^7.25.7",
"@babel/traverse": "^7.25.7"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-optimise-call-expression": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.7.tgz",
"integrity": "sha512-VAwcwuYhv/AT+Vfr28c9y6SHzTan1ryqrydSTFGjU0uDJHw3uZ+PduI8plCLkRsDnqK2DMEDmwrOQRsK/Ykjng==",
"dev": true,
"dependencies": {
"@babel/types": "^7.25.7"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-plugin-utils/-/helper-plugin-utils-7.25.7.tgz",
"integrity": "sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-remap-async-to-generator": {
"version": "7.25.7",
"resolved": "https://artifactory.cloud.capitalone.com:443/artifactory/api/npm/npm-internalfacing/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.7.tgz",
"integrity": "sha512-kRGE89hLnPfcz6fTrlNU+uhgcwv0mBE4Gv3P9Ke9kLVJYpi4AMVVEElXvB5CabrPZW4nCM8P8UyyjrzCM0O2sw==",
"dev": true,
"dependencies": {
"@babel/helper-annotate-as-pure": "^7.25.7",
"@babel/helper-wrap-function": "^7.25.7",
"@babel/traverse": "^7.25.7"