-
Notifications
You must be signed in to change notification settings - Fork 1
/
package-lock.json
8188 lines (8188 loc) · 320 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": "@foerderfunke/matching-engine",
"version": "0.5.7",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@foerderfunke/matching-engine",
"version": "0.5.7",
"license": "MIT",
"dependencies": {
"@comunica/query-sparql-rdfjs": "^2.10.2",
"n3": "^1.17.2",
"rdf-ext": "^2.5.1",
"shacl-engine": "^1.0.1"
},
"devDependencies": {
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
},
"node_modules/@bergos/jsonparse": {
"version": "1.4.1",
"engines": [
"node >= 0.2.0"
],
"license": "MIT",
"dependencies": {
"buffer": "^6.0.3"
}
},
"node_modules/@colors/colors": {
"version": "1.6.0",
"license": "MIT",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "2.10.0",
"license": "MIT",
"dependencies": {
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "2.10.0",
"license": "MIT",
"dependencies": {
"@comunica/core": "^2.10.0",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "2.10.1",
"license": "MIT",
"dependencies": {
"@comunica/bindings-factory": "^2.10.1",
"@comunica/bus-query-operation": "^2.10.1",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-convert-shortcuts/-/actor-context-preprocess-convert-shortcuts-3.2.1.tgz",
"integrity": "sha512-5MoNPBs4te42nOX37GX3GSM8uI7j85u7SX31ImqbZKBmI3J8mJ45XOAyvl/qHI8h6kQZJyOOgephmeSLTbqjuQ==",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts/node_modules/@comunica/bus-context-preprocess": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-context-preprocess/-/bus-context-preprocess-3.2.1.tgz",
"integrity": "sha512-WSkCDhXuBHQSSvFYnLnZi+abm3CL7I+4RhsdTG3vo0HJGoIQoDtLmJl9mIE5a5eqgV7d24ylH63sMakqBn9h/g==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts/node_modules/@comunica/core": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.2.1.tgz",
"integrity": "sha512-P8sOdOSV5ys/kP1VBRcBbjDz20OiPzZo6xxTCYtPek46edUUDgiVTNZj5PBDno4ioCO2V0t/NTjw0RQDxk9L/w==",
"dependencies": {
"@comunica/types": "^3.2.1",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts/node_modules/@comunica/types": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-3.2.1.tgz",
"integrity": "sha512-mLHUT2V0IEUWLYPyFlNMIR5882frHj8099teuOGYyPU+D7rwWu9SD086We0TM+ETIh1CrCY7mwzQvbwO2UvBXg==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-identify/-/actor-context-preprocess-query-source-identify-3.2.1.tgz",
"integrity": "sha512-jwd0sP+i1tNnE1xt/Ud0DMbO2rXCztr8gFC+1Zd7x0HQ4lam8ODD67L1Ik0T5IoRnst3vbUFGsOX14ZsG6eKaw==",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.2.1",
"@comunica/bus-http-invalidate": "^3.2.1",
"@comunica/bus-query-source-identify": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"lru-cache": "^10.0.0"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify/node_modules/@comunica/bus-context-preprocess": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-context-preprocess/-/bus-context-preprocess-3.2.1.tgz",
"integrity": "sha512-WSkCDhXuBHQSSvFYnLnZi+abm3CL7I+4RhsdTG3vo0HJGoIQoDtLmJl9mIE5a5eqgV7d24ylH63sMakqBn9h/g==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify/node_modules/@comunica/bus-http-invalidate": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-http-invalidate/-/bus-http-invalidate-3.2.1.tgz",
"integrity": "sha512-HQjW8D48Y+sn2XtEvvH/Y7tGxiTZk73WzMpS1GAvbYvjL2gP7oh+JiCsAx+mnmPeVWM6eqlxYgMxx4I6kpfftA==",
"dependencies": {
"@comunica/core": "^3.2.1"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify/node_modules/@comunica/context-entries": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.2.1.tgz",
"integrity": "sha512-FLa7i7QTP1RPegPH/yy1LzQLm9iH5rFzRuY9wOWAKh6f8XknsHeJ3JydYFuaus2GIhtUS9K9xpxd03gc1H/pxw==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify/node_modules/@comunica/core": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.2.1.tgz",
"integrity": "sha512-P8sOdOSV5ys/kP1VBRcBbjDz20OiPzZo6xxTCYtPek46edUUDgiVTNZj5PBDno4ioCO2V0t/NTjw0RQDxk9L/w==",
"dependencies": {
"@comunica/types": "^3.2.1",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify/node_modules/@comunica/types": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-3.2.1.tgz",
"integrity": "sha512-mLHUT2V0IEUWLYPyFlNMIR5882frHj8099teuOGYyPU+D7rwWu9SD086We0TM+ETIh1CrCY7mwzQvbwO2UvBXg==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-skolemize/-/actor-context-preprocess-query-source-skolemize-3.2.1.tgz",
"integrity": "sha512-BumYqvf49TYXd03toWrx+BfKQiT+AB+KlC30TprzaK9D7DbFr5Iks8ln2hSTnjyrMDYp/ekFV0XWg7WOutq48A==",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/data-factory": "^3.1.0",
"@comunica/metadata": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-data-factory": "^1.1.2",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize/node_modules/@comunica/bus-context-preprocess": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-context-preprocess/-/bus-context-preprocess-3.2.1.tgz",
"integrity": "sha512-WSkCDhXuBHQSSvFYnLnZi+abm3CL7I+4RhsdTG3vo0HJGoIQoDtLmJl9mIE5a5eqgV7d24ylH63sMakqBn9h/g==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize/node_modules/@comunica/context-entries": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.2.1.tgz",
"integrity": "sha512-FLa7i7QTP1RPegPH/yy1LzQLm9iH5rFzRuY9wOWAKh6f8XknsHeJ3JydYFuaus2GIhtUS9K9xpxd03gc1H/pxw==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize/node_modules/@comunica/core": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.2.1.tgz",
"integrity": "sha512-P8sOdOSV5ys/kP1VBRcBbjDz20OiPzZo6xxTCYtPek46edUUDgiVTNZj5PBDno4ioCO2V0t/NTjw0RQDxk9L/w==",
"dependencies": {
"@comunica/types": "^3.2.1",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize/node_modules/@comunica/data-factory": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/data-factory/-/data-factory-3.1.0.tgz",
"integrity": "sha512-kNEgK+3HPzej8m53//RkZTq9WPYrja9CjrkJqvdgawpMTbg+zEeCoQZ3BGD0LiWiphADpyvYfRFCVpgcHjKvLQ==",
"dependencies": {
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize/node_modules/@comunica/metadata": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/metadata/-/metadata-3.2.1.tgz",
"integrity": "sha512-ymgfdbFb2Ldbkw2P149P2I6oH8+tE9bAwXXcWNQXYcnW9IeXMtxUIDPMFBL4Dy9uzHNFrzQ+m9OzOTYf5LcE5g==",
"dependencies": {
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize/node_modules/@comunica/types": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-3.2.1.tgz",
"integrity": "sha512-mLHUT2V0IEUWLYPyFlNMIR5882frHj8099teuOGYyPU+D7rwWu9SD086We0TM+ETIh1CrCY7mwzQvbwO2UvBXg==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-set-defaults/-/actor-context-preprocess-set-defaults-3.2.1.tgz",
"integrity": "sha512-f7vcut2xlrfJd3cKWw1eU0qdcGRScyE+n9MQMGl3YSyv2BMCOROTs47c+nkzKzGyv/DEp4vzOsSJz8SXqSJU5w==",
"dependencies": {
"@comunica/bus-context-preprocess": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults/node_modules/@comunica/bus-context-preprocess": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-context-preprocess/-/bus-context-preprocess-3.2.1.tgz",
"integrity": "sha512-WSkCDhXuBHQSSvFYnLnZi+abm3CL7I+4RhsdTG3vo0HJGoIQoDtLmJl9mIE5a5eqgV7d24ylH63sMakqBn9h/g==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults/node_modules/@comunica/context-entries": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.2.1.tgz",
"integrity": "sha512-FLa7i7QTP1RPegPH/yy1LzQLm9iH5rFzRuY9wOWAKh6f8XknsHeJ3JydYFuaus2GIhtUS9K9xpxd03gc1H/pxw==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults/node_modules/@comunica/core": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.2.1.tgz",
"integrity": "sha512-P8sOdOSV5ys/kP1VBRcBbjDz20OiPzZo6xxTCYtPek46edUUDgiVTNZj5PBDno4ioCO2V0t/NTjw0RQDxk9L/w==",
"dependencies": {
"@comunica/types": "^3.2.1",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults/node_modules/@comunica/types": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-3.2.1.tgz",
"integrity": "sha512-mLHUT2V0IEUWLYPyFlNMIR5882frHj8099teuOGYyPU+D7rwWu9SD086We0TM+ETIh1CrCY7mwzQvbwO2UvBXg==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "2.10.0",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^2.10.0",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1": {
"version": "2.10.0",
"license": "MIT",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.10.0",
"@comunica/core": "^2.10.0",
"canonicalize": "^2.0.0",
"hash.js": "^1.1.7",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-hash-quads-sha1": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-quads-sha1/-/actor-hash-quads-sha1-3.2.1.tgz",
"integrity": "sha512-jcmfIolhbl/1qb5ymupPkWGbbEuR/BCUD/2+ooJAHzoZheB85bZ5cQvIki7hMUPDul5SP277zOzZEdiCjYqZtA==",
"dependencies": {
"@comunica/bus-hash-quads": "^3.2.1",
"@comunica/core": "^3.2.1",
"hash.js": "^1.1.7",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-hash-quads-sha1/node_modules/@comunica/core": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.2.1.tgz",
"integrity": "sha512-P8sOdOSV5ys/kP1VBRcBbjDz20OiPzZo6xxTCYtPek46edUUDgiVTNZj5PBDno4ioCO2V0t/NTjw0RQDxk9L/w==",
"dependencies": {
"@comunica/types": "^3.2.1",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-hash-quads-sha1/node_modules/@comunica/types": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-3.2.1.tgz",
"integrity": "sha512-mLHUT2V0IEUWLYPyFlNMIR5882frHj8099teuOGYyPU+D7rwWu9SD086We0TM+ETIh1CrCY7mwzQvbwO2UvBXg==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-http-fetch": {
"version": "2.10.2",
"license": "MIT",
"dependencies": {
"@comunica/bus-http": "^2.10.2",
"@comunica/context-entries": "^2.10.0",
"@comunica/mediatortype-time": "^2.10.0",
"abort-controller": "^3.0.0",
"cross-fetch": "^4.0.0"
}
},
"node_modules/@comunica/actor-http-fetch/node_modules/cross-fetch": {
"version": "4.0.0",
"license": "MIT",
"dependencies": {
"node-fetch": "^2.6.12"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "2.10.2",
"license": "MIT",
"dependencies": {
"@comunica/bus-http": "^2.10.2",
"@comunica/context-entries": "^2.10.0",
"@comunica/mediatortype-time": "^2.10.0",
"@comunica/types": "^2.10.0"
}
},
"node_modules/@comunica/actor-init-query": {
"version": "2.10.2",
"license": "MIT",
"dependencies": {
"@comunica/actor-http-proxy": "^2.10.2",
"@comunica/bus-context-preprocess": "^2.10.0",
"@comunica/bus-http-invalidate": "^2.10.0",
"@comunica/bus-init": "^2.10.0",
"@comunica/bus-optimize-query-operation": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.1",
"@comunica/bus-query-parse": "^2.10.0",
"@comunica/bus-query-result-serialize": "^2.10.0",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/logger-pretty": "^2.10.0",
"@comunica/runner": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.8.1",
"negotiate": "^1.0.1",
"rdf-quad": "^1.5.0",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.2.0",
"streamify-string": "^1.0.1",
"yargs": "^17.7.2"
},
"optionalDependencies": {
"process": "^0.11.10"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/-/actor-optimize-query-operation-assign-sources-exhaustive-3.2.1.tgz",
"integrity": "sha512-SB+3RpWv8cOzXe3smmGd6Le5AKV3vZhOj8dg7hxbE4T/YUPHacXfiCj98zXNO5gUpcKRt8PiMxKnaRf9mDlKZw==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.1",
"@comunica/bus-rdf-update-quads": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/node_modules/@comunica/bindings-factory": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bindings-factory/-/bindings-factory-3.2.1.tgz",
"integrity": "sha512-IzHAXMFGOF5DevsmyW1SUWPIqqWcjMlG/J1tJkKEu4jxPqqEzNSo/rJRjBsfRxpQiFYnOCl1U6H8C48ERCPzCQ==",
"dependencies": {
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"immutable": "^4.1.0",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/node_modules/@comunica/bus-optimize-query-operation": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-optimize-query-operation/-/bus-optimize-query-operation-3.2.1.tgz",
"integrity": "sha512-GLPZDwmk9IkyCUR+meXNwbNV2XAQiCqOf0kt8VnSA36evcdKGdCKzpAmBDEWjLgAHIYSqR5u3kzXHU3nMyVLVg==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/node_modules/@comunica/bus-query-operation": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-query-operation/-/bus-query-operation-3.2.1.tgz",
"integrity": "sha512-aOUSXjWPgPfJ1dOFEXvze9dQdrrKKP1Y5R1PSKa+bubudmGcNkhCkoDeDC072DgMwQ4bV0APY5QPtSRC0CGFbg==",
"dependencies": {
"@comunica/bindings-factory": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/data-factory": "^3.1.0",
"@comunica/metadata": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-data-factory": "^1.1.2",
"rdf-string": "^1.6.1",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/node_modules/@comunica/bus-rdf-update-quads": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-update-quads/-/bus-rdf-update-quads-3.2.1.tgz",
"integrity": "sha512-CDWLKnZ1dKyJ/Sp+cVKmOQoOy9KGL+U0cXuTob6JjMuki5kocoMISKD9Zx2DH+WCVFS1nzz6dRNd0js3U1L5KQ==",
"dependencies": {
"@comunica/actor-context-preprocess-query-source-skolemize": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/node_modules/@comunica/context-entries": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.2.1.tgz",
"integrity": "sha512-FLa7i7QTP1RPegPH/yy1LzQLm9iH5rFzRuY9wOWAKh6f8XknsHeJ3JydYFuaus2GIhtUS9K9xpxd03gc1H/pxw==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/node_modules/@comunica/core": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.2.1.tgz",
"integrity": "sha512-P8sOdOSV5ys/kP1VBRcBbjDz20OiPzZo6xxTCYtPek46edUUDgiVTNZj5PBDno4ioCO2V0t/NTjw0RQDxk9L/w==",
"dependencies": {
"@comunica/types": "^3.2.1",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/node_modules/@comunica/data-factory": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/data-factory/-/data-factory-3.1.0.tgz",
"integrity": "sha512-kNEgK+3HPzej8m53//RkZTq9WPYrja9CjrkJqvdgawpMTbg+zEeCoQZ3BGD0LiWiphADpyvYfRFCVpgcHjKvLQ==",
"dependencies": {
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/node_modules/@comunica/metadata": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/metadata/-/metadata-3.2.1.tgz",
"integrity": "sha512-ymgfdbFb2Ldbkw2P149P2I6oH8+tE9bAwXXcWNQXYcnW9IeXMtxUIDPMFBL4Dy9uzHNFrzQ+m9OzOTYf5LcE5g==",
"dependencies": {
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-assign-sources-exhaustive/node_modules/@comunica/types": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-3.2.1.tgz",
"integrity": "sha512-mLHUT2V0IEUWLYPyFlNMIR5882frHj8099teuOGYyPU+D7rwWu9SD086We0TM+ETIh1CrCY7mwzQvbwO2UvBXg==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-bgp-to-join": {
"version": "2.10.0",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-construct-distinct": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-construct-distinct/-/actor-optimize-query-operation-construct-distinct-3.2.1.tgz",
"integrity": "sha512-5/2r7+uIVwFHSvWkxfo3kFZyN/qXC4TlqeE/Fbens+fEjBgffKHENGzr75NPXb1MVscWDfVFwlC2i+67lm+2+w==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"sparqlalgebrajs": "^4.3.8"
}
},
"node_modules/@comunica/actor-optimize-query-operation-construct-distinct/node_modules/@comunica/bus-optimize-query-operation": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-optimize-query-operation/-/bus-optimize-query-operation-3.2.1.tgz",
"integrity": "sha512-GLPZDwmk9IkyCUR+meXNwbNV2XAQiCqOf0kt8VnSA36evcdKGdCKzpAmBDEWjLgAHIYSqR5u3kzXHU3nMyVLVg==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-construct-distinct/node_modules/@comunica/context-entries": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.2.1.tgz",
"integrity": "sha512-FLa7i7QTP1RPegPH/yy1LzQLm9iH5rFzRuY9wOWAKh6f8XknsHeJ3JydYFuaus2GIhtUS9K9xpxd03gc1H/pxw==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-construct-distinct/node_modules/@comunica/core": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.2.1.tgz",
"integrity": "sha512-P8sOdOSV5ys/kP1VBRcBbjDz20OiPzZo6xxTCYtPek46edUUDgiVTNZj5PBDno4ioCO2V0t/NTjw0RQDxk9L/w==",
"dependencies": {
"@comunica/types": "^3.2.1",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-construct-distinct/node_modules/@comunica/types": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-3.2.1.tgz",
"integrity": "sha512-mLHUT2V0IEUWLYPyFlNMIR5882frHj8099teuOGYyPU+D7rwWu9SD086We0TM+ETIh1CrCY7mwzQvbwO2UvBXg==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-describe-to-constructs-subject": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-describe-to-constructs-subject/-/actor-optimize-query-operation-describe-to-constructs-subject-3.2.1.tgz",
"integrity": "sha512-MuKqNcivdJ13LKtT4IR3QZMPsv4iJJ9Qhi+Ql1nw7vAGhEbf7DQpcFhVtsS1fRcWozfGxaL+zy3ifEK+Vzq5sQ==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/core": "^3.2.1",
"rdf-data-factory": "^1.1.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-describe-to-constructs-subject/node_modules/@comunica/bus-optimize-query-operation": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-optimize-query-operation/-/bus-optimize-query-operation-3.2.1.tgz",
"integrity": "sha512-GLPZDwmk9IkyCUR+meXNwbNV2XAQiCqOf0kt8VnSA36evcdKGdCKzpAmBDEWjLgAHIYSqR5u3kzXHU3nMyVLVg==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-describe-to-constructs-subject/node_modules/@comunica/core": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.2.1.tgz",
"integrity": "sha512-P8sOdOSV5ys/kP1VBRcBbjDz20OiPzZo6xxTCYtPek46edUUDgiVTNZj5PBDno4ioCO2V0t/NTjw0RQDxk9L/w==",
"dependencies": {
"@comunica/types": "^3.2.1",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-describe-to-constructs-subject/node_modules/@comunica/types": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-3.2.1.tgz",
"integrity": "sha512-mLHUT2V0IEUWLYPyFlNMIR5882frHj8099teuOGYyPU+D7rwWu9SD086We0TM+ETIh1CrCY7mwzQvbwO2UvBXg==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-filter-pushdown": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-filter-pushdown/-/actor-optimize-query-operation-filter-pushdown-3.2.1.tgz",
"integrity": "sha512-9eRRiMULMyl7ImOrwQACLdPnl8uANvpFrKLvBmAg+e8lECTiXis79OtJIeqVid9JKInI2RqW/+7LjkY7khpW5g==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-filter-pushdown/node_modules/@comunica/bus-optimize-query-operation": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-optimize-query-operation/-/bus-optimize-query-operation-3.2.1.tgz",
"integrity": "sha512-GLPZDwmk9IkyCUR+meXNwbNV2XAQiCqOf0kt8VnSA36evcdKGdCKzpAmBDEWjLgAHIYSqR5u3kzXHU3nMyVLVg==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-filter-pushdown/node_modules/@comunica/core": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.2.1.tgz",
"integrity": "sha512-P8sOdOSV5ys/kP1VBRcBbjDz20OiPzZo6xxTCYtPek46edUUDgiVTNZj5PBDno4ioCO2V0t/NTjw0RQDxk9L/w==",
"dependencies": {
"@comunica/types": "^3.2.1",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-filter-pushdown/node_modules/@comunica/types": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-3.2.1.tgz",
"integrity": "sha512-mLHUT2V0IEUWLYPyFlNMIR5882frHj8099teuOGYyPU+D7rwWu9SD086We0TM+ETIh1CrCY7mwzQvbwO2UvBXg==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-group-sources": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-group-sources/-/actor-optimize-query-operation-group-sources-3.2.1.tgz",
"integrity": "sha512-6eI7yLcX4cfwacfK7yKmKrPpV0z92Oi1MwWA4WVZDXE7GOJ4aeSOOj4vs93J7oLu0wpBRazViVRDsKk7pppUCg==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-group-sources/node_modules/@comunica/bindings-factory": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bindings-factory/-/bindings-factory-3.2.1.tgz",
"integrity": "sha512-IzHAXMFGOF5DevsmyW1SUWPIqqWcjMlG/J1tJkKEu4jxPqqEzNSo/rJRjBsfRxpQiFYnOCl1U6H8C48ERCPzCQ==",
"dependencies": {
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"immutable": "^4.1.0",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-optimize-query-operation-group-sources/node_modules/@comunica/bus-optimize-query-operation": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-optimize-query-operation/-/bus-optimize-query-operation-3.2.1.tgz",
"integrity": "sha512-GLPZDwmk9IkyCUR+meXNwbNV2XAQiCqOf0kt8VnSA36evcdKGdCKzpAmBDEWjLgAHIYSqR5u3kzXHU3nMyVLVg==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-group-sources/node_modules/@comunica/bus-query-operation": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-query-operation/-/bus-query-operation-3.2.1.tgz",
"integrity": "sha512-aOUSXjWPgPfJ1dOFEXvze9dQdrrKKP1Y5R1PSKa+bubudmGcNkhCkoDeDC072DgMwQ4bV0APY5QPtSRC0CGFbg==",
"dependencies": {
"@comunica/bindings-factory": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/data-factory": "^3.1.0",
"@comunica/metadata": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-data-factory": "^1.1.2",
"rdf-string": "^1.6.1",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-group-sources/node_modules/@comunica/context-entries": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.2.1.tgz",
"integrity": "sha512-FLa7i7QTP1RPegPH/yy1LzQLm9iH5rFzRuY9wOWAKh6f8XknsHeJ3JydYFuaus2GIhtUS9K9xpxd03gc1H/pxw==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-group-sources/node_modules/@comunica/core": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.2.1.tgz",
"integrity": "sha512-P8sOdOSV5ys/kP1VBRcBbjDz20OiPzZo6xxTCYtPek46edUUDgiVTNZj5PBDno4ioCO2V0t/NTjw0RQDxk9L/w==",
"dependencies": {
"@comunica/types": "^3.2.1",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-group-sources/node_modules/@comunica/data-factory": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/data-factory/-/data-factory-3.1.0.tgz",
"integrity": "sha512-kNEgK+3HPzej8m53//RkZTq9WPYrja9CjrkJqvdgawpMTbg+zEeCoQZ3BGD0LiWiphADpyvYfRFCVpgcHjKvLQ==",
"dependencies": {
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-optimize-query-operation-group-sources/node_modules/@comunica/metadata": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/metadata/-/metadata-3.2.1.tgz",
"integrity": "sha512-ymgfdbFb2Ldbkw2P149P2I6oH8+tE9bAwXXcWNQXYcnW9IeXMtxUIDPMFBL4Dy9uzHNFrzQ+m9OzOTYf5LcE5g==",
"dependencies": {
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-group-sources/node_modules/@comunica/types": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-3.2.1.tgz",
"integrity": "sha512-mLHUT2V0IEUWLYPyFlNMIR5882frHj8099teuOGYyPU+D7rwWu9SD086We0TM+ETIh1CrCY7mwzQvbwO2UvBXg==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "2.10.0",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-connected": {
"version": "2.10.0",
"license": "MIT",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-prune-empty-source-operations/-/actor-optimize-query-operation-prune-empty-source-operations-3.2.1.tgz",
"integrity": "sha512-2+xK0M8itZ8CvnzQOPIfTQGGmlYYMg7XtzYn9yyfHpatuQmUjGMFj53BCDOm+wzy+COpyOykmuPKrxqJChRvlg==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/bus-query-operation": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"rdf-data-factory": "^1.1.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations/node_modules/@comunica/bindings-factory": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bindings-factory/-/bindings-factory-3.2.1.tgz",
"integrity": "sha512-IzHAXMFGOF5DevsmyW1SUWPIqqWcjMlG/J1tJkKEu4jxPqqEzNSo/rJRjBsfRxpQiFYnOCl1U6H8C48ERCPzCQ==",
"dependencies": {
"@comunica/bus-merge-bindings-context": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"immutable": "^4.1.0",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations/node_modules/@comunica/bus-optimize-query-operation": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-optimize-query-operation/-/bus-optimize-query-operation-3.2.1.tgz",
"integrity": "sha512-GLPZDwmk9IkyCUR+meXNwbNV2XAQiCqOf0kt8VnSA36evcdKGdCKzpAmBDEWjLgAHIYSqR5u3kzXHU3nMyVLVg==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations/node_modules/@comunica/bus-query-operation": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-query-operation/-/bus-query-operation-3.2.1.tgz",
"integrity": "sha512-aOUSXjWPgPfJ1dOFEXvze9dQdrrKKP1Y5R1PSKa+bubudmGcNkhCkoDeDC072DgMwQ4bV0APY5QPtSRC0CGFbg==",
"dependencies": {
"@comunica/bindings-factory": "^3.2.1",
"@comunica/context-entries": "^3.2.1",
"@comunica/core": "^3.2.1",
"@comunica/data-factory": "^3.1.0",
"@comunica/metadata": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-data-factory": "^1.1.2",
"rdf-string": "^1.6.1",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations/node_modules/@comunica/context-entries": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/context-entries/-/context-entries-3.2.1.tgz",
"integrity": "sha512-FLa7i7QTP1RPegPH/yy1LzQLm9iH5rFzRuY9wOWAKh6f8XknsHeJ3JydYFuaus2GIhtUS9K9xpxd03gc1H/pxw==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"jsonld-context-parser": "^2.2.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations/node_modules/@comunica/core": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.2.1.tgz",
"integrity": "sha512-P8sOdOSV5ys/kP1VBRcBbjDz20OiPzZo6xxTCYtPek46edUUDgiVTNZj5PBDno4ioCO2V0t/NTjw0RQDxk9L/w==",
"dependencies": {
"@comunica/types": "^3.2.1",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations/node_modules/@comunica/data-factory": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/@comunica/data-factory/-/data-factory-3.1.0.tgz",
"integrity": "sha512-kNEgK+3HPzej8m53//RkZTq9WPYrja9CjrkJqvdgawpMTbg+zEeCoQZ3BGD0LiWiphADpyvYfRFCVpgcHjKvLQ==",
"dependencies": {
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations/node_modules/@comunica/metadata": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/metadata/-/metadata-3.2.1.tgz",
"integrity": "sha512-ymgfdbFb2Ldbkw2P149P2I6oH8+tE9bAwXXcWNQXYcnW9IeXMtxUIDPMFBL4Dy9uzHNFrzQ+m9OzOTYf5LcE5g==",
"dependencies": {
"@comunica/types": "^3.2.1",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-prune-empty-source-operations/node_modules/@comunica/types": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-3.2.1.tgz",
"integrity": "sha512-mLHUT2V0IEUWLYPyFlNMIR5882frHj8099teuOGYyPU+D7rwWu9SD086We0TM+ETIh1CrCY7mwzQvbwO2UvBXg==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-rewrite-add": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-rewrite-add/-/actor-optimize-query-operation-rewrite-add-3.2.1.tgz",
"integrity": "sha512-QLVN2DVcJhL3L9PdPTAQ+dtixjzVNyRhwLjKpFkU/YoKloR6rAO77tRQzqmWLVIT/vqc4i3Y0EvAA9qQh/Mq1Q==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/core": "^3.2.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.2",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-rewrite-add/node_modules/@comunica/bus-optimize-query-operation": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-optimize-query-operation/-/bus-optimize-query-operation-3.2.1.tgz",
"integrity": "sha512-GLPZDwmk9IkyCUR+meXNwbNV2XAQiCqOf0kt8VnSA36evcdKGdCKzpAmBDEWjLgAHIYSqR5u3kzXHU3nMyVLVg==",
"dependencies": {
"@comunica/core": "^3.2.1",
"@comunica/types": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-rewrite-add/node_modules/@comunica/core": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-3.2.1.tgz",
"integrity": "sha512-P8sOdOSV5ys/kP1VBRcBbjDz20OiPzZo6xxTCYtPek46edUUDgiVTNZj5PBDno4ioCO2V0t/NTjw0RQDxk9L/w==",
"dependencies": {
"@comunica/types": "^3.2.1",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-rewrite-add/node_modules/@comunica/types": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-3.2.1.tgz",
"integrity": "sha512-mLHUT2V0IEUWLYPyFlNMIR5882frHj8099teuOGYyPU+D7rwWu9SD086We0TM+ETIh1CrCY7mwzQvbwO2UvBXg==",
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.9.0",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-rewrite-copy": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-rewrite-copy/-/actor-optimize-query-operation-rewrite-copy-3.2.1.tgz",
"integrity": "sha512-dxJ583C2FeTPDGRGlu5O/aglufXItKhgXvb6Nz4I22oDtuumX2P+vYnzs2zRAn3a80kajBy1pCpulkikjgLbtw==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^3.2.1",
"@comunica/core": "^3.2.1",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-optimize-query-operation-rewrite-copy/node_modules/@comunica/bus-optimize-query-operation": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-optimize-query-operation/-/bus-optimize-query-operation-3.2.1.tgz",