-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
9527 lines (9527 loc) · 390 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-authorization",
"version": "0.7.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@advanced-rest-client/arc-definitions": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-definitions/-/arc-definitions-3.1.1.tgz",
"integrity": "sha512-AbnR14AdFwlVSqWF83senQVM5JjllBoRq5uCGBGw8gLhIXylG+nlk+9sOLlpWCeAaxYiiGGqw/Lw4Ke57xf6Hw=="
},
"@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,
"requires": {
"@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"
}
},
"@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==",
"requires": {
"@advanced-rest-client/arc-types": "^0.2.61"
}
},
"@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==",
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@advanced-rest-client/arc-headers": {
"version": "0.1.15",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-headers/-/arc-headers-0.1.15.tgz",
"integrity": "sha512-hajB64hG0tdgpsxsY4he2r/sD5wtDbw3A/x2AU0hr1MdeZBLgt5UpufFWoYm/zXQdwTwKjXCQFMBr7Dnij1i8A==",
"requires": {
"@advanced-rest-client/arc-definitions": "^3.1.1",
"@advanced-rest-client/arc-events": "^0.2.21",
"@advanced-rest-client/arc-icons": "^3.3.4",
"@advanced-rest-client/arc-types": "^0.2.62",
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/code-mirror": "^3.1.4",
"@advanced-rest-client/events-target-mixin": "^3.2.6",
"@anypoint-web-components/anypoint-autocomplete": "^0.2.13",
"@anypoint-web-components/anypoint-button": "^1.2.4",
"@anypoint-web-components/anypoint-input": "^0.2.27",
"@anypoint-web-components/anypoint-switch": "^0.1.11",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@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==",
"requires": {
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"@advanced-rest-client/arc-marked": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/arc-marked/-/arc-marked-1.1.2.tgz",
"integrity": "sha512-YHi4aGGh8XFjLi4N0szqOBmtGiC6wn+UCB5josEhAP/oVwlRnWxSCNenwjvpINO+RJ8Dr09Ed5dVMGS/wz4yCw==",
"requires": {
"dompurify": "^2.2.9",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1",
"marked": "^0.7.0"
}
},
"@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==",
"requires": {
"@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"
}
},
"@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==",
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@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=="
},
"@advanced-rest-client/authorization": {
"version": "0.1.7",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/authorization/-/authorization-0.1.7.tgz",
"integrity": "sha512-dwS8vajHucdGKCfGDNbD7+HiUQvaSYwJ7BZC/gFuLU/kAk6ndCaqmRYTCL9aTDag5aoHi9qlYXnppVqc/nLXbw==",
"requires": {
"@advanced-rest-client/arc-events": "^0.2.17",
"@advanced-rest-client/arc-headers": "^0.1.10",
"@advanced-rest-client/arc-icons": "^3.3.0",
"@advanced-rest-client/arc-types": "^0.2.53",
"@advanced-rest-client/clipboard-copy": "^3.0.1",
"@advanced-rest-client/events-target-mixin": "^3.2.4",
"@anypoint-web-components/anypoint-autocomplete": "^0.2.10",
"@anypoint-web-components/anypoint-button": "^1.2.2",
"@anypoint-web-components/anypoint-checkbox": "^1.2.1",
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-dialog": "^0.1.7",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.21",
"@anypoint-web-components/anypoint-input": "^0.2.27",
"@anypoint-web-components/anypoint-item": "^1.1.2",
"@anypoint-web-components/anypoint-listbox": "^1.1.7",
"@anypoint-web-components/anypoint-selector": "^1.1.7",
"@anypoint-web-components/anypoint-switch": "^0.1.10",
"@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"
}
},
"@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=="
},
"@advanced-rest-client/code-mirror": {
"version": "3.1.5",
"resolved": "https://registry.npmjs.org/@advanced-rest-client/code-mirror/-/code-mirror-3.1.5.tgz",
"integrity": "sha512-0FnW8WbbgerozcmDmjTv7hmXvc6a0oei6XYauR5TU6PyHZnS8sKVmMkmwQJ8szYkq7tx316uHVHuun9MENQB0g==",
"requires": {
"@anypoint-web-components/anypoint-item": "^1.1.0",
"@anypoint-web-components/anypoint-listbox": "^1.1.6",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"codemirror": "^5.59.4",
"lit-element": "^2.4.0"
}
},
"@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==",
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@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==",
"requires": {
"@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"
}
},
"@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==",
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/material-ripple": "^1.0.3",
"lit-element": "^2.5.1"
}
},
"@anypoint-web-components/anypoint-checkbox": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-checkbox/-/anypoint-checkbox-1.2.4.tgz",
"integrity": "sha512-nqFxsgeIOru1KaJLZ4vb6LLat8gdZchXqnckGdztE60GTPU/PB2bp0kFCZr7TQCjzfg0r40AULpFpRxJJP4elA==",
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-form-mixins": "^1.3.1",
"lit-element": "^2.5.1"
}
},
"@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,
"requires": {
"@advanced-rest-client/arc-resizable-mixin": "^1.2.2",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"@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==",
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@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==",
"requires": {
"@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"
}
},
"@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==",
"requires": {
"@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"
}
},
"@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==",
"requires": {
"@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"
}
},
"@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==",
"requires": {
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@anypoint-web-components/anypoint-input": {
"version": "0.2.28",
"resolved": "https://registry.npmjs.org/@anypoint-web-components/anypoint-input/-/anypoint-input-0.2.28.tgz",
"integrity": "sha512-kmlHdnx8ZYhN4KxvZBlXy75EerNuSIFHO00abazzh6P0pvxFbzfelvbI9tfJYarishSiHfbpJRjUOHi4JfMOHg==",
"requires": {
"@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"
}
},
"@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==",
"requires": {
"@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"
}
},
"@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==",
"requires": {
"@anypoint-web-components/anypoint-menu-mixin": "^1.1.7",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"@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,
"requires": {
"@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"
}
},
"@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==",
"requires": {
"@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"
}
},
"@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==",
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0"
}
},
"@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==",
"requires": {
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"@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==",
"requires": {
"@anypoint-web-components/anypoint-control-mixins": "^1.2.0",
"@anypoint-web-components/anypoint-form-mixins": "^1.3.1",
"lit-element": "^2.5.1"
}
},
"@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==",
"dev": true,
"requires": {
"@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"
}
},
"@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==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.3.3",
"lit-element": "^2.4.0"
}
},
"@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==",
"requires": {
"@anypoint-web-components/validator-mixin": "^1.1.1",
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@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==",
"requires": {
"@open-wc/dedupe-mixin": "^1.3.0"
}
},
"@api-components/amf-helper-mixin": {
"version": "4.5.19",
"resolved": "https://registry.npmjs.org/@api-components/amf-helper-mixin/-/amf-helper-mixin-4.5.19.tgz",
"integrity": "sha512-LNn4+iDAH6QK2WYz2IdnUI4kp6iZsp9Fni62V5fBpYsACnXrZA7PmyB00YCaLWn3PKlaw08W2XVGdphiTspORA==",
"requires": {
"amf-json-ld-lib": "0.0.14"
}
},
"@api-components/api-example-generator": {
"version": "4.4.19",
"resolved": "https://registry.npmjs.org/@api-components/api-example-generator/-/api-example-generator-4.4.19.tgz",
"integrity": "sha512-X2wV/lpigN5XwEBw2XEH5sCoNEsYdZ4h/xMHahkbXBj1xjTMMtzbKi14qX8rHo+6HUnYa9nVnRHDSzibMoxttA==",
"requires": {
"@api-components/amf-helper-mixin": "^4.1.8",
"lit-element": "^2.4.0"
}
},
"@api-components/api-forms": {
"version": "0.2.4",
"resolved": "https://registry.npmjs.org/@api-components/api-forms/-/api-forms-0.2.4.tgz",
"integrity": "sha512-Ey/vcNKWxKC0jeSK7aHLBRhS81auYa+Q7+e1VkPonmvt2Xu2EQFXtGIeIo0qNCMB640yMbh8L+sWvm6sbHNzKg==",
"requires": {
"@advanced-rest-client/arc-icons": "^3.3.3",
"@advanced-rest-client/arc-types": "^0.2.53",
"@anypoint-web-components/anypoint-button": "^1.2.2",
"@anypoint-web-components/anypoint-checkbox": "^1.2.1",
"@anypoint-web-components/anypoint-dropdown-menu": "^0.1.21",
"@anypoint-web-components/anypoint-input": "^0.2.26",
"@anypoint-web-components/anypoint-item": "^1.1.2",
"@anypoint-web-components/anypoint-listbox": "^1.1.7",
"@anypoint-web-components/validatable-mixin": "^1.1.3",
"@api-components/amf-helper-mixin": "^4.4.1",
"@api-components/api-example-generator": "^4.4.14",
"@open-wc/dedupe-mixin": "^1.3.0",
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"@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,
"requires": {
"amf-client-js": "^4.7.6",
"fs-extra": "^10.0.0"
}
},
"@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,
"requires": {
"@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"
}
},
"@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,
"requires": {
"lit-element": "^2.5.1",
"lit-html": "^1.4.1"
}
},
"@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==",
"dev": true
},
"@babel/code-frame": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
"integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
"dev": true,
"requires": {
"@babel/highlight": "^7.18.6"
}
},
"@babel/helper-validator-identifier": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz",
"integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==",
"dev": true
},
"@babel/highlight": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
"integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.18.6",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"dependencies": {
"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,
"requires": {
"color-convert": "^1.9.0"
}
},
"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,
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"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
},
"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,
"requires": {
"has-flag": "^3.0.0"
}
}
}
},
"@babel/runtime": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.18.9.tgz",
"integrity": "sha512-lkqXDcvlFT5rvEjiu6+QYO+1GXrEHRo2LOtS7E4GtX5ESIZOgepqsZBVIj6Pv+a6zqsya9VCgiK1KAK4BvJDAw==",
"dev": true,
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/runtime-corejs3": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz",
"integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==",
"dev": true,
"requires": {
"core-js-pure": "^3.20.2",
"regenerator-runtime": "^0.13.4"
}
},
"@colors/colors": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
"integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
"dev": true
},
"@commitlint/cli": {
"version": "13.2.1",
"resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-13.2.1.tgz",
"integrity": "sha512-JGzYk2ay5JkRS5w+FLQzr0u/Kih52ds4HPpa3vnwVOQN8Q+S1VYr8Nk/6kRm6uNYsAcC1nejtuDxRdLcLh/9TA==",
"dev": true,
"requires": {
"@commitlint/format": "^13.2.0",
"@commitlint/lint": "^13.2.0",
"@commitlint/load": "^13.2.1",
"@commitlint/read": "^13.2.0",
"@commitlint/types": "^13.2.0",
"lodash": "^4.17.19",
"resolve-from": "5.0.0",
"resolve-global": "1.0.0",
"yargs": "^17.0.0"
}
},
"@commitlint/config-conventional": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-13.2.0.tgz",
"integrity": "sha512-7u7DdOiF+3qSdDlbQGfpvCH8DCQdLFvnI2+VucYmmV7E92iD6t9PBj+UjIoSQCaMAzYp27Vkall78AkcXBh6Xw==",
"dev": true,
"requires": {
"conventional-changelog-conventionalcommits": "^4.3.1"
}
},
"@commitlint/ensure": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-13.2.0.tgz",
"integrity": "sha512-rqhT62RehdLTRBu8OrPHnRCCd/7RmHEE4TiTlT4BLlr5ls5jlZhecOQWJ8np872uCNirrJ5NFjnjYYdbkNoW9Q==",
"dev": true,
"requires": {
"@commitlint/types": "^13.2.0",
"lodash": "^4.17.19"
}
},
"@commitlint/execute-rule": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-13.2.0.tgz",
"integrity": "sha512-6nPwpN0hwTYmsH3WM4hCdN+NrMopgRIuQ0aqZa+jnwMoS/g6ljliQNYfL+m5WO306BaIu1W3yYpbW5aI8gEr0g==",
"dev": true
},
"@commitlint/format": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/format/-/format-13.2.0.tgz",
"integrity": "sha512-yNBQJe6YFhM1pJAta4LvzQxccSKof6axJH7ALYjuhQqfT8AKlad7Y/2SuJ07ioyreNIqwOTuF2UfU8yJ7JzEIQ==",
"dev": true,
"requires": {
"@commitlint/types": "^13.2.0",
"chalk": "^4.0.0"
}
},
"@commitlint/is-ignored": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-13.2.0.tgz",
"integrity": "sha512-onnx4WctHFPPkHGFFAZBIWRSaNwuhixIIfbwPhcZ6IewwQX5n4jpjwM1GokA7vhlOnQ57W7AavbKUGjzIVtnRQ==",
"dev": true,
"requires": {
"@commitlint/types": "^13.2.0",
"semver": "7.3.5"
},
"dependencies": {
"semver": {
"version": "7.3.5",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz",
"integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==",
"dev": true,
"requires": {
"lru-cache": "^6.0.0"
}
}
}
},
"@commitlint/lint": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-13.2.0.tgz",
"integrity": "sha512-5XYkh0e9ehHjA7BxAHFpjPgr1qqbFY8OFG1wpBiAhycbYBtJnQmculA2wcwqTM40YCUBqEvWFdq86jTG8fbkMw==",
"dev": true,
"requires": {
"@commitlint/is-ignored": "^13.2.0",
"@commitlint/parse": "^13.2.0",
"@commitlint/rules": "^13.2.0",
"@commitlint/types": "^13.2.0"
}
},
"@commitlint/load": {
"version": "13.2.1",
"resolved": "https://registry.npmjs.org/@commitlint/load/-/load-13.2.1.tgz",
"integrity": "sha512-qlaJkj0hfa9gtWRfCfbgFBTK3GYQRmjZhba4l9mUu4wV9lEZ4ICFlrLtd/8kaLXf/8xbrPhkAPkVFOAqM0YwUQ==",
"dev": true,
"requires": {
"@commitlint/execute-rule": "^13.2.0",
"@commitlint/resolve-extends": "^13.2.0",
"@commitlint/types": "^13.2.0",
"@endemolshinegroup/cosmiconfig-typescript-loader": "^3.0.2",
"chalk": "^4.0.0",
"cosmiconfig": "^7.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0",
"typescript": "^4.4.3"
}
},
"@commitlint/message": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/message/-/message-13.2.0.tgz",
"integrity": "sha512-+LlErJj2F2AC86xJb33VJIvSt25xqSF1I0b0GApSgoUtQBeJhx4SxIj1BLvGcLVmbRmbgTzAFq/QylwLId7EhA==",
"dev": true
},
"@commitlint/parse": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-13.2.0.tgz",
"integrity": "sha512-AtfKSQJQADbDhW+kuC5PxOyBANsYCuuJlZRZ2PYslOz2rvWwZ93zt+nKjM4g7C9ETbz0uq4r7/EoOsTJ2nJqfQ==",
"dev": true,
"requires": {
"@commitlint/types": "^13.2.0",
"conventional-changelog-angular": "^5.0.11",
"conventional-commits-parser": "^3.2.2"
}
},
"@commitlint/read": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/read/-/read-13.2.0.tgz",
"integrity": "sha512-7db5e1Bn3re6hQN0SqygTMF/QX6/MQauoJn3wJiUHE93lvwO6aFQxT3qAlYeyBPwfWsmDz/uSH454jtrSsv3Uw==",
"dev": true,
"requires": {
"@commitlint/top-level": "^13.2.0",
"@commitlint/types": "^13.2.0",
"fs-extra": "^10.0.0",
"git-raw-commits": "^2.0.0"
}
},
"@commitlint/resolve-extends": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-13.2.0.tgz",
"integrity": "sha512-HLCMkqMKtvl1yYLZ1Pm0UpFvd0kYjsm1meLOGZ7VkOd9G/XX+Fr1S2G5AT2zeiDw7WUVYK8lGVMNa319bnV+aw==",
"dev": true,
"requires": {
"import-fresh": "^3.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0",
"resolve-global": "^1.0.0"
}
},
"@commitlint/rules": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-13.2.0.tgz",
"integrity": "sha512-O3A9S7blOzvHfzrJrUQe9JxdtGy154ol/GXHwvd8WfMJ10y5ryBB4b6+0YZ1XhItWzrEASOfOKbD++EdLV90dQ==",
"dev": true,
"requires": {
"@commitlint/ensure": "^13.2.0",
"@commitlint/message": "^13.2.0",
"@commitlint/to-lines": "^13.2.0",
"@commitlint/types": "^13.2.0",
"execa": "^5.0.0"
}
},
"@commitlint/to-lines": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-13.2.0.tgz",
"integrity": "sha512-ZfWZix2y/CzewReCrj5g0nKOEfj5HW9eBMDrqjJJMPApve00CWv0tYrFCGXuGlv244lW4uvWJt6J/0HLRWsfyg==",
"dev": true
},
"@commitlint/top-level": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-13.2.0.tgz",
"integrity": "sha512-knBvWYbIq6VV6VPHrVeDsxDiJq4Zq6cv5NIYU3iesKAsmK2KlLfsZPa+Ig96Y4AqAPU3zNJwjHxYkz9qxdBbfA==",
"dev": true,
"requires": {
"find-up": "^5.0.0"
},
"dependencies": {
"find-up": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
"dev": true,
"requires": {
"locate-path": "^6.0.0",
"path-exists": "^4.0.0"
}
},
"locate-path": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
"dev": true,
"requires": {
"p-locate": "^5.0.0"
}
},
"p-limit": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
"dev": true,
"requires": {
"yocto-queue": "^0.1.0"
}
},
"p-locate": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
"dev": true,
"requires": {
"p-limit": "^3.0.2"
}
}
}
},
"@commitlint/types": {
"version": "13.2.0",
"resolved": "https://registry.npmjs.org/@commitlint/types/-/types-13.2.0.tgz",
"integrity": "sha512-RRVHEqmk1qn/dIaSQhvuca6k/6Z54G+r/KyimZ8gnAFielGiGUpsFRhIY3qhd5rXClVxDaa3nlcyTWckSccotQ==",
"dev": true,
"requires": {
"chalk": "^4.0.0"
}
},
"@comunica/actor-abstract-bindings-hash": {
"version": "1.22.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.22.0.tgz",
"integrity": "sha512-3Yrupl0AUFcPtxjImzvPSx6ygCgiJ4Ss0rFIhTuNRvTJohhYc/VpmPjqdprhghtHnhfmIEcqgb7TqdwqlntR2Q==",
"dev": true,
"requires": {
"@comunica/types": "^1.22.0",
"canonicalize": "^1.0.1",
"hash.js": "^1.1.7",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^3.0.0"
}
},
"@comunica/actor-abstract-mediatyped": {
"version": "1.22.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.22.0.tgz",
"integrity": "sha512-+KQLPpx8GFqrhWFfuvrsA4Rjlfbo/QOIo2IvzSgmDwy6YVQZXaSQiNQv/BnrnedaFCf2ONV+w+PMLqXgzn8N9A==",
"dev": true
},
"@comunica/actor-abstract-path": {
"version": "1.22.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.22.0.tgz",
"integrity": "sha512-S7IfWTKWvTTyRDiNb0NApLG1lwh3WKHmmBx6WqI3GicJfS+6kjZqrM2ke5OyVr2R6dpVfu6OnF0TiRYdPVgjEQ==",
"dev": true,
"requires": {
"@comunica/types": "^1.22.0",
"@rdfjs/types": "*",
"asynciterator": "^3.2.0",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^3.0.0"
}
},
"@comunica/actor-context-preprocess-source-to-destination": {
"version": "1.22.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-1.22.0.tgz",
"integrity": "sha512-37aC7WacPIn7yObMubD3QvN0fze9kwBrHDf2M6cwe+54l3uCKYd8jeMH7pJTAT3eSLb32PYU1cxRiwRkQ8gVwQ==",
"dev": true,
"requires": {
"@comunica/context-entries": "^1.22.0"
}
},
"@comunica/actor-http-memento": {
"version": "1.22.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.22.1.tgz",
"integrity": "sha512-H10dWC+RA/xkhORKBMUIw133PxKXmo8ByEeYgbV3QplyeZ5+Wv+0hh+Icil4rC5rsqcpW+iU2TZGK6vfsTQpMQ==",
"dev": true,
"requires": {
"@comunica/context-entries": "^1.22.0",
"@types/parse-link-header": "^1.0.0",
"cross-fetch": "^3.0.5",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-native": {
"version": "1.22.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.22.1.tgz",
"integrity": "sha512-BdB+hvQ9CJF9tI42hNhcvTMagOty+jw21LIQDJWI628xMcXZ88BJaUX0Ulc7g2nrWH97ZRm5+KjLC4Zf+OGwZg==",
"dev": true,
"requires": {
"@comunica/context-entries": "^1.22.0",
"@types/parse-link-header": "^1.0.0",
"cross-fetch": "^3.0.5",
"follow-redirects": "^1.5.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-node-fetch": {
"version": "1.22.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-node-fetch/-/actor-http-node-fetch-1.22.3.tgz",
"integrity": "sha512-e2J8g32QgwcbysOQkFDio757oaPLCGpSs7rRDoGq/daGS8l1m7Ugzhx7Vh3NHcCI3XXrymMOBzMT+ku5ddJbNg==",
"dev": true,
"requires": {
"@comunica/context-entries": "^1.22.0",
"cross-fetch": "^3.0.5"
}
},
"@comunica/actor-http-proxy": {
"version": "1.22.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-1.22.1.tgz",
"integrity": "sha512-q8Dil+MnKeZWKNxLLDXan070TUP+8io7zwwCs5apvaU26ghojBU4OOJx1vL6CInUjZCzTeyCYVPsBbvykjLZ2w==",
"dev": true
},
"@comunica/actor-init-sparql": {
"version": "1.22.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.22.3.tgz",
"integrity": "sha512-rtD4ssn2JSrHHhpoHfvZoe4RpYkSZVuvWb2gh9Pu/sTo4wyIaCuRBc4Wn8N3ZnA4omBzv6/kM2NUF47eabmoBA==",
"dev": true,
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.22.0",
"@comunica/actor-abstract-mediatyped": "^1.22.0",
"@comunica/actor-context-preprocess-source-to-destination": "^1.22.0",
"@comunica/actor-http-memento": "^1.22.1",
"@comunica/actor-http-native": "^1.22.1",
"@comunica/actor-http-node-fetch": "^1.22.3",
"@comunica/actor-http-proxy": "^1.22.1",
"@comunica/actor-optimize-query-operation-join-bgp": "^1.22.0",
"@comunica/actor-query-operation-ask": "^1.22.0",
"@comunica/actor-query-operation-bgp-empty": "^1.22.0",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.22.0",
"@comunica/actor-query-operation-bgp-single": "^1.22.0",
"@comunica/actor-query-operation-construct": "^1.22.0",
"@comunica/actor-query-operation-describe-subject": "^1.22.0",
"@comunica/actor-query-operation-distinct-hash": "^1.22.0",
"@comunica/actor-query-operation-extend": "^1.22.0",
"@comunica/actor-query-operation-filter-sparqlee": "^1.22.0",
"@comunica/actor-query-operation-from-quad": "^1.22.0",
"@comunica/actor-query-operation-group": "^1.22.0",
"@comunica/actor-query-operation-join": "^1.22.0",
"@comunica/actor-query-operation-leftjoin-left-deep": "^1.22.0",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.22.0",
"@comunica/actor-query-operation-minus": "^1.22.0",
"@comunica/actor-query-operation-nop": "^1.22.0",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.22.0",
"@comunica/actor-query-operation-path-alt": "^1.22.0",
"@comunica/actor-query-operation-path-inv": "^1.22.0",
"@comunica/actor-query-operation-path-link": "^1.22.0",
"@comunica/actor-query-operation-path-nps": "^1.22.0",
"@comunica/actor-query-operation-path-one-or-more": "^1.22.0",
"@comunica/actor-query-operation-path-seq": "^1.22.0",
"@comunica/actor-query-operation-path-zero-or-more": "^1.22.0",
"@comunica/actor-query-operation-path-zero-or-one": "^1.22.0",
"@comunica/actor-query-operation-project": "^1.22.0",
"@comunica/actor-query-operation-quadpattern": "^1.22.0",
"@comunica/actor-query-operation-reduced-hash": "^1.22.0",
"@comunica/actor-query-operation-service": "^1.22.3",
"@comunica/actor-query-operation-slice": "^1.22.0",
"@comunica/actor-query-operation-sparql-endpoint": "^1.22.2",
"@comunica/actor-query-operation-union": "^1.22.0",
"@comunica/actor-query-operation-update-add-rewrite": "^1.22.0",
"@comunica/actor-query-operation-update-clear": "^1.22.0",
"@comunica/actor-query-operation-update-compositeupdate": "^1.22.0",
"@comunica/actor-query-operation-update-copy-rewrite": "^1.22.0",
"@comunica/actor-query-operation-update-create": "^1.22.0",
"@comunica/actor-query-operation-update-deleteinsert": "^1.22.2",
"@comunica/actor-query-operation-update-drop": "^1.22.0",
"@comunica/actor-query-operation-update-load": "^1.22.0",
"@comunica/actor-query-operation-update-move-rewrite": "^1.22.0",
"@comunica/actor-query-operation-values": "^1.22.0",
"@comunica/actor-rdf-dereference-fallback": "^1.22.2",
"@comunica/actor-rdf-dereference-http-parse": "^1.22.3",
"@comunica/actor-rdf-join-multi-smallest": "^1.22.0",
"@comunica/actor-rdf-join-nestedloop": "^1.22.0",
"@comunica/actor-rdf-join-symmetrichash": "^1.22.0",
"@comunica/actor-rdf-metadata-all": "^1.22.0",
"@comunica/actor-rdf-metadata-extract-allow-http-methods": "^1.22.0",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.22.0",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.22.0",
"@comunica/actor-rdf-metadata-extract-patch-sparql-update": "^1.22.2",
"@comunica/actor-rdf-metadata-extract-put-accepted": "^1.22.0",
"@comunica/actor-rdf-metadata-extract-sparql-service": "^1.22.0",
"@comunica/actor-rdf-metadata-primary-topic": "^1.22.0",
"@comunica/actor-rdf-parse-html": "^1.22.0",
"@comunica/actor-rdf-parse-html-microdata": "^1.22.0",
"@comunica/actor-rdf-parse-html-rdfa": "^1.22.0",
"@comunica/actor-rdf-parse-html-script": "^1.22.0",
"@comunica/actor-rdf-parse-jsonld": "^1.22.1",
"@comunica/actor-rdf-parse-n3": "^1.22.0",
"@comunica/actor-rdf-parse-rdfxml": "^1.22.0",
"@comunica/actor-rdf-parse-xml-rdfa": "^1.22.0",
"@comunica/actor-rdf-resolve-hypermedia-links-next": "^1.22.0",
"@comunica/actor-rdf-resolve-hypermedia-links-queue-fifo": "^1.22.0",
"@comunica/actor-rdf-resolve-hypermedia-none": "^1.22.0",
"@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.22.2",
"@comunica/actor-rdf-resolve-hypermedia-sparql": "^1.22.1",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.22.0",
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.22.2",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.22.0",
"@comunica/actor-rdf-serialize-jsonld": "^1.22.0",
"@comunica/actor-rdf-serialize-n3": "^1.22.0",
"@comunica/actor-rdf-update-hypermedia-patch-sparql-update": "^1.22.2",
"@comunica/actor-rdf-update-hypermedia-put-ldp": "^1.22.2",
"@comunica/actor-rdf-update-hypermedia-sparql": "^1.22.2",
"@comunica/actor-rdf-update-quads-hypermedia": "^1.22.2",
"@comunica/actor-rdf-update-quads-rdfjs-store": "^1.22.2",
"@comunica/actor-sparql-parse-algebra": "^1.22.0",
"@comunica/actor-sparql-parse-graphql": "^1.22.0",
"@comunica/actor-sparql-serialize-json": "^1.22.0",
"@comunica/actor-sparql-serialize-rdf": "^1.22.0",
"@comunica/actor-sparql-serialize-simple": "^1.22.0",
"@comunica/actor-sparql-serialize-sparql-csv": "^1.22.0",
"@comunica/actor-sparql-serialize-sparql-json": "^1.22.0",
"@comunica/actor-sparql-serialize-sparql-tsv": "^1.22.0",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.22.0",
"@comunica/actor-sparql-serialize-stats": "^1.22.1",
"@comunica/actor-sparql-serialize-table": "^1.22.0",
"@comunica/actor-sparql-serialize-tree": "^1.22.0",
"@comunica/bus-context-preprocess": "^1.22.0",
"@comunica/bus-http": "^1.22.1",
"@comunica/bus-http-invalidate": "^1.22.0",
"@comunica/bus-init": "^1.22.0",
"@comunica/bus-optimize-query-operation": "^1.22.0",
"@comunica/bus-query-operation": "^1.22.0",
"@comunica/bus-rdf-dereference": "^1.22.2",
"@comunica/bus-rdf-dereference-paged": "^1.22.0",
"@comunica/bus-rdf-join": "^1.22.0",
"@comunica/bus-rdf-metadata": "^1.22.0",
"@comunica/bus-rdf-metadata-extract": "^1.22.0",
"@comunica/bus-rdf-parse": "^1.22.0",
"@comunica/bus-rdf-parse-html": "^1.22.0",
"@comunica/bus-rdf-resolve-hypermedia": "^1.22.0",
"@comunica/bus-rdf-resolve-hypermedia-links": "^1.22.0",
"@comunica/bus-rdf-resolve-hypermedia-links-queue": "^1.22.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.22.0",
"@comunica/bus-rdf-serialize": "^1.22.0",
"@comunica/bus-rdf-update-hypermedia": "^1.22.2",
"@comunica/bus-rdf-update-quads": "^1.22.2",
"@comunica/bus-sparql-parse": "^1.22.0",
"@comunica/bus-sparql-serialize": "^1.22.0",
"@comunica/context-entries": "^1.22.0",
"@comunica/core": "^1.22.0",
"@comunica/logger-pretty": "^1.22.0",
"@comunica/logger-void": "^1.22.0",
"@comunica/mediator-all": "^1.22.0",
"@comunica/mediator-combine-pipeline": "^1.22.0",
"@comunica/mediator-combine-union": "^1.22.0",
"@comunica/mediator-number": "^1.22.0",
"@comunica/mediator-race": "^1.22.0",
"@comunica/runner": "^1.22.0",
"@comunica/runner-cli": "^1.22.0",
"@rdfjs/types": "*",