-
Notifications
You must be signed in to change notification settings - Fork 1
/
package-lock.json
4442 lines (4442 loc) · 194 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": "code",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "code",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"@ajuvercr/js-runner": "^0.1.12",
"@treecg/actor-init-ldes-client": "^4.0.9",
"n3": "^1.17.2"
}
},
"node_modules/@ajuvercr/js-runner": {
"version": "0.1.12",
"resolved": "https://registry.npmjs.org/@ajuvercr/js-runner/-/js-runner-0.1.12.tgz",
"integrity": "sha512-DWbY1eJvuweoQV9uYEdiqciLtL7BZLLmb57NctBphvUgjWYfxjgoFvQk3mBMFzve3urD0AhCmVHrYEs6DUWqew==",
"dependencies": {
"@rdfjs/types": "^1.1.0",
"@treecg/types": "^0.4.5",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"kafkajs": "^2.2.4",
"n3": "^1.17.1",
"rdf-lens": "^0.0.4",
"stream-to-array": "^2.3.0",
"ws": "^8.14.2"
},
"bin": {
"js-runner": "bin/bundle.mjs"
}
},
"node_modules/@bergos/jsonparse": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@bergos/jsonparse/-/jsonparse-1.4.1.tgz",
"integrity": "sha512-vXIT0nzZGX/+yMD5bx2VhTzc92H55tPoehh1BW/FZHOndWGFddrH3MAfdx39FRc7irABirW6EQaGxIJYV6CGuA==",
"engines": [
"node >= 0.2.0"
],
"dependencies": {
"buffer": "^6.0.3"
}
},
"node_modules/@colors/colors": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz",
"integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-2.10.0.tgz",
"integrity": "sha512-0o6WBujsMnIVcwvRJv6Nj+kKPLZzqBS3On48rm01Rh9T1/My0E/buJMXwgcARKCfMonc2mJ9zxpPCh5ilGEU2A==",
"dependencies": {
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-2.10.0.tgz",
"integrity": "sha512-0puCWF+y24EDOOAUUVVbC+tOf4UV+LzEbqi8T5v25jcVGCXyTqfra+bDywfrcv3adrVp18jLCJ46ycaH5xhy9Q==",
"dependencies": {
"@comunica/core": "^2.10.0",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-2.10.0.tgz",
"integrity": "sha512-cfVzA4inMufpFcLIlwMCFhRFAzxPvoJPwEd4NTr0k9VLMFLL070bUEEa03uFf6VC2dXiEgB1dZ51QTTj6FPX0g==",
"dependencies": {
"@comunica/bindings-factory": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@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-source-to-destination": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-2.10.0.tgz",
"integrity": "sha512-sQc42Sd4cuVumZ9+PDnWBTBYneqCFShFliK8Et83GR3wBGzu9x0tS/M2o3e63sBbb6ZkWHyO5jl/O8AbrjhcTg==",
"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-dereference-fallback": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-2.10.0.tgz",
"integrity": "sha512-RSc/ScPdC7l13aZjz/6r4niWA8WDETbzuESQKKSWXi/HAlFOyOxdrDADdayVY2oyeZHIQibeNRtSi2ItzU7OPQ==",
"dependencies": {
"@comunica/bus-dereference": "^2.10.0",
"@comunica/core": "^2.10.0"
}
},
"node_modules/@comunica/actor-dereference-file": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-file/-/actor-dereference-file-2.10.0.tgz",
"integrity": "sha512-WXfAyHm0M3+YbYEtLtasT6YHsrzTAevmH27ex8r51qKNj2LK74llpw4mSeea3xyjQR30jVnKBIJSxuSbN64Now==",
"dependencies": {
"@comunica/bus-dereference": "^2.10.0",
"@comunica/core": "^2.10.0"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-2.10.0.tgz",
"integrity": "sha512-q+sJDjiyO/pwY9OwfzK6lS/gROhaqwFgWQNEjz1IuXLalqcFOjIiYqBuzhKLbtcFmXM+cnqWS2ZBtSFD4JLDhg==",
"dependencies": {
"@comunica/bus-dereference": "^2.10.0",
"@comunica/bus-http": "^2.10.0",
"@comunica/core": "^2.10.0",
"cross-fetch": "^4.0.0",
"relative-to-absolute-iri": "^1.0.7",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-dereference-rdf-parse": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-2.10.0.tgz",
"integrity": "sha512-ANWL6Bv+2WHUjVRS7hfkOfVBNJs8xYZ9KHlgBOQ94CKtQZB9uSMjdb1hLp/cQjiDmFIWLn0+GM5Xi0KFwBkVAw==",
"dependencies": {
"@comunica/bus-dereference": "^2.10.0",
"@comunica/bus-dereference-rdf": "^2.10.0",
"@comunica/bus-rdf-parse": "^2.10.0"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-bindings-sha1/-/actor-hash-bindings-sha1-2.10.0.tgz",
"integrity": "sha512-f981PcCiDWbdZfM1ct1v1q/VII14y18lo1enEdHB25SF0hCkzIDwh9IrfDfJDju5I6luSWNE/MYMMeAAmF9e3g==",
"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-http-fetch": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-fetch/-/actor-http-fetch-2.10.0.tgz",
"integrity": "sha512-4rcRFQ7HQ1qCNNnlSYl1gE58M2AsJZsUg7CoKT2NM2TvvnB1A4KaRQVfM185t9dhrbs595bIcA8WUUVIY+ofCw==",
"dependencies": {
"@comunica/bus-http": "^2.10.0",
"@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-proxy": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-2.10.0.tgz",
"integrity": "sha512-WpwjGRZcIPcnR8OVumrlmLPfYR5livQsUbOPqmYFDxjI+xDfuOYvCPc/uLyYyBpMH10dejmaRWeCUsIguZz5ZQ==",
"dependencies": {
"@comunica/bus-http": "^2.10.0",
"@comunica/context-entries": "^2.10.0",
"@comunica/mediatortype-time": "^2.10.0",
"@comunica/types": "^2.10.0"
}
},
"node_modules/@comunica/actor-http-wayback": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-wayback/-/actor-http-wayback-2.10.0.tgz",
"integrity": "sha512-dwSTkXgXhWrVeBURJWvRrdRnPiCa0ywhSq58+UPE+6w6y4MgHH3v1Ee7SuC3zVl39vLx1i0LtiyA8Oi1qqRGBg==",
"dependencies": {
"@comunica/bus-http": "^2.10.0",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"cross-fetch": "^4.0.0",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-init-query": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-query/-/actor-init-query-2.10.0.tgz",
"integrity": "sha512-YKazN0RIpRXWuFK2YYEWE1XJSKvFIsdoUH//8BakbGbDoewrXYF0rMRRfaHMZdxl83rqM/M5cQ+kQqfhX2A4mQ==",
"dependencies": {
"@comunica/actor-http-proxy": "^2.10.0",
"@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.0",
"@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-bgp-to-join": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-bgp-to-join/-/actor-optimize-query-operation-bgp-to-join-2.10.0.tgz",
"integrity": "sha512-M9vwM4a3VQA/ir8Q7eGRNzzx52u6RJFIXBW8p+Zkn+zv+4fsket3zLYJGhJU7dcvaSXcOi68rDP/r8KfgNXr4Q==",
"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-bgp": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-2.10.0.tgz",
"integrity": "sha512-tzZojWPbWn/S0DZGjGfV90ZRJVWT/yX3DKGgZ1ur33U5TW8n/fBQxHNMPCLu0GkMQ1dyx6bU+ekILTqm+21Jyw==",
"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",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-connected/-/actor-optimize-query-operation-join-connected-2.10.0.tgz",
"integrity": "sha512-RsbKIAxX1HyoR/AUzqIV++dTcLiEElRIVDHYTaXVVvGgHECYdh9s+oc8cvv/lDbLVpfnc6P9C9BTAfrqOjKkhA==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-2.10.0.tgz",
"integrity": "sha512-3VxOBLa9W8D76S0UJ8kvEsBv58uu2uDcOurxdPrcP7rFP2+NJRcR7U4U6173CBZ7JOF3kz6iOX2CJQfTncTSDQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-join": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-join/-/actor-query-operation-bgp-join-2.10.0.tgz",
"integrity": "sha512-U/ZMvuhhCQYFFqqp4m0Ww5hoj/qcxPnlskh8O0TMgSVk4ozkhYE5wbpXRvFN1DyqkFTvMqOm/FbnoJbVPOw8wg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-2.10.0.tgz",
"integrity": "sha512-7boEkt3MHlfHe5hxDJzolrSps+uCFvIZPWRiSQ1EJhT4el8WES9kWhveo8guJuMMHanVLC42FfHwUA+xF879RA==",
"dependencies": {
"@comunica/bus-query-operation": "^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-terms": "^1.11.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-describe-subject": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-2.10.0.tgz",
"integrity": "sha512-hN/kY1C9P9xwo4p+LAqVme70spr+MIyojzf6sh0kYHyA+Ea57QS8cX4diWU3LYJXcHg5Eqxq/9M8bgThORctcA==",
"dependencies": {
"@comunica/actor-query-operation-union": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-distinct-hash": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-2.10.0.tgz",
"integrity": "sha512-KxMhQbc0sSexlORdAdOe20juVHruWHWsPDMnImj8vkIU4RheVq5H+jz7sQcDPGCH0jBL6UJUA2wo/n9PNhMoFw==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-extend": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-2.10.0.tgz",
"integrity": "sha512-db3qX4bf9xgSd/s65ZTjiQJDxVJ6pnCBQBdI/qIgoR2e24z/+maNkvbp2g6WWdks82q6/yJhd33EzVjjJ/bOKA==",
"dependencies": {
"@comunica/bindings-factory": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/expression-evaluator": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-filter-sparqlee": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-2.10.0.tgz",
"integrity": "sha512-TK2CAcceJQFpleksSGGsVbIM+NepBTcfKex1r9TjbJ8LXsyB5pdNCd+iRGdyzDFGGuha80gkoYUVfis2z/1lsA==",
"dependencies": {
"@comunica/bindings-factory": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/expression-evaluator": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-from-quad": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-2.10.0.tgz",
"integrity": "sha512-SoSwY2M83JudywsiaK7KqUCbeFdwhrD7sInu+35SiLOCUY24cFImyuwAVGCzujuawJlDROfV/fp2vAz9wcn01w==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-group": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-2.10.0.tgz",
"integrity": "sha512-epiCodZm1573luWbw3sN3ELniPhVRz/8Gu7Y1tLFE2ogEWtwQIAR7YtsnrGFlrG95ZxOiFEUldjy1g4TpvciVQ==",
"dependencies": {
"@comunica/bindings-factory": "^2.10.0",
"@comunica/bus-hash-bindings": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/expression-evaluator": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-join": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-2.10.0.tgz",
"integrity": "sha512-xO+fgRqZIf/O4+Jn97cp00PbZ5gPoYrXKL00K+V7/fKS9cBIsEqMMyV0qXIPAM3Zxuj7QBJiqLxW/JvtpjjqSQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/bus-rdf-join": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin/-/actor-query-operation-leftjoin-2.10.0.tgz",
"integrity": "sha512-Q8Omkn3FB6kx9h40PHv+lX639SH9PcR1eEAJazIWvnA2ilSgy0IsZWDnTQFfWtR1SrIyGJVg9GaxzxAY5QflZw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/bus-rdf-join": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/expression-evaluator": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-minus": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-2.10.0.tgz",
"integrity": "sha512-2e/1kGrT/bgfNf6k8wLMhn13dK3XzRWMNSvjXOTFtvbPC3/xc8WJ9hYWZ1LEyaAufNBck3nWFqsvyuhYox/7UA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/bus-rdf-join": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-nop": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-nop/-/actor-query-operation-nop-2.10.0.tgz",
"integrity": "sha512-uI2lk5NNKJ/yOUmIuuCTMlv2N9XUqh7AgoLU+Nwg7cgN+Bi71SNVYatYi7v32C8NNAbC28Tqt35ww71k5eLOHg==",
"dependencies": {
"@comunica/bindings-factory": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/metadata": "^2.10.0",
"@comunica/types": "^2.10.0",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-orderby-sparqlee": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-2.10.0.tgz",
"integrity": "sha512-EJsHAaAspedG5ZSk/Dx8Xtrn9JSnQVuelRIVxtTnVLfIkCO59N/gvE1FBrenof583PQEzZOmxaweSuEyeCnhgQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/expression-evaluator": "^2.10.0",
"@comunica/types": "^2.10.0",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-alt": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-2.10.0.tgz",
"integrity": "sha512-vDDfR4VX8r6iCqoeBfwYB1Y+Ljypw/fJe+6Qj0ZwfuvCllmmNwNASAUKPraEjZXpBEGr3RW2BSPBPhOdN50Wzw==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.10.0",
"@comunica/actor-query-operation-union": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/types": "^2.10.0",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-inv": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-2.10.0.tgz",
"integrity": "sha512-m2ilqayHTt4io4+0nuaW6c9KjbyXltHQbIqlvaRJS0ZAkJLoZhiSbbOtff83W/RmezaafikdNt0ELVJuxhbTYg==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-link": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-2.10.0.tgz",
"integrity": "sha512-jtc9AWO826Qq2GWYRv4r8T1AD/BulWHrUFTD5znxV4Z8WoULv3MbCtIZIt/ckTaFBTzNCfbJaFkX3FjJGFSdvQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-nps": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-2.10.0.tgz",
"integrity": "sha512-Xthe3I1CbEY8GcYgRaZOD4waIdE0Hrl8+uEO3CEpDLYPm0Ppt/oieV6ZktwhRccnoFCkNrK0lWtq6KbtqnbDTg==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-one-or-more": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-2.10.0.tgz",
"integrity": "sha512-EyTLkwvp1xe9Kw3LRP5W93rgyKjzsJ8KdTo/zd2WYqII5B90NID91k5hR//FTB/GR1a0Brqyq69cSbqcA0gRTQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.10.0",
"@comunica/bindings-factory": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/types": "^2.10.0",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-seq": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-2.10.0.tgz",
"integrity": "sha512-vBxmaT96abaaPtGNsedEMHSv0iRRqTlFhy5pI/k6MnyD8d6Y8jPAvhWrxNHCNIctPdb/y4N9liGkNoaZYmSptw==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/bus-rdf-join": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-more": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-2.10.0.tgz",
"integrity": "sha512-+esvBhyji/+0hHOTtupDYIYzKdja5u7qE5kObJrGV4jhcJBpR4npOrkcA3cptN2jGe4+5/ePmWpWdZc+OEjv+w==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.10.0",
"@comunica/bindings-factory": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/types": "^2.10.0",
"asynciterator": "^3.8.1",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-one": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-2.10.0.tgz",
"integrity": "sha512-W338CAj8RFFve6UYm43nlWXlRhnZCa6ASVvggnMxJ49g68QOkaWpjbUqP3+lOSLYuSxyp0GK6zBmdrGzP4/e+w==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.10.0",
"@comunica/bindings-factory": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/metadata": "^2.10.0",
"@comunica/types": "^2.10.0",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-project": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-2.10.0.tgz",
"integrity": "sha512-u7z/2njFQC+GqI3/SYthYgG69Wr3PzlIR/7GkelIXNYQW4RAkwGyfIBvC6fgncnVsyhXHBkI/iS5tE1L8HmboA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/data-factory": "^2.7.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-quadpattern": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-2.10.0.tgz",
"integrity": "sha512-XSJ+hu5DqDUl/NhRYAuKdbG7iGBkK+QpHBpClb/x2DXwqIDdAw2Yh0iYhSObEHVu1rhDjjp9W7gx6SZqo3c0og==",
"dependencies": {
"@comunica/bindings-factory": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.10.0",
"@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.3",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-2.10.0.tgz",
"integrity": "sha512-cLAW1gi8MJIMtruWRCd879X769PSJ3Rlsxm/xxLp/rQj3qaBcyJpw5Z8Y9z4F43LZIebYDcRzjijCM6Ri8j6Tg==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"lru-cache": "^10.0.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash/node_modules/lru-cache": {
"version": "10.0.2",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.0.2.tgz",
"integrity": "sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==",
"dependencies": {
"semver": "^7.3.5"
},
"engines": {
"node": "14 || >=16.14"
}
},
"node_modules/@comunica/actor-query-operation-service": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-2.10.0.tgz",
"integrity": "sha512-2IdqDBEMkxEzopR1+nC51OHCxTqEoVD/diVtItKu5+uOcmj7lvIi3pChCzqDCL+dG2yhnfFW3DPpWsCcf4R1fA==",
"dependencies": {
"@comunica/bindings-factory": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/metadata": "^2.10.0",
"@comunica/types": "^2.10.0",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-slice": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-2.10.0.tgz",
"integrity": "sha512-QXfEthQG1AlNhhnEHBSwC8P2p048QJVL5QByYm7fWy2F+WmEpxF3zN4JCqNi5JsD/lAH8B81UeAWagyoh+PaRA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-sparql-endpoint": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-2.10.0.tgz",
"integrity": "sha512-9/QDHzFpEGK3P7n5NcYqFOn63szwCcgxStPbGuWwEwKQpUX6fXCiu1q1ul859nruBvK6HTIIeoa1dXaB/sYZGw==",
"dependencies": {
"@comunica/bindings-factory": "^2.10.0",
"@comunica/bus-http": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.10.0",
"@comunica/bus-rdf-update-quads": "^2.10.0",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/mediatortype-httprequests": "^2.10.0",
"@comunica/metadata": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"fetch-sparql-endpoint": "^4.1.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-union": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-2.10.0.tgz",
"integrity": "sha512-YMnLa7cqlDFl5bXWJDE/zYaZbFuQTjh2vxvTYMOy7ieK559VpndQX5OBRna9liFYfjS8zgImyFn5lPTrHhen4g==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/metadata": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-add-rewrite": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-add-rewrite/-/actor-query-operation-update-add-rewrite-2.10.0.tgz",
"integrity": "sha512-JgnydGXz7ep+8J53H/gvlVxJv1NjmuRpcxYbUN3sZe6KqV1fhUnNuVr+5ZKZeniIZFMwWD2hNder/afsrF7jZA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-clear": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-clear/-/actor-query-operation-update-clear-2.10.0.tgz",
"integrity": "sha512-bvgg74cLu28zj0m9roPPvpe2tXQEUyqbpVJ2K+aLkqfzl9OSedam5EoL+DkCW6OkojpI7+vzGKr+c94ucLZG7g==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/bus-rdf-update-quads": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-compositeupdate": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-compositeupdate/-/actor-query-operation-update-compositeupdate-2.10.0.tgz",
"integrity": "sha512-e6SMmk5TIkXhmVNFGLqSbD+cgbJL9Kw+jX/18Fzw6AuR1bku4Z6tbznBJi41GnDNHbhRNEpZLbtroXKyCfl2KQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-copy-rewrite": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-copy-rewrite/-/actor-query-operation-update-copy-rewrite-2.10.0.tgz",
"integrity": "sha512-/yIixdqQfSIDI1l5lLKAspENxTFXmIHE7wYnHflQ1UPKEG0kjOyu3v5O7RFTJixHlaqXJhm6baByWYwU5olEXA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-create": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-create/-/actor-query-operation-update-create-2.10.0.tgz",
"integrity": "sha512-lmOzf21okmwCVkCzmJYmcuD/xXRcej7BCdoWp9cVbajLeSHNeaDFyjfM0hWOFWAm9bW8lhpVkMgNaSt7JpXJFw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/bus-rdf-update-quads": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-deleteinsert": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-deleteinsert/-/actor-query-operation-update-deleteinsert-2.10.0.tgz",
"integrity": "sha512-FSwHDqihRlELg93JFq9/sfU53fZeeuCMh7yjYkztfmefZf8aDtUQ4S1K99ivfuGAlbg36mSahW4s8ZZplC8pWg==",
"dependencies": {
"@comunica/actor-query-operation-construct": "^2.10.0",
"@comunica/bindings-factory": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/bus-rdf-update-quads": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-drop": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-drop/-/actor-query-operation-update-drop-2.10.0.tgz",
"integrity": "sha512-ErOkzlyoO9t32QhrFdjYMJTeEnH/Gkb7ldEvpUtmOIFnsYvH8e2TpPiVOEicbhgQitiOATKpYpgG07vvqvTTyg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/bus-rdf-update-quads": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-load": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-load/-/actor-query-operation-update-load-2.10.0.tgz",
"integrity": "sha512-Rt3b/zfuvYJiBXAh/ORePbnEkouC5zzJbMJCPUyngXhqzVcMIIzuI/uTmXBVUdnSGuxi6IEg5Q03Hs8Sy5QalA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/bus-rdf-update-quads": "^2.10.0",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-update-move-rewrite": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-move-rewrite/-/actor-query-operation-update-move-rewrite-2.10.0.tgz",
"integrity": "sha512-YNHbN9zRoKEFikgZGTt8VzO86hxXa8/s4aVR6t3xRfjTgn5Y7OOlMOotijWXYjBkdW4kGCcJye6Kp8zxP8fNOQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-operation-values": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-2.10.0.tgz",
"integrity": "sha512-v59HOc2Xn4Hmn75VfjBRoIg8q5Klf9aPDLbpJ7FHqj4CKwevAiDCwFpENe04o0fJdv4Nfivh8oPQIX8cxyLKYQ==",
"dependencies": {
"@comunica/bindings-factory": "^2.10.0",
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/metadata": "^2.10.0",
"@comunica/types": "^2.10.0",
"asynciterator": "^3.8.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-parse-graphql": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-graphql/-/actor-query-parse-graphql-2.10.0.tgz",
"integrity": "sha512-l3RrkxElDYV4weXt3vpC0Q0She4AhbvPbPDronQulgN9nFAZhz4z9k8800T5uWMsL98wHNNXDFlnFk5S38lsow==",
"dependencies": {
"@comunica/bus-query-parse": "^2.10.0",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"graphql-to-sparql": "^3.0.1"
}
},
"node_modules/@comunica/actor-query-parse-sparql": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-sparql/-/actor-query-parse-sparql-2.10.0.tgz",
"integrity": "sha512-DUVAuSSNn0AyvLruOpRpLZBsr96Q4LuV1gcO+alKZALtfOZikRKY/3sXz1NUkaRQc7qDH9xFFTFrfJd0jLvlDA==",
"dependencies": {
"@comunica/bus-query-parse": "^2.10.0",
"@comunica/core": "^2.10.0",
"@types/sparqljs": "^3.1.3",
"sparqlalgebrajs": "^4.2.0",
"sparqljs": "^3.7.1"
}
},
"node_modules/@comunica/actor-query-result-serialize-json": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-json/-/actor-query-result-serialize-json-2.10.0.tgz",
"integrity": "sha512-GuVcsOEhKgnVPT0AaCn8sJl/Uj5UUjUktEJpuMx1UAYt0//jcQsezJslYWmJrfXE/WJYidynyDxm8z3+jwLF7A==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.10.0",
"@comunica/types": "^2.10.0",
"rdf-string": "^1.6.1",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-query-result-serialize-rdf": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-rdf/-/actor-query-result-serialize-rdf-2.10.0.tgz",
"integrity": "sha512-TBXJrDs5brRMFg8UisXS/F1vJw8nUtLhjugNZcd4ST8J965Ho1aNopydp4PMmwINMRxHhHtWJGwIB2Z5xD2lDw==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.10.0",
"@comunica/bus-rdf-serialize": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-simple": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-simple/-/actor-query-result-serialize-simple-2.10.0.tgz",
"integrity": "sha512-pS7+aB9Rym1B5oi+O68NFjEq+EwpCRYtTIxGBp39CTQ0F7m4edt9QwqmARqveJPryK5X66ACvjxvutEaTgWI8w==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"rdf-string": "^1.6.3",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-csv": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-csv/-/actor-query-result-serialize-sparql-csv-2.10.0.tgz",
"integrity": "sha512-Vk+7oTIPigDENK3CnV56vLfvMZVjHc3p2F4a49WDHfMgRrfQKJSQkx603vjW35n3tmUB8JSgRXr/+v7LK83KYQ==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-json": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-json/-/actor-query-result-serialize-sparql-json-2.10.0.tgz",
"integrity": "sha512-Y0z9qy30tkVWZVwSAfYOhhbfwoPO15s6XHTY8iPIZw9w/5CrbAD0wo9L0XAUimiiB6xx2mbtdexpuzu/2qVeYA==",
"dependencies": {
"@comunica/bus-http": "^2.10.0",
"@comunica/bus-http-invalidate": "^2.10.0",
"@comunica/bus-query-result-serialize": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-tsv": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-tsv/-/actor-query-result-serialize-sparql-tsv-2.10.0.tgz",
"integrity": "sha512-TgA2WIXKdu/SrbHEP8HvGoLjhDOZnBoHsGsLFSHpxY/Uwk21rZqJLBEkhuhkUtGYzQPJ1n6Wmpjz9lBrUHGJPw==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"rdf-string-ttl": "^1.3.2",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-xml": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-xml/-/actor-query-result-serialize-sparql-xml-2.10.0.tgz",
"integrity": "sha512-8RDj5ZN23HnIc6zI5pD5XKi2pyg2cx6DhI7VDRcboi7v0DxfROuQqSEtbQ8m/W6Pngdz01ySogRcIVJCzRzBLQ==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-query-result-serialize-stats": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-stats/-/actor-query-result-serialize-stats-2.10.0.tgz",
"integrity": "sha512-Aa2ijQLLgnMFefmyrEBE1CZjlyDIPFDQXfMJfphCjEzN5nOOsZax2E5DK31tEaJyOQV/8Af5X1YamiOoNMZSWw==",
"dependencies": {
"@comunica/bus-http": "^2.10.0",
"@comunica/bus-http-invalidate": "^2.10.0",
"@comunica/bus-query-result-serialize": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"process": "^0.11.10",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-query-result-serialize-table": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-table/-/actor-query-result-serialize-table-2.10.0.tgz",
"integrity": "sha512-AAPrgM/rbsSThRu9jkfJhBUeTUwQTLHNVbIn8El+Akvz+Fueoi6oSi3SslpPMHOvIUiOAgCZ05f2RbBLlhP03g==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.10.0",
"@comunica/types": "^2.10.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.3",
"rdf-terms": "^1.11.0",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-query-result-serialize-tree": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-tree/-/actor-query-result-serialize-tree-2.10.0.tgz",
"integrity": "sha512-sEyIzoSTV11YPY6r4fn6fwrf3WjLD6GrwXMTuevsDAKDYaMYxyriH3T/LMLLBEURy8SLD1I1Fpw/qaZisRmLTg==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.10.0",
"@comunica/context-entries": "^2.10.0",
"@comunica/core": "^2.10.0",
"@comunica/types": "^2.10.0",
"readable-stream": "^4.4.2",
"sparqljson-to-tree": "^3.0.1"
}
},
"node_modules/@comunica/actor-rdf-join-entries-sort-cardinality": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-entries-sort-cardinality/-/actor-rdf-join-entries-sort-cardinality-2.10.0.tgz",
"integrity": "sha512-6dd/29q6QuQN2Ap090VA0KUFmmnHalPxFJb4MGh5nIbWZH0F/EvI+uK5vPx29cttr1yXL5u+MbJWaLb3IxwILg==",
"dependencies": {
"@comunica/bus-rdf-join-entries-sort": "^2.10.0",
"@comunica/core": "^2.10.0"
}
},
"node_modules/@comunica/actor-rdf-join-inner-hash": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-hash/-/actor-rdf-join-inner-hash-2.10.0.tgz",
"integrity": "sha512-kgbCQsuvXke+dSY+J2YMdMnFLGx5XPaeV++l+Wy6lCVrSltCi06O874b68i4sHxPC4B49KczTBAvnzfC31lWHw==",
"dependencies": {
"@comunica/bus-rdf-join": "^2.10.0",
"@comunica/mediatortype-join-coefficients": "^2.10.0",
"@comunica/types": "^2.10.0",
"asyncjoin": "^1.1.1"
}
},
"node_modules/@comunica/actor-rdf-join-inner-multi-bind": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-multi-bind/-/actor-rdf-join-inner-multi-bind-2.10.0.tgz",
"integrity": "sha512-T5fLuQ4SStX6xAwwBHJG+1Fv//0Z2zzXrqPeg3zkJxfQzFkB5KZ15hLUUPZ//w9QFnsheQdUbTe8XKhF4QKOWA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/bus-rdf-join": "^2.10.0",
"@comunica/bus-rdf-join-entries-sort": "^2.10.0",
"@comunica/context-entries": "^2.10.0",
"@comunica/mediatortype-join-coefficients": "^2.10.0",
"@comunica/types": "^2.10.0",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-rdf-join-inner-multi-empty": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-multi-empty/-/actor-rdf-join-inner-multi-empty-2.10.0.tgz",
"integrity": "sha512-WoadMgBFKYzQoWsyqqITO7rORkVuTjP+O2nm37nQAW3rVo6DqVDwboki106p2PdJpnGQonAgE3eoBHzMAEyfEw==",
"dependencies": {
"@comunica/bus-rdf-join": "^2.10.0",
"@comunica/mediatortype-join-coefficients": "^2.10.0",
"@comunica/metadata": "^2.10.0",
"@comunica/types": "^2.10.0",
"asynciterator": "^3.8.1"
}
},
"node_modules/@comunica/actor-rdf-join-inner-multi-smallest": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-multi-smallest/-/actor-rdf-join-inner-multi-smallest-2.10.0.tgz",
"integrity": "sha512-l6slyNdG2Add1Gpw/nkjsncUUD8G9qJbbfK3glJh7AtsaZ9H2uxVlGWQ3grP5yBbGtQU5Mvzmk0U9Wh+jLQHKA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.10.0",
"@comunica/bus-rdf-join": "^2.10.0",
"@comunica/bus-rdf-join-entries-sort": "^2.10.0",
"@comunica/mediatortype-join-coefficients": "^2.10.0",
"@comunica/types": "^2.10.0",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-rdf-join-inner-nestedloop": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-inner-nestedloop/-/actor-rdf-join-inner-nestedloop-2.10.0.tgz",
"integrity": "sha512-G/1ePePut3NeNx1+umeM8oiw2RjMMpmhzTDmnuz+ULcoW3dIhHQYZax/mSpN7T195jTFSS/CfNSFUFfOF5Rghg==",
"dependencies": {
"@comunica/bus-rdf-join": "^2.10.0",
"@comunica/mediatortype-join-coefficients": "^2.10.0",
"@comunica/types": "^2.10.0",
"asyncjoin": "^1.1.1"
}
},
"node_modules/@comunica/actor-rdf-join-inner-none": {