-
Notifications
You must be signed in to change notification settings - Fork 6
/
package-lock.json
9797 lines (9797 loc) · 398 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": "report",
"version": "0.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "report",
"version": "0.0.1",
"license": "MIT",
"dependencies": {
"nunjucks": "^3.2.3",
"tinyliquid": "^0.2.34",
"walder": "github:KNowledgeOnWebScale/walder"
}
},
"node_modules/@comunica/actor-abstract-bindings-hash": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.21.1.tgz",
"integrity": "sha512-+EmT/v5hB7La9yXotDZRp7GchYLGO/acg0h9NttZQN8+qp1Llyln+3WriqcVxbbRe1Wqc3DL8Hd9eKAOkAVT7w==",
"dependencies": {
"@comunica/types": "^1.21.1",
"canonicalize": "^1.0.1",
"hash.js": "^1.1.7",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.21.1.tgz",
"integrity": "sha512-5LzWccqId3AfAeCPGqPkOiDATXrooXYLn58sNXDRdDUsRpL/jZ6be+7F000ZLTHnDRVCiLCXtb5P7984bBIzaA==",
"peerDependencies": {
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.21.1.tgz",
"integrity": "sha512-9hehsgOSaLDAH4oZccGMEScAiE+4DayTXkjaiQkOobSiHp6dbXgS46vIkWUaSYQGikmgYfkM+j4qwDT33Wl28w==",
"dependencies": {
"@comunica/types": "^1.21.1",
"@types/rdf-js": "*",
"asynciterator": "^3.1.0",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-1.21.1.tgz",
"integrity": "sha512-yGfNEAJo90XvIMbGZtoip4rR2t28ArfIZmkXo1+E50/Hkp5KFeBwJO/f7ZwH0Svy/5C0wbmCMZpQm+IFV2Cxbg==",
"peerDependencies": {
"@comunica/bus-context-preprocess": "^1.19.2",
"@comunica/core": "^1.19.2"
}
},
"node_modules/@comunica/actor-http-memento": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.21.1.tgz",
"integrity": "sha512-FRG5CgeOzu8GyaSLtwkLPWX26WWcYKbLx1EpSGJJUq5MBn8Blrcji6G/dwn6hADn4rBI8MErwiA52SJX/p89yw==",
"dependencies": {
"@comunica/context-entries": "^1.21.1",
"@types/parse-link-header": "^1.0.0",
"cross-fetch": "^3.0.5",
"parse-link-header": "^1.0.1"
},
"peerDependencies": {
"@comunica/bus-http": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-http-native": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.21.1.tgz",
"integrity": "sha512-dJlBz8/nQgxH5ARkh8/092BbvQ8vaJ38hjWinLXXakmdj8WsVHnhUJ7/D4YtqY61bjwCBFekOLSPjfxKCEMRgA==",
"dependencies": {
"@comunica/context-entries": "^1.21.1",
"@types/parse-link-header": "^1.0.0",
"cross-fetch": "^3.0.5",
"follow-redirects": "^1.5.1",
"parse-link-header": "^1.0.1"
},
"peerDependencies": {
"@comunica/bus-http": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-1.21.1.tgz",
"integrity": "sha512-Z3NvOzZeffZ+aRBZVg3apbVSNjYvAUE49oOL+BrBtT5CuEf+RUOCcSOV/UhpITIFg21/uuyaxvJaT5RmfH+xzw==",
"peerDependencies": {
"@comunica/bus-http": "^1.8.0",
"@comunica/context-entries": "^1.0.0",
"@comunica/core": "^1.8.0"
}
},
"node_modules/@comunica/actor-init-sparql": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.21.1.tgz",
"integrity": "sha512-lDiMgpktwg/bzKAZip+s8k6Y7LDYfkYuqo3i1ZD+EdgUm484yuMo7K3Y21P2C04w5FazYAbnx7AzEj1hrdc0iA==",
"dependencies": {
"@comunica/actor-abstract-bindings-hash": "^1.21.1",
"@comunica/actor-abstract-mediatyped": "^1.21.1",
"@comunica/actor-context-preprocess-source-to-destination": "^1.21.1",
"@comunica/actor-http-memento": "^1.21.1",
"@comunica/actor-http-native": "^1.21.1",
"@comunica/actor-http-proxy": "^1.21.1",
"@comunica/actor-optimize-query-operation-join-bgp": "^1.21.1",
"@comunica/actor-query-operation-ask": "^1.21.1",
"@comunica/actor-query-operation-bgp-empty": "^1.21.1",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.21.1",
"@comunica/actor-query-operation-bgp-single": "^1.21.1",
"@comunica/actor-query-operation-construct": "^1.21.1",
"@comunica/actor-query-operation-describe-subject": "^1.21.1",
"@comunica/actor-query-operation-distinct-hash": "^1.21.1",
"@comunica/actor-query-operation-extend": "^1.21.1",
"@comunica/actor-query-operation-filter-sparqlee": "^1.21.1",
"@comunica/actor-query-operation-from-quad": "^1.21.1",
"@comunica/actor-query-operation-group": "^1.21.1",
"@comunica/actor-query-operation-join": "^1.21.1",
"@comunica/actor-query-operation-leftjoin-left-deep": "^1.21.1",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.21.1",
"@comunica/actor-query-operation-minus": "^1.21.1",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.21.1",
"@comunica/actor-query-operation-path-alt": "^1.21.1",
"@comunica/actor-query-operation-path-inv": "^1.21.1",
"@comunica/actor-query-operation-path-link": "^1.21.1",
"@comunica/actor-query-operation-path-nps": "^1.21.1",
"@comunica/actor-query-operation-path-one-or-more": "^1.21.1",
"@comunica/actor-query-operation-path-seq": "^1.21.1",
"@comunica/actor-query-operation-path-zero-or-more": "^1.21.1",
"@comunica/actor-query-operation-path-zero-or-one": "^1.21.1",
"@comunica/actor-query-operation-project": "^1.21.1",
"@comunica/actor-query-operation-quadpattern": "^1.21.1",
"@comunica/actor-query-operation-reduced-hash": "^1.21.1",
"@comunica/actor-query-operation-service": "^1.21.1",
"@comunica/actor-query-operation-slice": "^1.21.1",
"@comunica/actor-query-operation-sparql-endpoint": "^1.21.1",
"@comunica/actor-query-operation-union": "^1.21.1",
"@comunica/actor-query-operation-update-add-rewrite": "^1.21.1",
"@comunica/actor-query-operation-update-clear": "^1.21.1",
"@comunica/actor-query-operation-update-compositeupdate": "^1.21.1",
"@comunica/actor-query-operation-update-copy-rewrite": "^1.21.1",
"@comunica/actor-query-operation-update-create": "^1.21.1",
"@comunica/actor-query-operation-update-deleteinsert": "^1.21.1",
"@comunica/actor-query-operation-update-drop": "^1.21.1",
"@comunica/actor-query-operation-update-load": "^1.21.1",
"@comunica/actor-query-operation-update-move-rewrite": "^1.21.1",
"@comunica/actor-query-operation-values": "^1.21.1",
"@comunica/actor-rdf-dereference-fallback": "^1.21.1",
"@comunica/actor-rdf-dereference-http-parse": "^1.21.1",
"@comunica/actor-rdf-join-multi-smallest": "^1.21.1",
"@comunica/actor-rdf-join-nestedloop": "^1.21.1",
"@comunica/actor-rdf-join-symmetrichash": "^1.21.1",
"@comunica/actor-rdf-metadata-all": "^1.21.1",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.21.1",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.21.1",
"@comunica/actor-rdf-metadata-extract-patch-sparql-update": "^1.21.1",
"@comunica/actor-rdf-metadata-extract-sparql-service": "^1.21.1",
"@comunica/actor-rdf-metadata-primary-topic": "^1.21.1",
"@comunica/actor-rdf-parse-html": "^1.21.1",
"@comunica/actor-rdf-parse-html-microdata": "^1.21.1",
"@comunica/actor-rdf-parse-html-rdfa": "^1.21.1",
"@comunica/actor-rdf-parse-html-script": "^1.21.1",
"@comunica/actor-rdf-parse-jsonld": "^1.21.1",
"@comunica/actor-rdf-parse-n3": "^1.21.1",
"@comunica/actor-rdf-parse-rdfxml": "^1.21.1",
"@comunica/actor-rdf-parse-xml-rdfa": "^1.21.1",
"@comunica/actor-rdf-resolve-hypermedia-links-next": "^1.21.1",
"@comunica/actor-rdf-resolve-hypermedia-links-queue-fifo": "^1.21.1",
"@comunica/actor-rdf-resolve-hypermedia-none": "^1.21.1",
"@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.21.1",
"@comunica/actor-rdf-resolve-hypermedia-sparql": "^1.21.1",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.21.1",
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.21.1",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.21.1",
"@comunica/actor-rdf-serialize-jsonld": "^1.21.1",
"@comunica/actor-rdf-serialize-n3": "^1.21.1",
"@comunica/actor-rdf-update-hypermedia-patch-sparql-update": "^1.21.1",
"@comunica/actor-rdf-update-quads-hypermedia": "^1.21.1",
"@comunica/actor-rdf-update-quads-rdfjs-store": "^1.21.1",
"@comunica/actor-sparql-parse-algebra": "^1.21.1",
"@comunica/actor-sparql-parse-graphql": "^1.21.1",
"@comunica/actor-sparql-serialize-json": "^1.21.1",
"@comunica/actor-sparql-serialize-rdf": "^1.21.1",
"@comunica/actor-sparql-serialize-simple": "^1.21.1",
"@comunica/actor-sparql-serialize-sparql-csv": "^1.21.1",
"@comunica/actor-sparql-serialize-sparql-json": "^1.21.1",
"@comunica/actor-sparql-serialize-sparql-tsv": "^1.21.1",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.21.1",
"@comunica/actor-sparql-serialize-stats": "^1.21.1",
"@comunica/actor-sparql-serialize-table": "^1.21.1",
"@comunica/actor-sparql-serialize-tree": "^1.21.1",
"@comunica/bus-context-preprocess": "^1.21.1",
"@comunica/bus-http": "^1.21.1",
"@comunica/bus-http-invalidate": "^1.21.1",
"@comunica/bus-init": "^1.21.1",
"@comunica/bus-optimize-query-operation": "^1.21.1",
"@comunica/bus-query-operation": "^1.21.1",
"@comunica/bus-rdf-dereference": "^1.21.1",
"@comunica/bus-rdf-dereference-paged": "^1.21.1",
"@comunica/bus-rdf-join": "^1.21.1",
"@comunica/bus-rdf-metadata": "^1.21.1",
"@comunica/bus-rdf-metadata-extract": "^1.21.1",
"@comunica/bus-rdf-parse": "^1.21.1",
"@comunica/bus-rdf-parse-html": "^1.21.1",
"@comunica/bus-rdf-resolve-hypermedia": "^1.21.1",
"@comunica/bus-rdf-resolve-hypermedia-links": "^1.21.1",
"@comunica/bus-rdf-resolve-hypermedia-links-queue": "^1.21.1",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.21.1",
"@comunica/bus-rdf-serialize": "^1.21.1",
"@comunica/bus-rdf-update-hypermedia": "^1.21.1",
"@comunica/bus-rdf-update-quads": "^1.21.1",
"@comunica/bus-sparql-parse": "^1.21.1",
"@comunica/bus-sparql-serialize": "^1.21.1",
"@comunica/context-entries": "^1.21.1",
"@comunica/core": "^1.21.1",
"@comunica/logger-pretty": "^1.21.1",
"@comunica/logger-void": "^1.21.1",
"@comunica/mediator-all": "^1.21.1",
"@comunica/mediator-combine-pipeline": "^1.21.1",
"@comunica/mediator-combine-union": "^1.21.1",
"@comunica/mediator-number": "^1.21.1",
"@comunica/mediator-race": "^1.21.1",
"@comunica/runner": "^1.21.1",
"@comunica/runner-cli": "^1.21.1",
"@types/minimist": "^1.2.0",
"@types/rdf-js": "*",
"asynciterator": "^3.1.0",
"minimist": "^1.2.0",
"negotiate": "^1.0.1",
"rdf-quad": "^1.4.0",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.5.5",
"streamify-string": "^1.0.1"
},
"bin": {
"comunica-dynamic-sparql": "bin/query-dynamic.js",
"comunica-sparql": "bin/query.js",
"comunica-sparql-http": "bin/http.js"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-1.21.1.tgz",
"integrity": "sha512-4P4MNxEfGZJYE4z9OXTOWWykz0w3h2dtw8p8pLDcXplRIh1U9BaS7rtYVl953PvNfLsc1DS3Kpn0MGEN3NJdGA==",
"dependencies": {
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-optimize-query-operation": "^1.0.0",
"@comunica/core": "^1.4.0"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-1.21.1.tgz",
"integrity": "sha512-23sE2Kr+z5UHcgQ+8xGv9dJPxBnv5eavWqSkgIESWEVzBfogvJQ8mMt/2wl1+bvdip0Nme+MJ9/hUYTMqr//ew==",
"dependencies": {
"@comunica/types": "^1.21.1",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-empty": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-empty/-/actor-query-operation-bgp-empty-1.21.1.tgz",
"integrity": "sha512-Y1W7ViP/ZRlcOrWJk7Y2HsU2+qS+qc1A8VGfpKzhwZaIbBS6FUiQnAHkH8eDrO9RtET+zanKxu37+Jnj2n6MyQ==",
"dependencies": {
"@comunica/types": "^1.21.1",
"asynciterator": "^3.1.0",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-left-deep-smallest": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-left-deep-smallest/-/actor-query-operation-bgp-left-deep-smallest-1.21.1.tgz",
"integrity": "sha512-yLtvCj9gkmWNdqTT3SuQwSJh21/1eR0vjDpRcQA5P/HlCPARKJT6OBbWisaH1JNygHptw/oKnoPZKPsWVB/cEA==",
"dependencies": {
"@comunica/context-entries": "^1.21.1",
"@comunica/types": "^1.21.1",
"@types/rdf-js": "*",
"asynciterator": "^3.1.0",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-single": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-single/-/actor-query-operation-bgp-single-1.21.1.tgz",
"integrity": "sha512-a4xupJleAxeyxA+m8Ghul6AtfBRCMWv5Ftr5DCcZF2j96UCREnSnD1OuMTJfsf7hWV+H9TGJ3gtK1IinB1LxAQ==",
"dependencies": {
"@comunica/context-entries": "^1.21.1",
"@comunica/types": "^1.21.1",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-1.21.1.tgz",
"integrity": "sha512-b1baZhA0py1JEI9xNGtEcHt0VJOMMBkA5tC8ePabNnPXc2Bwn29grzb+PQwkf32rU6tRRgJHRua5EcIZqDRcqg==",
"dependencies": {
"@comunica/data-factory": "^1.21.1",
"@comunica/types": "^1.21.1",
"@types/rdf-js": "*",
"asynciterator": "^3.1.0",
"rdf-data-factory": "^1.0.3",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-describe-subject": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-1.21.1.tgz",
"integrity": "sha512-KGACWNnYRQVqPzaF1iyYiivFfAucnPU6yaJ0mUKoSiMXEwVCIHOZL8m29TMxHqc5AI6C/AZlvddT1MHQ+cFOXw==",
"dependencies": {
"@comunica/actor-query-operation-union": "^1.21.1",
"@comunica/types": "^1.21.1",
"@types/rdf-js": "*",
"asynciterator": "^3.1.0",
"rdf-data-factory": "^1.0.3",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-distinct-hash": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-1.21.1.tgz",
"integrity": "sha512-DiIwjep3FlUyDNqyenRyN/CxGKOFxfIXDsOupYpQq0H5KSYEVyyYNJao4F+ZvdcLHoSRJkLVW+GTTb8zCbEGbg==",
"dependencies": {
"@comunica/actor-abstract-bindings-hash": "^1.21.1",
"@comunica/types": "^1.21.1",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.2.0"
}
},
"node_modules/@comunica/actor-query-operation-extend": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-1.21.1.tgz",
"integrity": "sha512-xxUQB50GRXxFNNKWREvmBxjycua5aGnW+VebyKGY7jJRc/wurF7RCvKPXy3FoSQYKF8MhJ3VnSP5hRvKW9IKmA==",
"dependencies": {
"@comunica/types": "^1.21.1",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.5.5",
"sparqlee": "^1.6.2"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.4.0",
"@comunica/core": "^1.4.0"
}
},
"node_modules/@comunica/actor-query-operation-filter-sparqlee": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-1.21.1.tgz",
"integrity": "sha512-9iLabwHs4s25WJxg+jOBvgNg/Lvopl1k015mikXN1qS9nhYje0obVR0rcDzMCu7NzhLAJO8c94oJK3FGp/91Yg==",
"dependencies": {
"@comunica/types": "^1.21.1",
"sparqlalgebrajs": "^2.5.5",
"sparqlee": "^1.6.2"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.4.0",
"@comunica/core": "^1.4.0"
}
},
"node_modules/@comunica/actor-query-operation-from-quad": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-1.21.1.tgz",
"integrity": "sha512-fJ2qk7jb5vouiCYI/S37O9gQg8Ol5Y5vmgzmVj//aTV7/oobI7j0V3hRyrM7pN6RhKK7g9daxoO1rqeZkUBQ7Q==",
"dependencies": {
"@comunica/types": "^1.21.1",
"@types/rdf-js": "*",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-group": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-1.21.1.tgz",
"integrity": "sha512-oiZEJH/z4sEtk7ImT8yyBHzlHJtvgcocQVoaGJGU+dor6i2qTTMULPdyzYnAYS8bJLczYnpnb5TDakGGn6ijQg==",
"dependencies": {
"@comunica/actor-abstract-bindings-hash": "^1.21.1",
"@comunica/types": "^1.21.1",
"asynciterator": "^3.1.0",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.5.5",
"sparqlee": "^1.6.2"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.6.0",
"@comunica/core": "^1.4.0"
}
},
"node_modules/@comunica/actor-query-operation-join": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-1.21.1.tgz",
"integrity": "sha512-x3IwZ61R/nVIgG9+nCVJeaeJZfmfFuFfgdDi2wUFrAPH3C2ebJLinOOiJ/BMR9qYUjxHXm/3R2r35DZyUM03yw==",
"dependencies": {
"@comunica/types": "^1.21.1",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/bus-rdf-join": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin-left-deep": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-left-deep/-/actor-query-operation-leftjoin-left-deep-1.21.1.tgz",
"integrity": "sha512-qUcCPnQzwSVBVipPo0fnQeJt8EWWaBzZ8ujFE9zwlrhuTlZtS/XeoIhtKyIB3LoBx/D5gIGlREdFtz0wTFdJlQ==",
"dependencies": {
"@comunica/bus-rdf-join": "^1.21.1",
"@comunica/types": "^1.21.1",
"@types/rdf-js": "*",
"asynciterator": "^3.1.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.9.3",
"@comunica/core": "^1.9.2"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin-nestedloop": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-nestedloop/-/actor-query-operation-leftjoin-nestedloop-1.21.1.tgz",
"integrity": "sha512-p1sHh8inTzY9PPiCTstBQUS5cq9POtm5J6uq4FkUyP1S4PH7BlRgs+fRGln9tSvKCz6JBckAjj4weg3AXMd7Tw==",
"dependencies": {
"@comunica/types": "^1.21.1",
"asynciterator": "^3.1.0",
"sparqlalgebrajs": "^2.5.5",
"sparqlee": "^1.6.2"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/bus-rdf-join": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-minus": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-1.21.1.tgz",
"integrity": "sha512-3UcQMn5tiAwIRxilfJuhKRFYKYrTsGHyJF8EE4OJMhbPZIZWKlQG298H7u51AOYtTOrmIgU6Wny2U8Ju15IM+w==",
"dependencies": {
"@comunica/actor-abstract-bindings-hash": "^1.21.1",
"@comunica/types": "^1.21.1",
"@types/rdf-js": "*",
"asynciterator": "^3.1.0",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.2.0",
"@comunica/core": "^1.2.0"
}
},
"node_modules/@comunica/actor-query-operation-orderby-sparqlee": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-1.21.1.tgz",
"integrity": "sha512-4XmH1gjScaba9KOA7Js4CLWJTgUWs/RWjuydZ2nh/K/WpSf46lG1yDm3i+xhCrtUVoLqcOcnbfFnN8b/XQAQ+Q==",
"dependencies": {
"@comunica/types": "^1.21.1",
"@types/rdf-js": "*",
"asynciterator": "^3.1.0",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.5.5",
"sparqlee": "^1.6.2"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-alt": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-1.21.1.tgz",
"integrity": "sha512-YqvCX7fAYGqJnSEDOzF02niFrNWSjHoXF1UOF8uT3fFa+iH9lcnVbWQUkddNieIqlwiLw/BEufnx24XQiogIQA==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.21.1",
"@comunica/types": "^1.21.1",
"asynciterator": "^3.1.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.2.0",
"@comunica/core": "^1.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-inv": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-1.21.1.tgz",
"integrity": "sha512-PZuAc50w9TOgO1kESMv+P/wLZrHZMlYJSKpTrr+RikM7pM0t3VemI01qDdL63gCY2UxGh3kTCwYkv1qOx5JZwg==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.21.1",
"@comunica/types": "^1.21.1"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.2.0",
"@comunica/core": "^1.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-link": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-1.21.1.tgz",
"integrity": "sha512-aScmnhisOVmRYUPWOjbzxMO4DHzGmqaRKvoHqVMEF9tgAX5E4nmJ1XvFBE9vzuvY1aBxPm5sHnSYlEtUeGa5Mg==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.21.1",
"@comunica/types": "^1.21.1",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.2.0",
"@comunica/core": "^1.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-nps": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-1.21.1.tgz",
"integrity": "sha512-HDw1AoshhNiKWeNcACmSwiSquf0PZkPjoN3cTjg/8wOQz3Yf/XEQfdCIJ9R2vMHaIArMlprq5p4MGrf23RkMcw==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.21.1",
"@comunica/types": "^1.21.1",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.2.0",
"@comunica/core": "^1.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-one-or-more": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-1.21.1.tgz",
"integrity": "sha512-PxOhNKSrgfF5In7DBQOcfZKZRs9o843Cn6Shs1n7Gv0Qa4kbHRFssRe2bL65WTHVNiByghOgOYfUERJfNz0IJQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.21.1",
"@comunica/types": "^1.21.1",
"@types/rdf-js": "*",
"asynciterator": "^3.1.0",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.2.0",
"@comunica/core": "^1.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-seq": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-1.21.1.tgz",
"integrity": "sha512-c1PRbRf18xknqeAMC96FkPzc9Tbz7zGU3FLrDI92Mu5cAcABhAwev3BM1T19UhI/cNkgGkXNa61SkWLVND3oGg==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.21.1",
"@comunica/types": "^1.21.1",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.2.0",
"@comunica/core": "^1.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-more": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-1.21.1.tgz",
"integrity": "sha512-NzgKiD1w+gq/muE9Bd4tQjxfKnVwWm9LMlP8ZBSdZfMQmj4vNAHQhhVHjVPTflElwtB47UlqlRQVxWlP0O79JA==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.21.1",
"@comunica/types": "^1.21.1",
"asynciterator": "^3.1.0",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.2.0",
"@comunica/core": "^1.2.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-one": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-1.21.1.tgz",
"integrity": "sha512-WSNAAlwYm5FBoSOrxX9rZ2VbEQi+k1od738UV4BgoK9YOKZrgDKfj0KhX4niFfnJCjQHAM3iX1GjpsmkYthlSQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.21.1",
"@comunica/types": "^1.21.1",
"asynciterator": "^3.1.0",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.2.0",
"@comunica/core": "^1.2.0"
}
},
"node_modules/@comunica/actor-query-operation-project": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-1.21.1.tgz",
"integrity": "sha512-NTxKHCQWUxotmOnp7K4l2r1NbUQv2Ei2VOCfXd99Ix1CDrNlNt0bTDbKjDaQdwFm+wwDM2IoqmkbeLgD4KU3yA==",
"dependencies": {
"@comunica/data-factory": "^1.21.1",
"@comunica/types": "^1.21.1",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-quadpattern": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-1.21.1.tgz",
"integrity": "sha512-5HmXPT1aU9jpdVaPXeDr7OtKsArQ9xzyZb4KjdfJJPJh5GB5eRX22rA/3xJtb3eugQohNd4miCd8FsfNKx/Lmw==",
"dependencies": {
"@comunica/types": "^1.21.1",
"@types/rdf-js": "*",
"asynciterator": "^3.1.0",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-1.21.1.tgz",
"integrity": "sha512-MDtwwFeP0+CuloFxDtWXbdAsJyNuN+RLYPUbesBtusH9SmeUQjEVopLHpDp3QsZJB02HLeaz3pLMlVZTwxOQWQ==",
"dependencies": {
"@comunica/actor-abstract-bindings-hash": "^1.21.1",
"@comunica/types": "^1.21.1",
"@types/lru-cache": "^5.1.0",
"lru-cache": "^6.0.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/actor-abstract-bindings-hash": "^1.2.0",
"@comunica/bus-query-operation": "^1.2.0",
"@comunica/core": "^1.2.0"
}
},
"node_modules/@comunica/actor-query-operation-service": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-1.21.1.tgz",
"integrity": "sha512-ffIUCnMSTOshFVsVvI8RYTvo3l6nyTinVkl2sxo7O4Cty3jidxA4TScbWPue64sZbbuGvjPb2+2CTvHII2uZjQ==",
"dependencies": {
"@comunica/bus-rdf-resolve-quad-pattern": "^1.21.1",
"@comunica/context-entries": "^1.21.1",
"@comunica/types": "^1.21.1",
"asynciterator": "^3.1.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.2.0",
"@comunica/core": "^1.2.0"
}
},
"node_modules/@comunica/actor-query-operation-slice": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-1.21.1.tgz",
"integrity": "sha512-tuV+ccKKSFL5xnrKVKoJohXWxYOy/T+hW+dS+EOA0cTsluYJSd3Pj3JSE7tfxCRjTn8rOtgqOve3rk8NVkRHYA==",
"dependencies": {
"@comunica/types": "^1.21.1",
"asynciterator": "^3.1.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-sparql-endpoint": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-1.21.1.tgz",
"integrity": "sha512-gfaqNg4tNO+R1+NSO8/nRjFVZdGusmo5wvfd/gO9V6eFtWI7tr6FsN8LyxCH9Y5nyIbsCyX5HKL2qYg2PlImCA==",
"dependencies": {
"@comunica/bus-rdf-resolve-quad-pattern": "^1.21.1",
"@comunica/types": "^1.21.1",
"@comunica/utils-datasource": "^1.21.1",
"@types/rdf-js": "*",
"arrayify-stream": "^1.0.0",
"asynciterator": "^3.1.0",
"fetch-sparql-endpoint": "^1.7.0",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-http": "^1.2.0",
"@comunica/bus-query-operation": "^1.2.0",
"@comunica/core": "^1.2.0"
}
},
"node_modules/@comunica/actor-query-operation-union": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-1.21.1.tgz",
"integrity": "sha512-KnFTTt3Eem/KP7J3jt67WryjUb3Ma67Zjs0uvSavhEZ8fDSEtMpU1eEK8WEOvrLPm2gh8u4oBNJ7A1VQbRV+Hg==",
"dependencies": {
"@comunica/types": "^1.21.1",
"asynciterator": "^3.1.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-update-add-rewrite": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-add-rewrite/-/actor-query-operation-update-add-rewrite-1.21.1.tgz",
"integrity": "sha512-dV0yT36fUBJnLSQuwcdGVr8qyoL0Tu5jbL4ONbhjqAxHP8e4wlqwzQRiZku5ScqgoBmuZ91oeFXnIoQ2EhjCKg==",
"dependencies": {
"rdf-data-factory": "^1.0.4",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/core": "^1.19.2"
}
},
"node_modules/@comunica/actor-query-operation-update-clear": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-clear/-/actor-query-operation-update-clear-1.21.1.tgz",
"integrity": "sha512-YDhigDrIMLYZeUIJ1uvs5F9HLWPs1+AcYuq6FHrYGhqpqqQ0PyUDsl+LcoI67VvRidLIu3/viecU6Bdvb8Gt6w==",
"dependencies": {
"rdf-data-factory": "^1.0.4"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/core": "^1.19.2"
}
},
"node_modules/@comunica/actor-query-operation-update-compositeupdate": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-compositeupdate/-/actor-query-operation-update-compositeupdate-1.21.1.tgz",
"integrity": "sha512-9odx0936F9WQQZ+K7SChzwDkjyIolwOSTIg7epsp/Z+cltp0ZeLMEJvr9ZYgYf5qxZT4SHxiQ+sjfAYffVSRnQ==",
"dependencies": {
"@types/rdf-js": "*"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/core": "^1.19.2"
}
},
"node_modules/@comunica/actor-query-operation-update-copy-rewrite": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-copy-rewrite/-/actor-query-operation-update-copy-rewrite-1.21.1.tgz",
"integrity": "sha512-Ou0oL0e7FHRfWB/3DVko/4ESoxCN9Ue6CasVxUOAN2z9FSMYPV9SF8AgZ8R6LeSwHKeIwXhv2sGg6LiJucxz2Q==",
"dependencies": {
"rdf-data-factory": "^1.0.4",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/core": "^1.19.2"
}
},
"node_modules/@comunica/actor-query-operation-update-create": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-create/-/actor-query-operation-update-create-1.21.1.tgz",
"integrity": "sha512-RgwdyjIOrxldqNndzrONRIjPBAXThyxxGtr8xjB7V7q9TlnLVXlAAD7PrSZcH8MLY0VoPNMOCVR0y9t4TKBt0w==",
"peerDependencies": {
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/core": "^1.19.2"
}
},
"node_modules/@comunica/actor-query-operation-update-deleteinsert": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-deleteinsert/-/actor-query-operation-update-deleteinsert-1.21.1.tgz",
"integrity": "sha512-BidV3Mn1w4ieQvNgVDHS9hwuyx9Wy+fB5+btuNEh9JHdpkHDZlN0vvqhpExVS1a7bx9cdQUpwouipR6THQ5veQ==",
"dependencies": {
"@comunica/actor-query-operation-construct": "^1.21.1",
"@types/rdf-js": "*",
"asynciterator": "^3.1.0"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/bus-rdf-update-quads": "^1.0.0",
"@comunica/core": "^1.19.2"
}
},
"node_modules/@comunica/actor-query-operation-update-drop": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-drop/-/actor-query-operation-update-drop-1.21.1.tgz",
"integrity": "sha512-v//e5tqsqFsu37A+GfCHBqbOfDhI7J8uRjXPZ8VnuapMeUfLQTZSVGf2xQ+/FD/UDp3/gpERKVC7cRXPzoWEFQ==",
"dependencies": {
"rdf-data-factory": "^1.0.4"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/core": "^1.19.2"
}
},
"node_modules/@comunica/actor-query-operation-update-load": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-load/-/actor-query-operation-update-load-1.21.1.tgz",
"integrity": "sha512-ql4eAZhwIqF5CjzCcU6vmRaxHwYJTXnLsseBmQzJrgvKNxr3ols0E6sc4tia1IIeRTmHmOz+h7AZD4uyWw+Xrg==",
"dependencies": {
"rdf-data-factory": "^1.0.4",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/core": "^1.19.2"
}
},
"node_modules/@comunica/actor-query-operation-update-move-rewrite": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-move-rewrite/-/actor-query-operation-update-move-rewrite-1.21.1.tgz",
"integrity": "sha512-T71U+wuWxzpYbVmJ0Sb/FFQY/Vh8nvCDgih4GOFPEI2UhZFYsQ5ilGy8a5xBPeuuuSWvYEvL/+VZPeIp8GZTjA==",
"dependencies": {
"rdf-data-factory": "^1.0.4",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/core": "^1.19.2"
}
},
"node_modules/@comunica/actor-query-operation-values": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-1.21.1.tgz",
"integrity": "sha512-BfDg+Lg4snRI4CLdopztaErd040P7y4sflriDCMHEoqVVQuha89Scddcx3ClqOtJx5mScYmjGxkt8ttQwx5MHg==",
"dependencies": {
"@comunica/types": "^1.21.1",
"asynciterator": "^3.1.0",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.5.5"
},
"peerDependencies": {
"@comunica/bus-query-operation": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-rdf-dereference-fallback": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-fallback/-/actor-rdf-dereference-fallback-1.21.1.tgz",
"integrity": "sha512-iXaC7/jUWMJQKoNa9Hm4UouXTJfER/jyK7HQ0q9ddkLvXYTWwcltnnLxs+dXQRbpUZm8NvP/LPUC3H1G85Tzwg==",
"peerDependencies": {
"@comunica/bus-rdf-dereference": "^1.19.2",
"@comunica/core": "^1.19.2"
}
},
"node_modules/@comunica/actor-rdf-dereference-http-parse": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-http-parse/-/actor-rdf-dereference-http-parse-1.21.1.tgz",
"integrity": "sha512-BSBg8jrqSNflfNYbDMftWYV7qggNMUnysMb78Q2xJItSzUuAE5/1GoWMrooqrCeYMMICa4F+IJFltS4R7vXjUQ==",
"dependencies": {
"cross-fetch": "^3.0.5",
"relative-to-absolute-iri": "^1.0.5"
},
"peerDependencies": {
"@comunica/bus-http": "^1.0.0",
"@comunica/bus-rdf-dereference": "^1.0.0",
"@comunica/bus-rdf-parse": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-rdf-join-multi-smallest": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-multi-smallest/-/actor-rdf-join-multi-smallest-1.21.1.tgz",
"integrity": "sha512-3PmXF6QgNmhYLm0XrN3Fdyr632YwHmv/kngwLdIRZAFyGBOY41vEoyLzbSiQNBCmdT1lJ1qX4tl3yVQkskPCoQ==",
"dependencies": {
"@comunica/bus-query-operation": "^1.21.1",
"@comunica/mediatortype-iterations": "^1.21.1",
"@comunica/types": "^1.21.1"
},
"peerDependencies": {
"@comunica/bus-rdf-join": "^1.9.2",
"@comunica/core": "^1.9.2"
}
},
"node_modules/@comunica/actor-rdf-join-nestedloop": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-nestedloop/-/actor-rdf-join-nestedloop-1.21.1.tgz",
"integrity": "sha512-19zZ7rgPxWgxKJcN2HeimpGj7TCx7yYLWDyhKw9KPra/7Ogc8bKhawOINCEqWdyi0nACQO9G/gXCpakjUmnd8g==",
"dependencies": {
"@comunica/types": "^1.21.1",
"asyncjoin": "^1.0.3"
},
"peerDependencies": {
"@comunica/bus-rdf-join": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-rdf-join-symmetrichash": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-symmetrichash/-/actor-rdf-join-symmetrichash-1.21.1.tgz",
"integrity": "sha512-st1NVQ0g/ODC+qf3z+QANNYj5Hngqlq3D+cxI5oswFeTnKVFWWB66DjzO0oiqE3YuUu0aqNoV5Jty4iTyBieig==",
"dependencies": {
"@comunica/types": "^1.21.1",
"asyncjoin": "^1.0.3"
},
"peerDependencies": {
"@comunica/bus-rdf-join": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-rdf-metadata-all": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-all/-/actor-rdf-metadata-all-1.21.1.tgz",
"integrity": "sha512-YbDuyOrBcQ9dzW0WTJ26wr35QxddohjuZ0p7Zs1wNFr6uImkkcL9C12h9QJOA4SRa1//u9DhWxni8AMmn6w/FA==",
"dependencies": {
"@types/rdf-js": "*"
},
"peerDependencies": {
"@comunica/bus-rdf-metadata": "^1.6.3",
"@comunica/core": "^1.6.3"
}
},
"node_modules/@comunica/actor-rdf-metadata-extract-hydra-controls": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-controls/-/actor-rdf-metadata-extract-hydra-controls-1.21.1.tgz",
"integrity": "sha512-pfZeKwKaYR73QhGHrURGE+cNB5qavKaW6F9EnjkE44maTvyflW8RWog6p8s5dD20FLCKq/OLyLpqBNQ7Z1y04Q==",
"dependencies": {
"@types/rdf-js": "*",
"@types/uritemplate": "^0.3.4",
"uritemplate": "0.3.4"
},
"peerDependencies": {
"@comunica/bus-rdf-metadata-extract": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-rdf-metadata-extract-hydra-count": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-count/-/actor-rdf-metadata-extract-hydra-count-1.21.1.tgz",
"integrity": "sha512-y7U/hQ/R7iKDa4Y+XBsyjaHVbpuzgq6Zs46Fm1u6nI6ln4e6Cs3sDHZgegzcZ/Orul5+vn61yb0hhO1JxJlOAg==",
"peerDependencies": {
"@comunica/bus-rdf-metadata-extract": "^1.0.0",
"@comunica/core": "^1.0.0"
}
},
"node_modules/@comunica/actor-rdf-metadata-extract-patch-sparql-update": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-patch-sparql-update/-/actor-rdf-metadata-extract-patch-sparql-update-1.21.1.tgz",
"integrity": "sha512-mii4UIX2xwAo2SLQsJ1UqS8rMnnREsXQfti+6hAJ81hu4I77YVnC8MJ0McripzqHLXukGPepJlYwNZpbl1KrhA==",
"peerDependencies": {
"@comunica/bus-rdf-metadata-extract": "^1.20.0",
"@comunica/core": "^1.20.0"
}
},
"node_modules/@comunica/actor-rdf-metadata-extract-sparql-service": {
"version": "1.21.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-sparql-service/-/actor-rdf-metadata-extract-sparql-service-1.21.1.tgz",
"integrity": "sha512-eob9bD4eHnzIO9uIdVXUqWh8ypeeh7a1KfOSRC5hLOznGZPCxyk9yBM0E4OuJna8GKN8v+TLRyZuHdBPOnAFGg==",
"dependencies": {
"relative-to-absolute-iri": "^1.0.5"
},
"peerDependencies": {
"@comunica/bus-rdf-metadata-extract": "^1.8.0",
"@comunica/core": "^1.8.0"
}
},