-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
14881 lines (14881 loc) · 556 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": "@api-components/api-schema-document",
"version": "4.3.7",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@api-components/api-schema-document",
"version": "4.3.6",
"license": "Apache-2.0",
"dependencies": {
"@advanced-rest-client/arc-types": "^0.2.61",
"@advanced-rest-client/clipboard-copy": "^3.1.1",
"@advanced-rest-client/prism-highlight": "^4.1.3",
"@anypoint-web-components/anypoint-tabs": "^0.1.19",
"@api-components/amf-helper-mixin": "^4.5.12",
"@api-components/api-example-generator": "^4.4.14",
"lit-element": "^2.5.1"
},
"devDependencies": {
"@advanced-rest-client/arc-demo-helper": "^3.0.3",
"@api-components/api-model-generator": "^0.2.14",
"@api-components/api-navigation": "^4.3.2",
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@open-wc/eslint-config": "^4.3.0",
"@open-wc/testing": "^2.5.33",
"@polymer/paper-toast": "^3.0.0",
"@web/dev-server": "^0.1.24",
"@web/test-runner": "^0.13.18",
"@web/test-runner-playwright": "^0.8.8",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"sinon": "^11.1.2",
"typescript": "^4.4.3",
"typescript-lit-html-plugin": "^0.9.0"
}
},
"node_modules/@advanced-rest-client/arc-demo-helper": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-demo-helper/-/arc-demo-helper-3.0.3.tgz",
"integrity": "sha512-Myb1bTyQYFRo2LhGUG8esudRiLRLlVybVQcZBQI1nX9YnsAN6a8OCki93vK64Lxd4ZbkcJH5eqpQN/xGeBIhWw==",
"dev": true,
"dependencies": {
"@advanced-rest-client/arc-icons": "^3.3.4",
"@anypoint-web-components/anypoint-button": "^1.2.3",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.21",
"@anypoint-web-components/anypoint-item": "^1.1.2",
"@anypoint-web-components/anypoint-listbox": "^1.1.7",
"@anypoint-web-components/anypoint-menu-button": "^0.1.5",
"@anypoint-web-components/anypoint-switch": "^0.1.10",
"@anypoint-web-components/anypoint-tabs": "^0.1.19",
"@api-components/amf-helper-mixin": "^4.5.4",
"@api-components/api-navigation": "^4.3.2",
"@api-components/raml-aware": "^3.0.0",
"@open-wc/dedupe-mixin": "^1.3.0",
"@polymer/font-roboto": "^3.0.2",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1",
"prismjs": "^1.25.0"
},
"peerDependencies": {
"@advanced-rest-client/arc-events": "^0.2.14",
"@advanced-rest-client/arc-models": "^5.2.3",
"@advanced-rest-client/bottom-sheet": "^3.2.2"
}
},
"node_modules/@advanced-rest-client/arc-events": {
"version": "0.2.21",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-events/-/arc-events-0.2.21.tgz",
"integrity": "sha512-pxwE/zN/URuOP3R6OMDs/3wgWVD5I+jKwSS0Ku5qQuE6MN7JqJh/w/n8TBUrrdcFM4pVlAIrhaIbjVQ9S1395A==",
"dependencies": {
"@advanced-rest-client/arc-types": "^0.2.61"
}
},
"node_modules/@advanced-rest-client/arc-fit-mixin": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-fit-mixin/-/arc-fit-mixin-1.2.3.tgz",
"integrity": "sha512-27KazC/sRr11Z6PvsGCIOQfEkrU4ciHtpMjV1LH4ydpAfcYR6GnM78LsKg9x04AJ9vZFpZh86diPRnWIdm3RUA==",
"dev": true,
"dependencies": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"node_modules/@advanced-rest-client/arc-icons": {
"version": "3.3.4",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-icons/-/arc-icons-3.3.4.tgz",
"integrity": "sha512-kISi0kToB2Eqem21miPZoyJ2eSwqvtZQClt93pPP/LrRyuQHjWNp38bOLW6tFExmn6aTFYZK9v3X++lXZ3fqIg==",
"dependencies": {
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
},
"peerDependencies": {
"@polymer/iron-icon": "^3.0.1",
"@polymer/iron-iconset-svg": "^3.0.1"
}
},
"node_modules/@advanced-rest-client/arc-models": {
"version": "5.2.4",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-models/-/arc-models-5.2.4.tgz",
"integrity": "sha512-MVqghbumVC9dv6DphaoucnZ878/3GXKWYHOHgqrgQI7pLwfwL5pNOgz/jmw54M4zUG7EKGC83rOVLxWezbi+pg==",
"dev": true,
"peer": true,
"dependencies": {
"@advanced-rest-client/arc-events": "^0.2.21",
"@advanced-rest-client/arc-icons": "^3.3.4",
"@advanced-rest-client/body-editor": "^0.2.5",
"@advanced-rest-client/date-time": "^3.0.2",
"@advanced-rest-client/pouchdb-quick-search": "^2.0.3",
"@advanced-rest-client/uuid-generator": "^3.1.2",
"@anypoint-web-components/anypoint-autocomplete": "^0.2.13",
"@anypoint-web-components/anypoint-button": "^1.2.4",
"@anypoint-web-components/anypoint-checkbox": "^1.2.3",
"@anypoint-web-components/anypoint-collapse": "^0.1.3",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.22",
"@anypoint-web-components/anypoint-input": "^0.2.27",
"@anypoint-web-components/anypoint-item": "^1.1.3",
"@anypoint-web-components/anypoint-listbox": "^1.1.7",
"@anypoint-web-components/anypoint-selector": "^1.1.8",
"@api-components/http-method-label": "^3.1.5",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1",
"pouchdb": "^7.2.2"
}
},
"node_modules/@advanced-rest-client/arc-overlay-mixin": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-overlay-mixin/-/arc-overlay-mixin-1.2.0.tgz",
"integrity": "sha512-NYUspnkQLGudh9NM8vNzORjMYjv2PvL4NiS5Jj4VLvF234Z29iKOpRh+m3+ESmouEs6nZyvh4T/DNGrsD4c+fA==",
"dev": true,
"dependencies": {
"@advanced-rest-client/arc-fit-mixin": "^1.2.2",
"@advanced-rest-client/arc-resizable-mixin": "^1.2.0",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"node_modules/@advanced-rest-client/arc-resizable-mixin": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-resizable-mixin/-/arc-resizable-mixin-1.2.3.tgz",
"integrity": "sha512-CtCzcM04lhXOfAxvRnXrr1l4eeSdCEvooxxYNPmX7fWYLvR4UVzURKiRodVaOTNp3hmpyv8f4jYkAlY5yL/ZQA==",
"dependencies": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"node_modules/@advanced-rest-client/arc-types": {
"version": "0.2.62",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-types/-/arc-types-0.2.62.tgz",
"integrity": "sha512-edGPUERFh53+V+uY9/X3yC3oo0I581cXohgfiwGy+AGZ7zFrGNrDFWbDklSDkUpNr5xi32iYJONbGLV7dVeQMg=="
},
"node_modules/@advanced-rest-client/body-editor": {
"version": "0.2.7",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/body-editor/-/body-editor-0.2.7.tgz",
"integrity": "sha512-WgJ/w7/wYAlUQyuV6KVyGSjyJwLcaEK9EetIepq9CCHYIZiM0rptIqMMgFhJwYQ52cPEZVBSD4ecxN6EJD5riA==",
"dev": true,
"peer": true,
"dependencies": {
"@advanced-rest-client/arc-events": "^0.2.21",
"@advanced-rest-client/arc-icons": "^3.3.4",
"@advanced-rest-client/arc-resizable-mixin": "^1.2.3",
"@advanced-rest-client/events-target-mixin": "^3.2.6",
"@advanced-rest-client/monaco-support": "^1.0.1",
"@anypoint-web-components/anypoint-button": "^1.2.4",
"@anypoint-web-components/anypoint-dialog": "^0.1.10",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.22",
"@anypoint-web-components/anypoint-input": "^0.2.27",
"@anypoint-web-components/anypoint-item": "^1.1.3",
"@anypoint-web-components/anypoint-listbox": "^1.1.7",
"@anypoint-web-components/anypoint-switch": "^0.1.11",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1",
"monaco-editor": "^0.26.1"
}
},
"node_modules/@advanced-rest-client/bottom-sheet": {
"version": "3.2.4",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/bottom-sheet/-/bottom-sheet-3.2.4.tgz",
"integrity": "sha512-BVNzMFgu3TZOf6g+vb6iaZSDa8+okZ0cxo/EzlI3CUOdjsPRatNDkNWfsnu/SX23DVPSzepe7ovVlyoqrBJfwA==",
"dev": true,
"peer": true,
"dependencies": {
"@advanced-rest-client/arc-overlay-mixin": "^1.2.0",
"@polymer/iron-a11y-announcer": "^3.2.0",
"lit-element": "^2.5.1"
}
},
"node_modules/@advanced-rest-client/clipboard-copy": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/clipboard-copy/-/clipboard-copy-3.1.1.tgz",
"integrity": "sha512-k4CT4LI3SOG6rXe5VrNdgqFVU/RXESTxrlAJBtjR93RWFyh3ft713gpv6zr1o6KyopT6EKo/PevH04CzNwDb6A=="
},
"node_modules/@advanced-rest-client/date-time": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/date-time/-/date-time-3.0.3.tgz",
"integrity": "sha512-SIHTcro+E6wB17dDqMP6DBsc93/rUHgoUCT++gdG8v7SqhBziDudMU0DcP+WyHSnPxpSSIe0WXpVhzeqcQ/OFw==",
"dev": true,
"peer": true
},
"node_modules/@advanced-rest-client/events-target-mixin": {
"version": "3.2.6",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/events-target-mixin/-/events-target-mixin-3.2.6.tgz",
"integrity": "sha512-5tdtnLc24Rg/zeUMLrpMxyAqxohPJUwQyL1CsRtHDd/Xf/KIAfF2hPGI3QMzBSlpaSSO4zJ9i+hb9CYvveFFKQ==",
"dev": true,
"peer": true,
"dependencies": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"node_modules/@advanced-rest-client/monaco-support": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/monaco-support/-/monaco-support-1.0.1.tgz",
"integrity": "sha512-Vdv12H2acYT0dD2jn0YpBYnv53+/ZhvzExRsWbRWkqlSTWPEqTQCwruqE5UET2BjnFeaPTMQ5jjOZQpOEZSRtg==",
"dev": true,
"peer": true,
"dependencies": {
"lit-element": "^2.4.0"
}
},
"node_modules/@advanced-rest-client/pouchdb-mapreduce-no-ddocs": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/pouchdb-mapreduce-no-ddocs/-/pouchdb-mapreduce-no-ddocs-3.0.3.tgz",
"integrity": "sha512-5gqGWnlLQxLJov/6WE7iuz/LOE0xZJcRI7o2lnxBVore3sj+F3R4OjRjiL8wiZvykEMSdX7Qy+BhFMUrKMvWSw==",
"dev": true,
"peer": true,
"dependencies": {
"inherits": "2.0.1",
"pouchdb-binary-utils": "6.4.3",
"pouchdb-collate": "1.2.0",
"pouchdb-errors": "6.4.3",
"pouchdb-mapreduce-utils": "6.4.3",
"pouchdb-md5": "6.4.3",
"pouchdb-promise": "6.4.3",
"pouchdb-utils": "6.4.3",
"scope-eval": "0.0.3",
"spark-md5": "2.0.2"
}
},
"node_modules/@advanced-rest-client/pouchdb-mapreduce-no-ddocs/node_modules/immediate": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz",
"integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==",
"dev": true,
"peer": true
},
"node_modules/@advanced-rest-client/pouchdb-mapreduce-no-ddocs/node_modules/inherits": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz",
"integrity": "sha512-8nWq2nLTAwd02jTqJExUYFSD/fKq6VH9Y/oG2accc/kdI0V98Bag8d5a4gi3XHz73rDWa2PvTtvcWYquKqSENA==",
"dev": true,
"peer": true
},
"node_modules/@advanced-rest-client/pouchdb-mapreduce-no-ddocs/node_modules/lie": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/lie/-/lie-3.1.1.tgz",
"integrity": "sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==",
"dev": true,
"peer": true,
"dependencies": {
"immediate": "~3.0.5"
}
},
"node_modules/@advanced-rest-client/pouchdb-mapreduce-no-ddocs/node_modules/pouchdb-promise": {
"version": "6.4.3",
"resolved": "https://registry.npmjs.org/pouchdb-promise/-/pouchdb-promise-6.4.3.tgz",
"integrity": "sha512-ruJaSFXwzsxRHQfwNHjQfsj58LBOY1RzGzde4PM5CWINZwFjCQAhZwfMrch2o/0oZT6d+Xtt0HTWhq35p3b0qw==",
"dev": true,
"peer": true,
"dependencies": {
"lie": "3.1.1"
}
},
"node_modules/@advanced-rest-client/pouchdb-mapreduce-no-ddocs/node_modules/spark-md5": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/spark-md5/-/spark-md5-2.0.2.tgz",
"integrity": "sha512-9WfT+FYBEvlrOOBEs484/zmbtSX4BlGjzXih1qIEWA1yhHbcqgcMHkiwXoWk2Sq1aJjLpcs6ZKV7JxrDNjIlNg==",
"dev": true,
"peer": true
},
"node_modules/@advanced-rest-client/pouchdb-quick-search": {
"version": "2.0.3",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/pouchdb-quick-search/-/pouchdb-quick-search-2.0.3.tgz",
"integrity": "sha512-nOJo7AT037UTPQY5CFiVqk4NucwjNiPGWyF/QU8dXPqyK2ZgxjiN/wyRzcpLvIYj6MO2JepQFdfW8nx35cJxXw==",
"dev": true,
"peer": true,
"dependencies": {
"@advanced-rest-client/pouchdb-mapreduce-no-ddocs": "^3.0.0",
"json-stable-stringify": "^1.0.1",
"lunr": "0.7.1",
"md5": "^2.2.1",
"pouchdb-extend": "^0.1.0",
"pouchdb-promise": "5.4.4",
"uniq": "^1.0.1"
}
},
"node_modules/@advanced-rest-client/prism-highlight": {
"version": "4.1.4",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/prism-highlight/-/prism-highlight-4.1.4.tgz",
"integrity": "sha512-5PToTZo4JcEhd84u+Qt+Q9Rfw5rbGIFMTmTL8Cssm59aEKDM+fhYrX5YD9HLSHhZRnavY3NCsJTUMe+Rts/QMg==",
"dependencies": {
"@advanced-rest-client/arc-events": "^0.2.17",
"lit-element": "^2.5.1",
"prismjs": "^1.23.0"
}
},
"node_modules/@advanced-rest-client/uuid-generator": {
"version": "3.1.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/uuid-generator/-/uuid-generator-3.1.2.tgz",
"integrity": "sha512-eP3Yo04FiQao7mPEhG37ESG1zYNB5uQ03dB3FlCvaZoUs4qGduBr7SRHdFENcGJlxCkwhY0QVKFfuaZZValPTA==",
"dev": true,
"peer": true
},
"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==",
"dev": true,
"peer": true,
"dependencies": {
"@jridgewell/gen-mapping": "^0.3.0",
"@jridgewell/trace-mapping": "^0.3.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@anypoint-web-components/anypoint-autocomplete": {
"version": "0.2.13",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-autocomplete/-/anypoint-autocomplete-0.2.13.tgz",
"integrity": "sha512-uvjjr6Ip90AU4df07meYLeetjBoYLqk1Ri3rPxi72MQx34rFlngDKDV+3Tw0Zp9JuGlHxqLM0pHZZws3JGBs1w==",
"dev": true,
"peer": true,
"dependencies": {
"@anypoint-web-components/anypoint-dropdown": "^1.1.7",
"@anypoint-web-components/anypoint-item": "^1.1.3",
"@anypoint-web-components/anypoint-listbox": "^1.1.7",
"lit-element": "^2.5.1"
}
},
"node_modules/@anypoint-web-components/anypoint-button": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-button/-/anypoint-button-1.2.4.tgz",
"integrity": "sha512-OjKNJYBPhEqKmizUNpKAXo7o3v+5QIAdolWSD/ELj8OssbXyZehllyzn6JZhsWT93xttcxjDzho0ZrWdJix7jw==",
"dependencies": {
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/material-ripple": "^1.0.3",
"lit-element": "^2.5.1"
}
},
"node_modules/@anypoint-web-components/anypoint-checkbox": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-checkbox/-/anypoint-checkbox-1.2.5.tgz",
"integrity": "sha512-yuTVt1BnuF1fGdblzwyDrIsVvFL9qo5beSmgFX9gNp++vIl8vJhDctaS4OyeaEqu7qr1beCizlc9HX3kFGQv0w==",
"dev": true,
"peer": true,
"dependencies": {
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-form-mixins": "^1.3.1",
"lit-element": "^2.5.1"
}
},
"node_modules/@anypoint-web-components/anypoint-collapse": {
"version": "0.1.3",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-collapse/-/anypoint-collapse-0.1.3.tgz",
"integrity": "sha512-cDxE41dcEYWCC7v1VRQpnBtckrq6kKnDwYufoxfUAQFYBKS/bI5yul6ESrq1whYVJE5ITBS/38/kB0gSonybyg==",
"dev": true,
"dependencies": {
"@advanced-rest-client/arc-resizable-mixin": "^1.2.2",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"node_modules/@anypoint-web-components/anypoint-control-mixins": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-control-mixins/-/anypoint-control-mixins-1.2.0.tgz",
"integrity": "sha512-EMseskbHaRBJpyV60m6tWCtr1MGMZV/Hc6yD5XO1fH4WCg8kihgqXWeR22Y5qOv7YaALwWwBrG2cDCG8TNyxHw==",
"dependencies": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"node_modules/@anypoint-web-components/anypoint-dialog": {
"version": "0.1.10",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dialog/-/anypoint-dialog-0.1.10.tgz",
"integrity": "sha512-AwAmndgYOxJNKeBlL0NunqAOyiEeJqfi/+CnZo/6WpAAAlMFqd0TQ110UCM78ZYx8AMSpE6CeYa+3ZTra8axDw==",
"dev": true,
"peer": true,
"dependencies": {
"@advanced-rest-client/arc-overlay-mixin": "^1.2.0",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"node_modules/@anypoint-web-components/anypoint-dropdown": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dropdown/-/anypoint-dropdown-1.1.7.tgz",
"integrity": "sha512-1l44OTPKxYBKuNnBXoCLPQa2D3nLaO8a3zqomLFZPpV1svPgED26tAd3p+iVpbuN5m0SfRFtcMQ8LgRGxu0WGA==",
"dev": true,
"dependencies": {
"@advanced-rest-client/arc-overlay-mixin": "^1.2.0",
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"node_modules/@anypoint-web-components/anypoint-dropdown-menu": {
"version": "0.1.23",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-dropdown-menu/-/anypoint-dropdown-menu-0.1.23.tgz",
"integrity": "sha512-wpuc3KSyCycGaeg68KQDuGI9IJ3dDguWUHh1O88rf7tVLayVZCYkP74/FWeVBwoVUaTxT9oUDtgAKOhrodjrVQ==",
"dev": true,
"dependencies": {
"@anypoint-web-components/anypoint-button": "^1.2.4",
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-dropdown": "^1.1.7",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"node_modules/@anypoint-web-components/anypoint-form-mixins": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-form-mixins/-/anypoint-form-mixins-1.3.1.tgz",
"integrity": "sha512-BWvAfbLgA2nQV91UsZPBbV4p1/50X6qBrkxaDR0jkKxsi0Se/FetgZTCx8KSMMKgmz6hjt2gqH3gVM9tuXtZAA==",
"dev": true,
"dependencies": {
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"node_modules/@anypoint-web-components/anypoint-input": {
"version": "0.2.30",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-input/-/anypoint-input-0.2.30.tgz",
"integrity": "sha512-acohhprEhEGfXAz5bPjNYPsIaKTQyU82c8P9JTw2FkWbVvErTaX3mPtrX405/ZNlStLV19Kbt+uD4jgvi7NuVg==",
"dev": true,
"peer": true,
"dependencies": {
"@advanced-rest-client/arc-icons": "^3.3.3",
"@anypoint-web-components/anypoint-button": "^1.2.2",
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"node_modules/@anypoint-web-components/anypoint-item": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-item/-/anypoint-item-1.1.3.tgz",
"integrity": "sha512-TXDB+L7s5sCylsdZOE+Fe4AqN81UuIvBzUX6QMvzQP/D37P49z3mZMQ2ZNvVgd1ntOV1BLopvECU745CZ31RZA==",
"dev": true,
"dependencies": {
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-styles": "^1.0.2",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"node_modules/@anypoint-web-components/anypoint-listbox": {
"version": "1.1.7",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-listbox/-/anypoint-listbox-1.1.7.tgz",
"integrity": "sha512-F4VueUMEdH8unfJ5Wyqv4QO8Cfl/F1lkq0o7vrKPafYyK455ArIx1CCsgUUUhXAG8+T4WZie5xfnqVRr+uYWpA==",
"dev": true,
"dependencies": {
"@anypoint-web-components/anypoint-menu-mixin": "^1.1.7",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"node_modules/@anypoint-web-components/anypoint-menu-button": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-menu-button/-/anypoint-menu-button-0.1.5.tgz",
"integrity": "sha512-sZKu3qLbRrGX9RMxKayS9jS41eTmaktYQXsrR9v32MbenMyI+FJ0IIZEidxSq5WFbYoLYih/iCaK57sFMepr9g==",
"dev": true,
"dependencies": {
"@anypoint-web-components/anypoint-control-mixins": "^1.1.3",
"@anypoint-web-components/anypoint-dropdown": "^1.1.4",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"node_modules/@anypoint-web-components/anypoint-menu-mixin": {
"version": "1.1.9",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-menu-mixin/-/anypoint-menu-mixin-1.1.9.tgz",
"integrity": "sha512-5o1Gh9lLUaMNM/PwY5sJFAjCNz51oGtmsWgIlZhRxJLPXgyqmVaszRwLMU3Gb/NrKUS5Y5q2Hfbm0Mhp2PkCjw==",
"dependencies": {
"@anypoint-web-components/anypoint-selector": "^1.1.7",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"node_modules/@anypoint-web-components/anypoint-selector": {
"version": "1.1.8",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-selector/-/anypoint-selector-1.1.8.tgz",
"integrity": "sha512-++5x2hEZHKyMqeNrz7bWmyfJVub5z2BOk9uyXxo9Ght6ZheyeSK6bqTNyIzQWOHI813XVkFzNaY9HkE+NR5Ugw==",
"dependencies": {
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"node_modules/@anypoint-web-components/anypoint-styles": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-styles/-/anypoint-styles-1.0.3.tgz",
"integrity": "sha512-EwG0iLfRuVb0CzjIibl/Wqm6Jl1T18z+GYAReuJkPfDvFP8qsDFZEjh25ktluoImv9aTIZzM4aGaEIpvb5GI7g==",
"dev": true,
"dependencies": {
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"node_modules/@anypoint-web-components/anypoint-switch": {
"version": "0.1.12",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-switch/-/anypoint-switch-0.1.12.tgz",
"integrity": "sha512-ykJYLnla12ekTuR51F2PXmLwaxAl0dHl4GteegI4MnRD50MZgumNt2exDnAomsnJ4pDpCg93lSQ6s3188kIFsQ==",
"dev": true,
"dependencies": {
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-form-mixins": "^1.3.1",
"lit-element": "^2.5.1"
}
},
"node_modules/@anypoint-web-components/anypoint-tabs": {
"version": "0.1.19",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-tabs/-/anypoint-tabs-0.1.19.tgz",
"integrity": "sha512-h3slAS0XjdSbN+NM/FlNsw2Je81MrrPncw51dHr3Zw97KwncwlZlzFn/cJJo0lQaN6dxB6X4Hh646Qa/mN8UIg==",
"dependencies": {
"@advanced-rest-client/arc-resizable-mixin": "^1.2.2",
"@anypoint-web-components/anypoint-button": "^1.2.1",
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-menu-mixin": "^1.1.8",
"@anypoint-web-components/material-ripple": "^1.0.1",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"node_modules/@anypoint-web-components/material-ripple": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/material-ripple/-/material-ripple-1.0.3.tgz",
"integrity": "sha512-rAKa/dRsiofHumUikzKj+Ast5NvwZ+WoKJTDT/eE/Noq5+SXSR7NwzKyagO/JITcd5OVeMlO18EZZ+r9Hq6FHg==",
"dependencies": {
"@advanced-rest-client/arc-icons": "^3.3.3",
"lit-element": "^2.4.0"
}
},
"node_modules/@anypoint-web-components/validatable-mixin": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/validatable-mixin/-/validatable-mixin-1.1.3.tgz",
"integrity": "sha512-cObFmNCIWxbGoYEO7cMUEEB4LQ4n3HEgk1gS7LB/TZSvXzzth00f3lbxkvQsubBIFVEOKFUq5Lo8vuG81t0/2w==",
"dev": true,
"dependencies": {
"@anypoint-web-components/validator-mixin": "^1.1.1",
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"node_modules/@anypoint-web-components/validator-mixin": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/validator-mixin/-/validator-mixin-1.1.2.tgz",
"integrity": "sha512-J5dqcdwW47W+7B10stowMsaQclV2VEe2vZ3SD6lVnQS63MWEZeCa2jTdaJ3RuE5+vSBoKoUfBiHqOdcpnGLL2w==",
"dev": true,
"dependencies": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"node_modules/@api-components/amf-helper-mixin": {
"version": "4.5.17",
"resolved": "https://registry.npmjs.org/@api-components/amf-helper-mixin/-/amf-helper-mixin-4.5.17.tgz",
"integrity": "sha512-CGMo/N/wb8jwg7n98tpfj5VqBVyB4jDyyGQ/fdgLacQrEQ5Fe0v0hG8Maj2OOQeavt44y3SMbSLCQBjsxchbAA==",
"dependencies": {
"amf-json-ld-lib": "0.0.14"
}
},
"node_modules/@api-components/api-example-generator": {
"version": "4.4.15",
"resolved": "https://registry.npmjs.org/@api-components/api-example-generator/-/api-example-generator-4.4.15.tgz",
"integrity": "sha512-dGgLSBzywJruay28QtK415rNxlCh3ZOBU0gIXBZi9kLE9jcaLcefY/kHAEnALOK2pS6Em/ZG7IuSH4FYNGqM7A==",
"dependencies": {
"@api-components/amf-helper-mixin": "^4.1.8",
"lit-element": "^2.4.0"
}
},
"node_modules/@api-components/api-model-generator": {
"version": "0.2.14",
"resolved": "https://registry.npmjs.org/@api-components/api-model-generator/-/api-model-generator-0.2.14.tgz",
"integrity": "sha512-HYOp0ScUpqETvx/l2NJ9gUaTzwy02oL9RRqTWDdL0BETcwfVQbpIhZPQ9c29LSwycNJZFOaoN6qRQiVqT+V3Wg==",
"dev": true,
"dependencies": {
"amf-client-js": "^4.7.6",
"fs-extra": "^10.0.0"
},
"engines": {
"node": ">= 10.0.0"
}
},
"node_modules/@api-components/api-navigation": {
"version": "4.3.3",
"resolved": "https://registry.npmjs.org/@api-components/api-navigation/-/api-navigation-4.3.3.tgz",
"integrity": "sha512-QjBqRgCkNtzUlne0UBzNwBqr7YFNFkbDs1dWP+ig2a/xQ+NfPunktleVnk1Irmdy9uQsHRZGyFq13aGFHND6ig==",
"dev": true,
"dependencies": {
"@advanced-rest-client/arc-icons": "^3.3.4",
"@anypoint-web-components/anypoint-button": "^1.2.3",
"@anypoint-web-components/anypoint-collapse": "^0.1.0",
"@api-components/amf-helper-mixin": "^4.5.17",
"@api-components/http-method-label": "^3.1.5",
"@api-components/raml-aware": "^3.0.0",
"lit-element": "^2.3.1",
"lit-html": "^1.2.1"
}
},
"node_modules/@api-components/http-method-label": {
"version": "3.1.5",
"resolved": "https://registry.npmjs.org/@api-components/http-method-label/-/http-method-label-3.1.5.tgz",
"integrity": "sha512-C6uu4jRCDXAmqxq1y7VJKCn1NUYGT+qFa07rYS/FKFT09Srg4Vgjl9VIdg9pDLBVwhhtGiUK6UnPAqzFhsof5A==",
"dev": true,
"dependencies": {
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"node_modules/@api-components/raml-aware": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@api-components/raml-aware/-/raml-aware-3.0.0.tgz",
"integrity": "sha512-lWIjd8Wq6tYJmF8ZXyUgQdGq+vhXP7pKY/QcPQdKOn2IXb4/gqTglebtXnxjME41+uKSPQoMSKTEVT/PwX93qQ==",
"deprecated": "This component is no longer developed and used in API Console",
"dev": true
},
"node_modules/@babel/code-frame": {
"version": "7.22.13",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.22.13.tgz",
"integrity": "sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==",
"dev": true,
"dependencies": {
"@babel/highlight": "^7.22.13",
"chalk": "^2.4.2"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/code-frame/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dev": true,
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/code-frame/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/code-frame/node_modules/has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"dev": true,
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/code-frame/node_modules/supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/compat-data": {
"version": "7.23.2",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.2.tgz",
"integrity": "sha512-0S9TQMmDHlqAZ2ITT95irXKfxN9bncq8ZCoJhun3nHL/lLUxd2NKBJYoNGWH7S0hz6fRQwWlAWn/ILM0C70KZQ==",
"dev": true,
"peer": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
"version": "7.23.2",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.2.tgz",
"integrity": "sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==",
"dev": true,
"peer": true,
"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"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/babel"
}
},
"node_modules/@babel/core/node_modules/convert-source-map": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
"dev": true,
"peer": true
},
"node_modules/@babel/core/node_modules/debug": {
"version": "4.3.4",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
"integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
"dev": true,
"peer": true,
"dependencies": {
"ms": "2.1.2"
},
"engines": {
"node": ">=6.0"
},
"peerDependenciesMeta": {
"supports-color": {
"optional": true
}
}
},
"node_modules/@babel/core/node_modules/json5": {
"version": "2.2.3",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
"dev": true,
"peer": true,
"bin": {
"json5": "lib/cli.js"
},
"engines": {
"node": ">=6"
}
},
"node_modules/@babel/core/node_modules/ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"dev": true,
"peer": true
},
"node_modules/@babel/core/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true,
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/eslint-parser": {
"version": "7.22.15",
"resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.22.15.tgz",
"integrity": "sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==",
"dev": true,
"peer": true,
"dependencies": {
"@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1",
"eslint-visitor-keys": "^2.1.0",
"semver": "^6.3.1"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || >=14.0.0"
},
"peerDependencies": {
"@babel/core": "^7.11.0",
"eslint": "^7.5.0 || ^8.0.0"
}
},
"node_modules/@babel/eslint-parser/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true,
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/eslint-plugin": {
"version": "7.22.10",
"resolved": "https://registry.npmjs.org/@babel/eslint-plugin/-/eslint-plugin-7.22.10.tgz",
"integrity": "sha512-SRZcvo3fnO5h79B9DZSV6LG2vHH7OWsSNp1huFLHsXKyytRG413byQk9zxW1VcPOhnzfx2VIUz+8aGbiE7fOkA==",
"dev": true,
"peer": true,
"dependencies": {
"eslint-rule-composer": "^0.3.0"
},
"engines": {
"node": "^10.13.0 || ^12.13.0 || >=14.0.0"
},
"peerDependencies": {
"@babel/eslint-parser": "^7.11.0",
"eslint": "^7.5.0 || ^8.0.0"
}
},
"node_modules/@babel/generator": {
"version": "7.23.0",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.0.tgz",
"integrity": "sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==",
"dev": true,
"peer": true,
"dependencies": {
"@babel/types": "^7.23.0",
"@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-compilation-targets": {
"version": "7.22.15",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz",
"integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==",
"dev": true,
"peer": true,
"dependencies": {
"@babel/compat-data": "^7.22.9",
"@babel/helper-validator-option": "^7.22.15",
"browserslist": "^4.21.9",
"lru-cache": "^5.1.1",
"semver": "^6.3.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
"dev": true,
"peer": true,
"dependencies": {
"yallist": "^3.0.2"
}
},
"node_modules/@babel/helper-compilation-targets/node_modules/semver": {
"version": "6.3.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
"dev": true,
"peer": true,
"bin": {
"semver": "bin/semver.js"
}
},
"node_modules/@babel/helper-compilation-targets/node_modules/yallist": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
"dev": true,
"peer": true
},
"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,
"peer": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-function-name": {
"version": "7.23.0",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz",
"integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==",
"dev": true,
"peer": true,
"dependencies": {
"@babel/template": "^7.22.15",
"@babel/types": "^7.23.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-hoist-variables": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz",
"integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==",
"dev": true,
"peer": true,
"dependencies": {
"@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.22.15",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz",
"integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==",
"dev": true,
"peer": true,
"dependencies": {
"@babel/types": "^7.22.15"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.23.0",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz",
"integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==",
"dev": true,
"peer": true,
"dependencies": {
"@babel/helper-environment-visitor": "^7.22.20",
"@babel/helper-module-imports": "^7.22.15",
"@babel/helper-simple-access": "^7.22.5",
"@babel/helper-split-export-declaration": "^7.22.6",
"@babel/helper-validator-identifier": "^7.22.20"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-simple-access": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz",
"integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==",
"dev": true,
"peer": true,
"dependencies": {
"@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-split-export-declaration": {
"version": "7.22.6",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz",
"integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==",
"dev": true,
"peer": true,
"dependencies": {
"@babel/types": "^7.22.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.22.5",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz",
"integrity": "sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==",
"dev": true,
"peer": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.22.20",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz",