-
Notifications
You must be signed in to change notification settings - Fork 1
/
package-lock.json
13937 lines (13937 loc) · 570 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": "@rmlio/solid-rml-store",
"version": "0.4.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@rmlio/solid-rml-store",
"version": "0.4.0",
"license": "MIT",
"dependencies": {
"@rmlio/rmlmapper-java-wrapper": "^2.0.0",
"@types/follow-redirects": "^1.13.0",
"@types/fs-extra": "^9.0.10",
"componentsjs-generator": "^3.1.0",
"follow-redirects": "^1.14.1",
"fs-extra": "^10.0.0",
"human-to-milliseconds": "^2.0.0"
},
"devDependencies": {
"@solid/community-server": "^6.0.0",
"@tsconfig/node14": "^1.0.1",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^8.2.2",
"@types/sinon": "^10.0.11",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^8.3.2",
"sinon": "^13.0.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
},
"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==",
"dev": true,
"engines": [
"node >= 0.2.0"
],
"dependencies": {
"buffer": "^6.0.3"
}
},
"node_modules/@colors/colors": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
"integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-2.7.0.tgz",
"integrity": "sha512-MaWLuizdSB4csgFBuPKeDTy2/SxrmpJnlK3uWp5rDvBio6kcKeUtpeeMdiwJ/VRfNaGm4tWvxpYU9H2HRj0MZQ==",
"dependencies": {
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-2.7.0.tgz",
"integrity": "sha512-Zjsoq44A8TCWHrfH4EtZ648TgquxuD6W8x9osrYZL8o7f+XtZCD5cri3DBgCedUT78x79tj0wfVURp+15Ob9dQ==",
"dependencies": {
"@comunica/core": "^2.7.0",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-2.7.1.tgz",
"integrity": "sha512-XJ5d5+4xEb0dVy4rnE4WLbMnRuFYNHEyuYgnHBUuZDz/gvQ7FrJf41ZFRdEnAFMWtTV9Am56I7XqyHsoBnBUIA==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/context-entries": "^2.7.0",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-2.7.0.tgz",
"integrity": "sha512-ZQsN2ruwjgxgVMJ9yarTciyO1hKVb5EhiT0oBF9euYFO7qiK6io7vNv2M4HgcRwv5sXQ47M70BQI929sbouTcg==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^2.7.0",
"@comunica/context-entries": "^2.7.0",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-2.7.0.tgz",
"integrity": "sha512-unDUV3cDbp8lbB2mQOUbdEnxKwiWEDbcCFAmg6czoTUQBeHWHvDHZMhqsYZunTpiLbpHJX7dTt0xeA4bBGh9kw==",
"dev": true,
"dependencies": {
"@comunica/bus-dereference": "^2.7.0",
"@comunica/core": "^2.7.0"
}
},
"node_modules/@comunica/actor-dereference-file": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-file/-/actor-dereference-file-2.7.0.tgz",
"integrity": "sha512-pz13PDjayD7I0SxQ/VIZB8HcisugT2VUcjD3P97Z22qaToFexR9UzgWLUP7bFEJDS5tq1hgKCvOn9Y/6sSXJeQ==",
"dev": true,
"dependencies": {
"@comunica/bus-dereference": "^2.7.0",
"@comunica/core": "^2.7.0"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-2.7.1.tgz",
"integrity": "sha512-dj6pFRd1cmupz1L0IzKP+mdmGpDd6l9qyk2Z7d/ZvKTocjTGP00R3AIxBp3z1JypC/eAeFZP62i97BeVUUEHIg==",
"dev": true,
"dependencies": {
"@comunica/bus-dereference": "^2.7.0",
"@comunica/bus-http": "^2.7.0",
"@comunica/core": "^2.7.0",
"cross-fetch": "^3.1.5",
"relative-to-absolute-iri": "^1.0.7",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-dereference-rdf-parse": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-2.7.0.tgz",
"integrity": "sha512-mLVyQBA7KCIKAIWtmBusg16aVY1uFLZh9mFLaJnMhOATmAacHwtV2JYHYC+CZgE5e6vIVBkjQjt2eFVwEvFE3g==",
"dev": true,
"dependencies": {
"@comunica/bus-dereference": "^2.7.0",
"@comunica/bus-dereference-rdf": "^2.7.0",
"@comunica/bus-rdf-parse": "^2.7.0"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-bindings-sha1/-/actor-hash-bindings-sha1-2.7.0.tgz",
"integrity": "sha512-MaP0YHTQxGrgi0xFQw7ppk++PY0sVlh6aZH852Hitmj2iYONSX2ekSqBQA4vX6Eb5fGZWjqMPZVZ3ozeaDHkjw==",
"dev": true,
"dependencies": {
"@comunica/bus-hash-bindings": "^2.7.0",
"@comunica/core": "^2.7.0",
"canonicalize": "^2.0.0",
"hash.js": "^1.1.7",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1/node_modules/canonicalize": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/canonicalize/-/canonicalize-2.0.0.tgz",
"integrity": "sha512-ulDEYPv7asdKvqahuAY35c1selLdzDwHqugK92hfkzvlDCwXRRelDkR+Er33md/PtnpqHemgkuDPanZ4fiYZ8w==",
"dev": true
},
"node_modules/@comunica/actor-http-fetch": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-fetch/-/actor-http-fetch-2.7.0.tgz",
"integrity": "sha512-MU281B74Ed+gAge3aTozqdP3CQEmDvp3CcfkfZzETFGZSL5tHXLnXIezctefEfrCco2iruT+micJPL8/vmQjOQ==",
"dependencies": {
"@comunica/bus-http": "^2.7.0",
"@comunica/context-entries": "^2.7.0",
"@comunica/mediatortype-time": "^2.7.0",
"abort-controller": "^3.0.0",
"cross-fetch": "^3.1.5"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-2.7.0.tgz",
"integrity": "sha512-WRBAiBelvC5GkUbgLrQf/hLwfR0oDFf4xmtH0PJoxv5XQRzXh1aluA97HtsmfP/26FSd/dBU2Lm+l6MG/USb0w==",
"dependencies": {
"@comunica/bus-http": "^2.7.0",
"@comunica/context-entries": "^2.7.0",
"@comunica/mediatortype-time": "^2.7.0",
"@comunica/types": "^2.7.0"
}
},
"node_modules/@comunica/actor-http-wayback": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-wayback/-/actor-http-wayback-2.7.0.tgz",
"integrity": "sha512-Dbri4JQIqkGTTIgZ1SVlRAt2WA1XJ5B3wbpTcBNIwyBu22/SB6Be/OuCoozYZLpIhBI9/vh331KQPIQr+e0ymg==",
"dev": true,
"dependencies": {
"@comunica/bus-http": "^2.7.0",
"@comunica/context-entries": "^2.7.0",
"@comunica/core": "^2.7.0",
"cross-fetch": "^3.1.5",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-init-query": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-query/-/actor-init-query-2.7.1.tgz",
"integrity": "sha512-Bgq9GNxve+nB2/6zNQc651JHnY9dGTO0VViTh/3lTnefDs4whf0speEBxj3HJrcbyEN4LZBPa2BCjdsgx82iLg==",
"dev": true,
"dependencies": {
"@comunica/actor-http-proxy": "^2.7.0",
"@comunica/bus-context-preprocess": "^2.7.0",
"@comunica/bus-http-invalidate": "^2.7.0",
"@comunica/bus-init": "^2.7.0",
"@comunica/bus-optimize-query-operation": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/bus-query-parse": "^2.7.0",
"@comunica/bus-query-result-serialize": "^2.7.0",
"@comunica/context-entries": "^2.7.0",
"@comunica/core": "^2.7.0",
"@comunica/logger-pretty": "^2.7.0",
"@comunica/runner": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"@types/yargs": "^17.0.13",
"asynciterator": "^3.8.0",
"negotiate": "^1.0.1",
"rdf-quad": "^1.5.0",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.0.5",
"streamify-string": "^1.0.1",
"yargs": "^17.6.2"
},
"optionalDependencies": {
"process": "^0.11.10"
}
},
"node_modules/@comunica/actor-optimize-query-operation-bgp-to-join": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-bgp-to-join/-/actor-optimize-query-operation-bgp-to-join-2.7.0.tgz",
"integrity": "sha512-Bgyv6gujo8I5nuyYD7O8I1g6+YqXBjgZ8szp9+LqVGIaUFLg5SAevYuNhh8+urAjfGdIrFwixKsNMZmv5Yb5Mg==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.7.0",
"@comunica/core": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-2.7.0.tgz",
"integrity": "sha512-4RUorGWiNUzkh5khBHc5GjdQJC7ztHTUAxaJTJ49pqJUVTLe0gR7EaLQ9juZJ/rvyFJTXQ7kTAJvQWr0a8EpEQ==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.7.0",
"@comunica/core": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-connected": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-connected/-/actor-optimize-query-operation-join-connected-2.7.0.tgz",
"integrity": "sha512-jfmqPgH+xEySSjisxNVZxqbBTxIogozFQ2t5DPGnOQDRTLcIZhKIZ5Toe5HyHo6JUnxpMVWHRMVoLj7gUasv1A==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.7.0",
"@comunica/core": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-2.7.1.tgz",
"integrity": "sha512-JaR2JYrysOkhnlNguL2D51an30ksr7n+1sOhbkxUuc7fq69MZXTEYmzcb7OUm9KycNlBobjD0E/6oxBo7IqAsg==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-bgp-join": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-join/-/actor-query-operation-bgp-join-2.7.1.tgz",
"integrity": "sha512-J2ixGEUNn8IcKETHeCuQlrKpEZA3x7jO7/xPQj+B/cNpYWKZnFK3VGLj2Tyx8boAt2SM9YtDf8rlAIgy2LCxbQ==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-2.7.1.tgz",
"integrity": "sha512-BCY7/cFnxFlvjDZi8cVK9zX/LZgfvLyUWPqRM+XVHl0nZHU6Qcg6BREX04pWDjkT4W7CdNLXaX5sUGBVN+uChw==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"rdf-terms": "^1.9.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-describe-subject": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-2.7.1.tgz",
"integrity": "sha512-SVz2weZK/qh7kp4Xk1BXq+hzRtxffkqcvluUblsG/7IM909FeXbitOpib9+96EixYdv4YwxoU7D02Xuw3OHNjw==",
"dev": true,
"dependencies": {
"@comunica/actor-query-operation-union": "^2.7.1",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-distinct-hash": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-2.7.1.tgz",
"integrity": "sha512-eqNHhtA64fdH5gUPoAj37B8sUSPOsC24j/xWiW5I+qVjdPP6j2Hf61uwTWhwr25Kn+90MmkEUmFs+GxNj27R+Q==",
"dev": true,
"dependencies": {
"@comunica/bus-hash-bindings": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-extend": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-2.7.1.tgz",
"integrity": "sha512-IQ3cJrp4SBTeZqvSUn40p+XTtTcZnaArWqJfG9jxUmlt1yML/38sHiM8AoTRr1/l5zesGX8SZiTJ4iINlAWObw==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.3.0"
}
},
"node_modules/@comunica/actor-query-operation-filter-sparqlee": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-2.7.1.tgz",
"integrity": "sha512-JmkoG5QPzD02MxU2C6uunkvbTnE0Hy2CdFvm675QGczSGBNWYBnlgopAVeISz4stAr3cmDzvP74smlfRF7cPtA==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.3.0"
}
},
"node_modules/@comunica/actor-query-operation-from-quad": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-2.7.1.tgz",
"integrity": "sha512-j4HEwTZLCVAPi3vkppeALP6XMLkvLLC+lkR28hSZ5EO7swkTJLXC4isW05h7q9Db7N/nXZV5LsibsKOH/+V8BA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-group": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-2.7.1.tgz",
"integrity": "sha512-CBo5M0xJCVGjkQwTZW/ZNm1leC6RgLm/vqXGySjDFj+El+G6ueROHIBiPOg0XjCbq2+CaVReXIpO/auNfLmutg==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-hash-bindings": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.3.0"
}
},
"node_modules/@comunica/actor-query-operation-join": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-2.7.1.tgz",
"integrity": "sha512-kw2WHWpBNW5beOhlRK99LmpmNpK7hABYKqybTYiPDsrV/14STf/A9OnO3ztEROBoxLks7R7OjyGpSBBKgtJ3Yg==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/bus-rdf-join": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin/-/actor-query-operation-leftjoin-2.7.1.tgz",
"integrity": "sha512-mVrkVlWNMKstSRXAz/2LUDnjSDSwx5RwI7nJuILISajKU/rmVnQfkIAt1N6znafh1b4qm7qC7pDJbn1Q/R4D5w==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/bus-rdf-join": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.3.0"
}
},
"node_modules/@comunica/actor-query-operation-minus": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-2.7.1.tgz",
"integrity": "sha512-t8oY3lfPIj6h1mC/XOpd68Otu0a705a/4v9fN/k6m4yY8pcvmFn7U0YXYjgUcc2BRwfwQj785wLvXjj57kGSBA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/bus-rdf-join": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-nop": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-nop/-/actor-query-operation-nop-2.7.1.tgz",
"integrity": "sha512-5K7VI8ZMG8Bxo7Ne4FYJ0PfdNdRXoVzeGd5HQM+zx5Dy9eBajB1nwXsZxs93+3WW/njFoBXJZ9K9SqIVO5G2Lg==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/metadata": "^2.7.0",
"@comunica/types": "^2.7.0",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-orderby-sparqlee": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-2.7.1.tgz",
"integrity": "sha512-2xN6dznbmEapjcBa2JmwttcUB0s3yhKqslvJqyXmfjvDqdMk1kDeERtGMTVe9eHe5JJMfo9naPezmyjNVJi0QQ==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.3.0"
}
},
"node_modules/@comunica/actor-query-operation-path-alt": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-2.7.1.tgz",
"integrity": "sha512-aOOaMFs2Z0pL9U/D/SYd1x4VXfTLd32DFTPOuA+jZdjwbCYQA1Rgp8e3V31MOENFgtvzZ9NrxBcMq+q9EpyoEg==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.7.1",
"@comunica/actor-query-operation-union": "^2.7.1",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/types": "^2.7.0",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-inv": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-2.7.1.tgz",
"integrity": "sha512-kkoyfOX1nn2G/f6K3AD117U7ETxI+coL/RWkFm7f5usCFR4TfhRHkESwKRynwso0vEH7hQyKj1LomkBicnbTIA==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.7.1",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-link": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-2.7.1.tgz",
"integrity": "sha512-H33V2zbxvLk2vhRyxKc4aqEIO3knfF5KKVCQZODISd6Z96SiRT18DZCKHbpBglvEJYwTWyKI9nd/8dUMGXpOOg==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.7.1",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-nps": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-2.7.1.tgz",
"integrity": "sha512-3UCEUsMvqdHPB0LYFK22Dz47qUQNeGd6TZeFemOJ91weGONscQWi6JLsaeLW1+PWiqyJtCgiOToZmLvi/4r7tA==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.7.1",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-one-or-more": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-2.7.1.tgz",
"integrity": "sha512-P9UThBStBvK60D9LHlNC/UnqaRydjudG1+64WFi4wonCAneYcXkPEGUBNAjMT1cKvhCLrIe3E0/GRBDDM7N1uw==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.7.1",
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/types": "^2.7.0",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-seq": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-2.7.1.tgz",
"integrity": "sha512-GVXMKc+8xj1MDz8HZnynZubHNPtUU3gjnsAT7vy/mELmUr0iB1+4TCJA5r0cKOIqlPyNEModRhH/5ZUAAUnftg==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.7.1",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/bus-rdf-join": "^2.7.1",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-more": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-2.7.1.tgz",
"integrity": "sha512-ySt8le6jR7Ndht3FEVYXO/skrXoYPNiXfqxcQEzXSfU0XL40R9UZFiG56CBZtJSi7SsnjM/Oq3ax3/dEXK3X/w==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.7.1",
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/types": "^2.7.0",
"asynciterator": "^3.8.0",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-one": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-2.7.1.tgz",
"integrity": "sha512-MqUcFSddkly+P9+iyVRXYFeOIbUtEONAcpPT9ZTKkD4UuA7pu91UbXeDQFWmTt/AQb4+xGxZDEvtFdfP1MM7Rg==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.7.1",
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/metadata": "^2.7.0",
"@comunica/types": "^2.7.0",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-project": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-2.7.1.tgz",
"integrity": "sha512-3+4GYs+ckt8wnp8+O5LpL+IepkYUuc/647FBgNl1TB44AJvki4OT83xzmUiP98j69oVRvKoAnolsbtt/ReONdQ==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/data-factory": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-quadpattern": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-2.7.1.tgz",
"integrity": "sha512-XX/Z4OUgAFdkcrHCkO05mqITCSZHopMjxWTeLHohrO6vrkdCX+IBA0lkiWoDkPqNhUySKtwJd8sEtC2VN1RNMw==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.7.0",
"@comunica/context-entries": "^2.7.0",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"rdf-terms": "^1.9.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-2.7.1.tgz",
"integrity": "sha512-R/VMR7gq9ACLNWN8Bkapwvk1TVDPaqB5iu+a2u5XkDbo+8/Ay6HGKi+1lmR+PobZ6WUBqWh6i3Jl96mH15Y29A==",
"dev": true,
"dependencies": {
"@comunica/bus-hash-bindings": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"@types/lru-cache": "^7.0.0",
"lru-cache": "^7.0.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash/node_modules/@types/lru-cache": {
"version": "7.10.10",
"resolved": "https://registry.npmjs.org/@types/lru-cache/-/lru-cache-7.10.10.tgz",
"integrity": "sha512-nEpVRPWW9EBmx2SCfNn3ClYxPL7IktPX12HhIoSc/H5mMjdeW3+YsXIpseLQ2xF35+OcpwKQbEUw5VtqE4PDNA==",
"deprecated": "This is a stub types definition. lru-cache provides its own type definitions, so you do not need this installed.",
"dev": true,
"dependencies": {
"lru-cache": "*"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash/node_modules/lru-cache": {
"version": "7.18.3",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz",
"integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==",
"dev": true,
"engines": {
"node": ">=12"
}
},
"node_modules/@comunica/actor-query-operation-service": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-2.7.1.tgz",
"integrity": "sha512-UPQtTgUBbPNAXQGlHVGwpHfKYtItGra36ochmrosN1mafi+MZ9nwgJc/bMK6zVT5F8upcNXSDqbw2dbzd2yHfg==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/context-entries": "^2.7.0",
"@comunica/core": "^2.7.0",
"@comunica/metadata": "^2.7.0",
"@comunica/types": "^2.7.0",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-slice": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-2.7.1.tgz",
"integrity": "sha512-Jl6UYVzRRNy8YwZPuowvuUy+ot5c5y2kiVc6Tc6KkVQlrOrHmnY4g9leywRBDr/pWarqGDWi+kJpvUrKbaaSsw==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/context-entries": "^2.7.0",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-sparql-endpoint": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-2.7.1.tgz",
"integrity": "sha512-EiXGuLLI8cwJTJ/upEd1tsOLXz2mlFwXfzKCTdb9qnkLkPUJJ9xwRFTEKhJjrRYoAFZZxvCDcQbWJyI5bCi7ew==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-http": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.7.0",
"@comunica/bus-rdf-update-quads": "^2.7.1",
"@comunica/context-entries": "^2.7.0",
"@comunica/core": "^2.7.0",
"@comunica/mediatortype-httprequests": "^2.7.0",
"@comunica/metadata": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"fetch-sparql-endpoint": "^3.1.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-union": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-2.7.1.tgz",
"integrity": "sha512-yeWKlCIwI2AFqeSmxFOIUJwgs9Ajt/1+dZ4Sa4XwUC9I2rGWCDqSLWzWDI9JJtAY7bvoNehoNG3TMRO4SzyTTw==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/metadata": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"rdf-terms": "^1.9.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-add-rewrite": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-add-rewrite/-/actor-query-operation-update-add-rewrite-2.7.1.tgz",
"integrity": "sha512-gfO+QYEOmgeWoKulZ/aIcBaXvsWVZe6vMRjlyjrFwOJS6PJqISo6Y7bMdGRh5KifFzFGNzCvXP525J+EYwlclA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-clear": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-clear/-/actor-query-operation-update-clear-2.7.1.tgz",
"integrity": "sha512-2gkCOXTmxvIQe0Vmh6Od6JNC5kslIDGTlsKv+6W18xvnRM/XZcm9pdqgwkmMIDuNi8mfly+hyReXdZBEysg/FA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/bus-rdf-update-quads": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-compositeupdate": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-compositeupdate/-/actor-query-operation-update-compositeupdate-2.7.1.tgz",
"integrity": "sha512-zkngl7sHe5ecic501tclqVFNmXKpBdMHN8qQ/eymJXKSnsjxCJOkdILRe6KzuzWmKXP3bOZ3PhbrPrjuw24lLA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-copy-rewrite": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-copy-rewrite/-/actor-query-operation-update-copy-rewrite-2.7.1.tgz",
"integrity": "sha512-XFY9UV4iQcXs5rzO3t76B0jHyys4rU7i4O1W2Ws4ySLRJGZHVI7JbTdk0NGXJZPYXC7Bu5RNjOQChMYYsdNmwA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-create": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-create/-/actor-query-operation-update-create-2.7.1.tgz",
"integrity": "sha512-H4U8HL8l8aSy09VJdWboiLQnS2shLM0CaFTTP0QvzW0rftMHcb6VNqsNSGazwR52nQsOB03gsQ2swtE71XWpzg==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/bus-rdf-update-quads": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-deleteinsert": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-deleteinsert/-/actor-query-operation-update-deleteinsert-2.7.1.tgz",
"integrity": "sha512-Lif4fM7cU1IzJY7OcbUhSD4CKXlU1lWFNM/Q2QvbS+/UY66f6gny+Z7+jCuJU8zNHRYpD373zTo2+d3qH7kczg==",
"dev": true,
"dependencies": {
"@comunica/actor-query-operation-construct": "^2.7.1",
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/bus-rdf-update-quads": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-drop": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-drop/-/actor-query-operation-update-drop-2.7.1.tgz",
"integrity": "sha512-HVGPToxpofIMx7JxtrVONWAnM6ER3NC8E3or256LEFD8MU3cqYc9fcf1TSgVr/qfsucxc0T3O1gHfhcvmGNuyw==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/bus-rdf-update-quads": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-load": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-load/-/actor-query-operation-update-load-2.7.1.tgz",
"integrity": "sha512-JstRsbPOi4O7y1wRBouCcz4V1G7L1gVy01mzQLyfB4IsPYFuyb1VtX4FY5I3xrY/DRTe1WWewbNHGlixpsesrw==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/bus-rdf-update-quads": "^2.7.1",
"@comunica/context-entries": "^2.7.0",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-move-rewrite": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-move-rewrite/-/actor-query-operation-update-move-rewrite-2.7.1.tgz",
"integrity": "sha512-dsqM02Quq9tBTKmNgNKF+lsnPkcDx/TpVaPCpTHZZl3uXDXiJI77U4zWG7ONPYs+YPdzzouhe/VMkPGTAN2qXA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-values": {
"version": "2.7.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-2.7.1.tgz",
"integrity": "sha512-fs+gAJFLqhBCu696LkkQwmrAtWwO18TS+kIQ8FR0X2/qhUl2nvVSZSfMDhLGhORH15GFZ7XPhHzz0gPFqvnG9A==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.7.0",
"@comunica/bus-query-operation": "^2.7.1",
"@comunica/core": "^2.7.0",
"@comunica/metadata": "^2.7.0",
"@comunica/types": "^2.7.0",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-parse-graphql": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-graphql/-/actor-query-parse-graphql-2.7.0.tgz",
"integrity": "sha512-c71SIVHp/OqaujIX6MeBMqdVYUpjD9bowwqqlvzY5t5Z1OcGcKe1Bv0QtiBpSh1Z6a+JDyLBwzMBOyd94qH3XA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-parse": "^2.7.0",
"@comunica/context-entries": "^2.7.0",
"@comunica/core": "^2.7.0",
"graphql-to-sparql": "^3.0.1"
}
},
"node_modules/@comunica/actor-query-parse-sparql": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-sparql/-/actor-query-parse-sparql-2.7.0.tgz",
"integrity": "sha512-lcyga5k+4rF1nCfIkYAUFUs9fSPBEeYl326f7iilsu0CdiMQDryQpj5YDWsPyxNiti/Gbz92VBZe4MzIBqH2TA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-parse": "^2.7.0",
"@comunica/core": "^2.7.0",
"@types/sparqljs": "^3.1.3",
"sparqlalgebrajs": "^4.0.5",
"sparqljs": "^3.6.1"
}
},
"node_modules/@comunica/actor-query-result-serialize-json": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-json/-/actor-query-result-serialize-json-2.7.0.tgz",
"integrity": "sha512-uMi2wZo4MaYNzZl6VL0P+c1IKiOlT2ZUZBXcLzQLNgmeG4QF4/GN7r9e6PFYNsUhIfJ7i3pgFgXjhOO5/bElMw==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.7.0",
"@comunica/types": "^2.7.0",
"rdf-string": "^1.6.1",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-rdf": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-rdf/-/actor-query-result-serialize-rdf-2.7.0.tgz",
"integrity": "sha512-c1WMybmC20C63ehjPLPFxRW/TkrtAhtJ1JBO+rWqrNd0msy+/nT6tgEJ23IfVs3tKNC4R0EM1RdwB+P0NBoTVA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.7.0",
"@comunica/bus-rdf-serialize": "^2.7.0",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-simple": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-simple/-/actor-query-result-serialize-simple-2.7.0.tgz",
"integrity": "sha512-XbCpM+6FI/0FmDKQI9IUvQEZ4FT2NJFVVZacLxi2LZQwQ1GEA2r+CD2wb1V6wZhf8Yk5Chw5lhGlp+x727vE2Q==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.7.0",
"@comunica/types": "^2.7.0",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-csv": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-csv/-/actor-query-result-serialize-sparql-csv-2.7.0.tgz",
"integrity": "sha512-/5M4vya+wBljBnoQE9E0UCi6b0nBkw1miah0ioWk9NvgFEoe5YdmIhYcqTm19WKU0+8fOus/lKC14U505gXaMA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-json": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-json/-/actor-query-result-serialize-sparql-json-2.7.0.tgz",
"integrity": "sha512-HdJTVnhNQ/dE838OkrDihOaUpaSVwsbf13IEo5XM/dYesgjU38HiP3iGH6qgHnPaa1a39qoGo5b+vCMTBzjILg==",
"dev": true,
"dependencies": {
"@comunica/bus-http": "^2.7.0",
"@comunica/bus-http-invalidate": "^2.7.0",
"@comunica/bus-query-result-serialize": "^2.7.0",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-tsv": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-tsv/-/actor-query-result-serialize-sparql-tsv-2.7.0.tgz",
"integrity": "sha512-kqwkVg4UYuVSAjJ6IHpRFQskw+e+LpIOv68mmI9ZvXD7oww+40ZR6r2s9FGYeVG8O5TcN0qF6Cr/NRzSfzXS9A==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"rdf-string-ttl": "^1.3.2",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-xml": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-xml/-/actor-query-result-serialize-sparql-xml-2.7.0.tgz",
"integrity": "sha512-unvfawP7DdSn/ARikozEemG5+47j4DiV6f/KG+yB4dUseJSlAc5ILLeTD7oE3j03vnq4f52pk/ZHwfXEgmiZ8A==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-stats": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-stats/-/actor-query-result-serialize-stats-2.7.0.tgz",
"integrity": "sha512-dDAL9iAUDJt9etrYTCOOVL9VgdqMFGj/uIE7C/CMdnnuA9vn6JCkGkVzEwDonPPBf/tpLAapjHrwozqQmRIvyA==",
"dev": true,
"dependencies": {
"@comunica/bus-http": "^2.7.0",
"@comunica/bus-http-invalidate": "^2.7.0",
"@comunica/bus-query-result-serialize": "^2.7.0",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"process": "^0.11.10",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-table": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-table/-/actor-query-result-serialize-table-2.7.0.tgz",
"integrity": "sha512-lbocdiCRZaauRqBeKgWW/2xiUqdNEAyOUL65ktk8hL7X8UUSZQdYW0CtvFYaHtlmeUG8MwSJsJd4GHU6t7D4zw==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.7.0",
"@comunica/types": "^2.7.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"rdf-terms": "^1.9.1",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-tree": {
"version": "2.7.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-tree/-/actor-query-result-serialize-tree-2.7.0.tgz",
"integrity": "sha512-BlvpBvN7slyYr9v/p4dRZcW7we51kdoNiAPBes9J4+3YZHv8P7uMsLribRNvNCUtdBGO77ALBnONy2d2yYF9ng==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.7.0",
"@comunica/context-entries": "^2.7.0",
"@comunica/core": "^2.7.0",
"@comunica/types": "^2.7.0",
"readable-stream": "^4.2.0",
"sparqljson-to-tree": "^3.0.1"