-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
16618 lines (16618 loc) · 657 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": "solid-app-store",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "solid-app-store",
"version": "1.0.0",
"license": "MIT",
"devDependencies": {
"@comunica/query-sparql": "^2.4.3",
"bootstrap": "^5.1.3",
"css-loader": "^6.7.1",
"font-awesome": "^4.7.0",
"http-server": "^14.1.1",
"node-polyfill-webpack-plugin": "^2.0.1",
"style-loader": "^3.3.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.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==",
"dev": true,
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-2.4.0.tgz",
"integrity": "sha512-rs5B9LAAoqRbEmB+WLyM+Y3vRPSV9zdJ/gXAKPOJMUy0uvltcnIpjrYLU2vo0WecnVs1wI7Rat5xv95galpssg==",
"dev": true,
"dependencies": {
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-2.4.0.tgz",
"integrity": "sha512-Wcwr8MflMLwanY0aC8sgJx8Gv0p7PAbkihHkDe9Q1Y/e4NZ3xZyIlWDL61cC/W2Vp5DaOKa8oYR53+zp/QWBuA==",
"dev": true,
"dependencies": {
"@comunica/core": "^2.4.0",
"readable-stream": "^4.0.0"
}
},
"node_modules/@comunica/actor-abstract-parse/node_modules/readable-stream": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.2.0.tgz",
"integrity": "sha512-gJrBHsaI3lgBoGMW/jHZsQ/o/TIWiu5ENCJG1BB7fuCKzpFM8GaS2UoBVt9NO+oI+3FcrBNbUkl3ilDe09aY4A==",
"dev": true,
"dependencies": {
"abort-controller": "^3.0.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"process": "^0.11.10"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-2.4.0.tgz",
"integrity": "sha512-GiA3gUyGI0SusjiYuEQRWGzUzbGah1vsU2I6EgOQx92RkwfbviOiiPYnS+raEsk//TPP3J1WCgaglFUEoZ79KQ==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"asynciterator": "^3.7.0",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-2.4.0.tgz",
"integrity": "sha512-Jb2mHQypFJIAs+uBd5lDnGOftFfR2YvY8QOPpWqw1k9AtbFs5mp+sMrDhZiAv05EoBtyJe8hqeQ/x9tOO9AAdw==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-2.4.2.tgz",
"integrity": "sha512-WKs9KdyJGo59/lQVNoAbRdd2AYJU854/vKL8f1vrXa2qKvcLA0XH+SfwQOxuRc+h2Y0N46HbdgdOABb8kViTiQ==",
"dev": true,
"dependencies": {
"@comunica/bus-dereference": "^2.4.2",
"@comunica/core": "^2.4.0"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-2.4.2.tgz",
"integrity": "sha512-d/fIFgfP6dnd+oWXWHEn712SnVy/WnuSV52dqVvVsAQb19KdlwHputiQwYrmcoMrabrEiAE/uG2sDEdaHoKn7w==",
"dev": true,
"dependencies": {
"@comunica/bus-dereference": "^2.4.2",
"@comunica/bus-http": "^2.4.0",
"@comunica/core": "^2.4.0",
"cross-fetch": "^3.0.5",
"relative-to-absolute-iri": "^1.0.5",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-dereference-rdf-parse": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-2.4.2.tgz",
"integrity": "sha512-3a7penFkXIo9pCuLJMqnC9KsdM0p+wC7zLXZu8+MGkyY+NFrAAD3wW4IXy3ii4lWwUNabAW1zwxfVj2lCiKb9A==",
"dev": true,
"dependencies": {
"@comunica/bus-dereference": "^2.4.2",
"@comunica/bus-dereference-rdf": "^2.4.2",
"@comunica/bus-rdf-parse": "^2.4.0"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-bindings-sha1/-/actor-hash-bindings-sha1-2.4.0.tgz",
"integrity": "sha512-Yibx4Adfh15p1XeweJrcnbtj+8whKLkYU9XAPty2G4DudsxgILQW93iOTr8M9SIgvPiT4WDpM3buGtYMrafK6Q==",
"dev": true,
"dependencies": {
"@comunica/bus-hash-bindings": "^2.4.0",
"@comunica/core": "^2.4.0",
"canonicalize": "^1.0.8",
"hash.js": "^1.1.7",
"rdf-string": "^1.5.0"
}
},
"node_modules/@comunica/actor-http-fetch": {
"version": "2.4.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-fetch/-/actor-http-fetch-2.4.3.tgz",
"integrity": "sha512-KPgzIr9lnkFkm5wyFWu0pv277Fxkbq0zkZBRpKriC5eXMZziOxad6h2ucjTHEs5PLbQ1BPJ8TXwqccpsQphXaQ==",
"dev": true,
"dependencies": {
"@comunica/bus-http": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/mediatortype-time": "^2.4.0",
"abort-controller": "^3.0.0",
"cross-fetch": "^3.0.5"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-2.4.0.tgz",
"integrity": "sha512-aNJmvPHJONPqypts0hN2jtrMbIIxaps87V1IR/MVVFzZmVrXrO3rV5WyoGeo8Ws8CE1oma33jJx9jbuIuvqHNQ==",
"dev": true,
"dependencies": {
"@comunica/bus-http": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/mediatortype-time": "^2.4.0",
"@comunica/types": "^2.4.0"
}
},
"node_modules/@comunica/actor-init-query": {
"version": "2.4.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-query/-/actor-init-query-2.4.3.tgz",
"integrity": "sha512-jE+EBIgNzR3Rzy+MqgWEOAfPg0edbp2fXOcbN5lREPXrW17YW4jg++N6noX+6oRNqSSLSnUzEAtnri5TMVxClw==",
"dev": true,
"dependencies": {
"@comunica/actor-http-proxy": "^2.4.0",
"@comunica/bus-context-preprocess": "^2.4.0",
"@comunica/bus-http-invalidate": "^2.4.0",
"@comunica/bus-init": "^2.4.0",
"@comunica/bus-optimize-query-operation": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-query-parse": "^2.4.0",
"@comunica/bus-query-result-serialize": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/logger-pretty": "^2.4.0",
"@comunica/runner": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"@types/yargs": "^17.0.2",
"asynciterator": "^3.7.0",
"negotiate": "^1.0.1",
"rdf-quad": "^1.4.0",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^4.0.0",
"streamify-string": "^1.0.1",
"yargs": "^17.1.1"
},
"optionalDependencies": {
"process": "^0.11.10"
}
},
"node_modules/@comunica/actor-optimize-query-operation-bgp-to-join": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-bgp-to-join/-/actor-optimize-query-operation-bgp-to-join-2.4.0.tgz",
"integrity": "sha512-JVRM6W4Yf/6Bxs5a9uFlSYoOmoo6kgUmyXDG2rNbttsbWS6bYW4LL2gPrPT4Qr8d7mVVxWsP7at0EKpnd+Rsbg==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-2.4.0.tgz",
"integrity": "sha512-qw21ck7a9ERoPvsLgW4pijItwGlYXgxYiY1192j7AMBX8el7PhEJHDQdwXwgZNPwPiJSryK8lxPSz7l9zNPs/Q==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-connected": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-connected/-/actor-optimize-query-operation-join-connected-2.4.0.tgz",
"integrity": "sha512-L0fJ8idoU3r2y4BK/hUhrWwJsrZaui69Co5+8xpn+9aP5lNcJK6RQ514A2k39eBJs2EVV5WB4qWvJWVp2hrZ+g==",
"dev": true,
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-2.4.0.tgz",
"integrity": "sha512-OznFZz0LL6CzAGHAbIqTQKdU+QcrbjP9oym7o3FpJ8DFZvW3hsXA0c33qON4llsdCw7XPw1L/hmFV+jnd+rrjQ==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-join": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-join/-/actor-query-operation-bgp-join-2.4.0.tgz",
"integrity": "sha512-2y0v1FCqJhsoePAw/fjF3vJnM5XUpjavp0Z3YV9ajy629LJqxLj6gN6s2BwjacHDuA/0ITbBr2bhHln0sNggaA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-2.4.0.tgz",
"integrity": "sha512-KgoeKvAS7AYyXxmPY/kq2RAB3hqlrpTqLcGNaOyq2HkCTlBXmEUWAzNyp8ni39iVbCICyGGHSSsaRtHHBxyY3A==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"asynciterator": "^3.7.0",
"rdf-data-factory": "^1.0.3",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-describe-subject": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-2.4.0.tgz",
"integrity": "sha512-MpGyV8oPhXLS/VBJQXFged5duWIWzhyLHnC2PcbtbYrMDyUUvaRh3OER2nSeT61RsO6LwSU8XaBxYuQ7+lQV2w==",
"dev": true,
"dependencies": {
"@comunica/actor-query-operation-union": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"rdf-data-factory": "^1.0.3",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-distinct-hash": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-2.4.0.tgz",
"integrity": "sha512-C15wNebzlWmLErCANVbFACnZANIHXmSkV38KoDY11HT15RbpD+uVW9fBCHXbREjLYHf2/8SNSb0YZakDaOp9mA==",
"dev": true,
"dependencies": {
"@comunica/bus-hash-bindings": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-extend": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-2.4.0.tgz",
"integrity": "sha512-0v0TfIxd4F7Iu90+WU8QYHLbSThP91Nt5noX8hATZsKscVTLKu77tCjAmsIg8FlSB/AKIJteKTg5siXOJxrj+g==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-filter-sparqlee": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-2.4.0.tgz",
"integrity": "sha512-+RMh2Z/T78X1PADVi+FaB39ad0i0wvjXu+DDo76S+Lg1RGx6UvtgmmvlOUjyBrzPvzgzv786UfNVwK6W89Okig==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-from-quad": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-2.4.0.tgz",
"integrity": "sha512-ExX5GjMpvfMadtsNiHLqQoPAv08wIaV+w+wM6QNyIi3t3aI8WcItSn5loVD6nMGCqNhzzFiOqANsHR0HUFhLbQ==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-group": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-2.4.0.tgz",
"integrity": "sha512-5T0zMuI9WtwdsXr1xu5GOjlGQGenEsHRwwgUft6jw8odJ7tczvM5S16QH/L0ymv04ykhFIWRQUpmvZKD6utFpw==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-hash-bindings": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"asynciterator": "^3.7.0",
"rdf-data-factory": "^1.1.0",
"sparqlalgebrajs": "^4.0.0",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-join": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-2.4.0.tgz",
"integrity": "sha512-IyLzSdHMZRs7gL0noTuAV7n7Urbbby5UgzCN7QU9fUfm4KspQI83Slw3wFRAA+3/kw9wz1+FsomFBSyW+tmyAg==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-join": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin/-/actor-query-operation-leftjoin-2.4.0.tgz",
"integrity": "sha512-NPd+CUriBvZDoTh0ZflPJDFAGDA3Zp507bK9Ca02XF9edqF1SeDVcs6baqgAIIsnHJHnvIH8zcwM8mbsiHat+w==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-join": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-minus": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-2.4.0.tgz",
"integrity": "sha512-sNeeaEJlSCn5CKwid3Yy3VbXRrCZnF79mqTE/gqVbJdQ2DsBNTXDON+JehE2nWLnDJdb/b2qQ3M3FVT63ffK4w==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-join": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-nop": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-nop/-/actor-query-operation-nop-2.4.0.tgz",
"integrity": "sha512-7V97jL2GV9WLYcKWpBEgl7n1cTFYjdmxOzuFHhqtRtMuPFVEC2p4O7PUvpcMXGSiJmz63FR+zcqJJE0wlOnH8g==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-orderby-sparqlee": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-2.4.0.tgz",
"integrity": "sha512-L4dNBPzG6PUf9Hxaob/SlNbj5s/+7OYmjeMrV4klhlthkIcMmDhcNhyHfd/mRuQIyO1x1SZpOL+UtSmlZjq74A==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"sparqlalgebrajs": "^4.0.0",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-path-alt": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-2.4.0.tgz",
"integrity": "sha512-i7pPmg8rGSK5II0+a9CSKW/J4q/XNfZJoV5goqDxsINsAh4TACENzVEzibmP4zhSTegY88HYW817RS+LEejdvQ==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/actor-query-operation-union": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-inv": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-2.4.0.tgz",
"integrity": "sha512-eY2jikXqzHBAs/v10Kq2dGgcBADTWqw9ImatyjYYURjuAgfbSUMcXVuk/szltiCMqSyZHk/S4q9hCQBNh3uW0Q==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-link": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-2.4.0.tgz",
"integrity": "sha512-gljUKngnLMZrBCi8rC4H/6nfQC9gMYgkr4e5Ese92GS+mkRlx7sS//HR5ygRDy7HT1LYyfjxbRDCCVHEvFNvtQ==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-nps": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-2.4.0.tgz",
"integrity": "sha512-24jWuqIHRS55GlUXa/moeZ5cTn5U+DLQAPX8s3/5qyAcnMTXKwug3oRF76dXQ8y3GZbSJwGstehwJXfQ1s283Q==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-one-or-more": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-2.4.0.tgz",
"integrity": "sha512-IitPutGMGyoL3w1KtF7udn+0ojFVeEItmr96UT6pDpzTcFvavJfQazYTwK3rHTFa/Ave8rs2zSJs9R+lWfM6SQ==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-seq": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-2.4.0.tgz",
"integrity": "sha512-ohAU80T5KQU+BTfKmc86CQicZ0vJPb/WTqO/EInPJ91f77xQ7z2V+1p+PwNt0lgqfwgWvikXhOODaIb1etJ4CQ==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-join": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-more": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-2.4.0.tgz",
"integrity": "sha512-7FI622SeG9FrjTzajZ5ad9LPA35oiw6bZuw3Jzx90c1Dp9Jw80Fb+z81eqO/vmSRhuJCkj6x5vF+9xOpjP9Q+Q==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-one": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-2.4.0.tgz",
"integrity": "sha512-ZtyvDimV5Jg0dWu1v/C1wWKQDe7CpqDtWP/95DMxCCy51iNdvnXlIEuDTuGZPKNco5n+Djm/NZ4LYfrS0YBbpQ==",
"dev": true,
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-project": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-2.4.0.tgz",
"integrity": "sha512-y1eLkDa4dfP6tjFalEiGAV8VBceVZlb230cCQfE3K8JJs8eMzNRBaqHr48VjmlJwyroe/+weKpaBSC/BjUuMyg==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/data-factory": "^2.0.1",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.0.3",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-quadpattern": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-2.4.0.tgz",
"integrity": "sha512-0TLN9v4AygMazbDGDMEFNPaN5NzuWA517Cy0HujmR2J3LmrUGBlD9vHsiSwjj9moNdT3BM0PWnDOXWjOGTE47w==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"asynciterator": "^3.7.0",
"rdf-data-factory": "^1.1.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-2.4.0.tgz",
"integrity": "sha512-fevCjMvSMgoml4i1BofP/7C0Ai+EuHHjWVY/up5r0A7yr8p7v5DO38LtyRMbMKJxGGbVpJ28H71Y133nc9qhrA==",
"dev": true,
"dependencies": {
"@comunica/bus-hash-bindings": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@types/lru-cache": "^5.1.0",
"lru-cache": "^6.0.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-service": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-2.4.0.tgz",
"integrity": "sha512-z8AZFmiGbIpQinHc73wxc2DvVhTt7HddXRDEz/qcaEfN4c827OHLoC3w1t07pjtSTfbY9Cz2Ax2t9fcHks5tRA==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-slice": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-2.4.0.tgz",
"integrity": "sha512-V4cQP9AUlvMVHcpdNwiKbl7MFFz8zzX0dqpehvCoKr7zAVse52DvPo9HA+Vf1v/pP6pczofaOhSXdyRtLjp/VQ==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-sparql-endpoint": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-2.4.0.tgz",
"integrity": "sha512-YepUIguUU7YaywJWHOYW5AUeUhr1y5hidxRwV2k2Y5CldjqGThpzT+JI0n9n21rmQGIN2b6l9WDtLL1aDMPw6Q==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-http": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.4.0",
"@comunica/bus-rdf-update-quads": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/mediatortype-httprequests": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"asynciterator": "^3.7.0",
"fetch-sparql-endpoint": "^3.0.0",
"rdf-data-factory": "^1.1.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-union": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-2.4.0.tgz",
"integrity": "sha512-t5jzg8m9UyxV8GL91SC55iFuC3y5e5qBuYcUYMSeUnEWD7+CtiNQU0WP7bzF2Ip7ImVsuknlsNkht1rQiweEBA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"asynciterator": "^3.7.0",
"rdf-terms": "^1.7.1",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-update-add-rewrite": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-add-rewrite/-/actor-query-operation-update-add-rewrite-2.4.0.tgz",
"integrity": "sha512-WXjW4x8hwnNFFDL635HVMnEr5adltXvbSrhPENjJbZi14rzv2pC/jgDV6RpBMhsy0cf8Jcu+5F82JEBvJWf8rg==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"rdf-data-factory": "^1.0.4",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-update-clear": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-clear/-/actor-query-operation-update-clear-2.4.0.tgz",
"integrity": "sha512-u3j+XwyBE2W/w2dHncLWyQ6DMfafdTscLknJvx2CHyYzVULfYNFJENW7yhvZZaRBiYKbfVIIXJWhfs2EtA04LA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-update-quads": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.0.4",
"sparqlalgebrajs": "^4.0.2"
}
},
"node_modules/@comunica/actor-query-operation-update-compositeupdate": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-compositeupdate/-/actor-query-operation-update-compositeupdate-2.4.0.tgz",
"integrity": "sha512-yEDR/zuJFQBp08ll31oRmtGnIzLsHRr8oGVUHMkjVRxaEmXQRCmr5RBLDJYapsJkulUN0KItWFavnIJl7mjMuA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.2"
}
},
"node_modules/@comunica/actor-query-operation-update-copy-rewrite": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-copy-rewrite/-/actor-query-operation-update-copy-rewrite-2.4.0.tgz",
"integrity": "sha512-hUt3bL3oKc8+DHDop9Qg9E8bHhRACEIiYsUXIz/n3hEhpCIE5TD+dw3CBNmbk67hG2JH5bShvSIjpY5i5kk+pg==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-update-create": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-create/-/actor-query-operation-update-create-2.4.0.tgz",
"integrity": "sha512-uDan3uHnNoHzR1x9sawrSYWSk45W9Ej7QfUbj98npm9S3gk2t6Xmu5OMDF2I448NTboE0kqqlyr+im8rKpYcrA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-update-quads": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.2"
}
},
"node_modules/@comunica/actor-query-operation-update-deleteinsert": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-deleteinsert/-/actor-query-operation-update-deleteinsert-2.4.0.tgz",
"integrity": "sha512-mBmacVhs2n2xiPVPJl3gpCwbpgW324eElGn+fpYKuUIrzbzeNIxgJNbFtdckhk18wLpr1TqDo7ai6tPQHzsINg==",
"dev": true,
"dependencies": {
"@comunica/actor-query-operation-construct": "^2.4.0",
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-update-quads": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"asynciterator": "^3.7.0",
"sparqlalgebrajs": "^4.0.2"
}
},
"node_modules/@comunica/actor-query-operation-update-drop": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-drop/-/actor-query-operation-update-drop-2.4.0.tgz",
"integrity": "sha512-0Hxv+HxWfBXnwYMxV17FNaTH+HW2bHrVaVz+7reGJ2/tLJLJNHmSb7BUEWVJYDvCEukFMJZGU1tCPh4t9nW+hQ==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-update-quads": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.0.4",
"sparqlalgebrajs": "^4.0.2"
}
},
"node_modules/@comunica/actor-query-operation-update-load": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-load/-/actor-query-operation-update-load-2.4.0.tgz",
"integrity": "sha512-Gyb4YK01D7UMSCcrznyV3fpMq8tfrQr2J+0p/gkSUBrzwdXCwQbTrXNvMKaQl4j3uG63C1RVkz75WZk7CY+QQg==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-update-quads": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"rdf-data-factory": "^1.0.4",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-update-move-rewrite": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-move-rewrite/-/actor-query-operation-update-move-rewrite-2.4.0.tgz",
"integrity": "sha512-PD6W2f04bPcWxw9DYf+ICMSqS+H0BrS2jnw48Xjs3TWzSsnYhd+eCfvrjAsP36y9vRRvEboKjbEhmuqQPr04IA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-values": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-2.4.0.tgz",
"integrity": "sha512-AfoUy+6R7qkkkae2CV7xV7vlJC5EDGBUaxA54U3ztkE8I2vNjpPWxN8uv2eMAbbRcw196LMq3BE8tHzxGJs0wQ==",
"dev": true,
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"rdf-data-factory": "^1.1.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-parse-graphql": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-graphql/-/actor-query-parse-graphql-2.4.0.tgz",
"integrity": "sha512-4+Drn/ViLKJK5nM7u1Hg2PTu7InSlflb57b2WRSyqmTEEL86C6+OWdoHMe7Ae4VMQZQkvhwWysdVw2uA6DeSBQ==",
"dev": true,
"dependencies": {
"@comunica/bus-query-parse": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/core": "^2.4.0",
"graphql-to-sparql": "^3.0.0"
}
},
"node_modules/@comunica/actor-query-parse-sparql": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-sparql/-/actor-query-parse-sparql-2.4.0.tgz",
"integrity": "sha512-HzSBKh7J53vec1DioWm5M61nHxuLYZSvtbm6InOtoNGk6cJ6rN2YQ7I9qjSD0VMumn3pnsSW8dee+0aSpoCPEg==",
"dev": true,
"dependencies": {
"@comunica/bus-query-parse": "^2.4.0",
"@comunica/core": "^2.4.0",
"@types/sparqljs": "^3.0.0",
"sparqlalgebrajs": "^4.0.0",
"sparqljs": "^3.4.1"
}
},
"node_modules/@comunica/actor-query-result-serialize-json": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-json/-/actor-query-result-serialize-json-2.4.0.tgz",
"integrity": "sha512-2NO/BGz8TTtMHLybUE7/qTQG7xxBi9bLC2hj34iak0P71mSfE6z7xePvzw6/Dyn4Nm0U96IQJtqtz8g/hOVkkw==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.4.0",
"@comunica/types": "^2.4.0",
"rdf-string": "^1.5.0",
"readable-stream": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-json/node_modules/readable-stream": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.2.0.tgz",
"integrity": "sha512-gJrBHsaI3lgBoGMW/jHZsQ/o/TIWiu5ENCJG1BB7fuCKzpFM8GaS2UoBVt9NO+oI+3FcrBNbUkl3ilDe09aY4A==",
"dev": true,
"dependencies": {
"abort-controller": "^3.0.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"process": "^0.11.10"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-rdf": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-rdf/-/actor-query-result-serialize-rdf-2.4.0.tgz",
"integrity": "sha512-qMESR+u6mcPYuhVbneg3ABBRPl7qlguh8P5K3CCE34NxCF8rmMUYndmHvdZ6dF/u5lezJFM5Nf2lZa74ht8gdw==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.4.0",
"@comunica/bus-rdf-serialize": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-simple": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-simple/-/actor-query-result-serialize-simple-2.4.0.tgz",
"integrity": "sha512-78mnJ3VRRIPgLKWQIOtZ1/GdETw27qRgjSum/6Hi+84+H6/OGVX0g0DX2yEHfPdzYlTdqn6bHZ4RjODp4wcRDA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.4.0",
"@comunica/types": "^2.4.0",
"readable-stream": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-simple/node_modules/readable-stream": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.2.0.tgz",
"integrity": "sha512-gJrBHsaI3lgBoGMW/jHZsQ/o/TIWiu5ENCJG1BB7fuCKzpFM8GaS2UoBVt9NO+oI+3FcrBNbUkl3ilDe09aY4A==",
"dev": true,
"dependencies": {
"abort-controller": "^3.0.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"process": "^0.11.10"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-csv": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-csv/-/actor-query-result-serialize-sparql-csv-2.4.0.tgz",
"integrity": "sha512-0p+pOfZ6mlShghjdkjNe/hcYxX/6bW2cF94Cv6D5VqgjTs0+BWKx3CsaWy1WhndOpG8TDwowufaaGz0HPqfj/Q==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"readable-stream": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-csv/node_modules/readable-stream": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.2.0.tgz",
"integrity": "sha512-gJrBHsaI3lgBoGMW/jHZsQ/o/TIWiu5ENCJG1BB7fuCKzpFM8GaS2UoBVt9NO+oI+3FcrBNbUkl3ilDe09aY4A==",
"dev": true,
"dependencies": {
"abort-controller": "^3.0.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"process": "^0.11.10"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-json": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-json/-/actor-query-result-serialize-sparql-json-2.4.0.tgz",
"integrity": "sha512-iSSBzElMrBd0D+HgiBRYSEnPLg/H8X4vb5y4T0lKNRlgbNA0Cca42Tyo+QRHCAP02qO7uQleQBRX/oYmrsTkmA==",
"dev": true,
"dependencies": {
"@comunica/bus-http": "^2.4.0",
"@comunica/bus-http-invalidate": "^2.4.0",
"@comunica/bus-query-result-serialize": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"readable-stream": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-json/node_modules/readable-stream": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.2.0.tgz",
"integrity": "sha512-gJrBHsaI3lgBoGMW/jHZsQ/o/TIWiu5ENCJG1BB7fuCKzpFM8GaS2UoBVt9NO+oI+3FcrBNbUkl3ilDe09aY4A==",
"dev": true,
"dependencies": {
"abort-controller": "^3.0.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"process": "^0.11.10"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-tsv": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-tsv/-/actor-query-result-serialize-sparql-tsv-2.4.0.tgz",
"integrity": "sha512-HEZC63FyhdaY/FMXqOSevJYd6aMmO/92DmW3udm0NJ+74AgjWd/DuBLVMggUxnr72mgdDlRv9NEAhZev67OZuA==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"rdf-string-ttl": "^1.1.0",
"readable-stream": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-tsv/node_modules/readable-stream": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.2.0.tgz",
"integrity": "sha512-gJrBHsaI3lgBoGMW/jHZsQ/o/TIWiu5ENCJG1BB7fuCKzpFM8GaS2UoBVt9NO+oI+3FcrBNbUkl3ilDe09aY4A==",
"dev": true,
"dependencies": {
"abort-controller": "^3.0.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"process": "^0.11.10"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-xml": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-xml/-/actor-query-result-serialize-sparql-xml-2.4.0.tgz",
"integrity": "sha512-SMG9/sB6SFsvaHxLCSfXzyvMPxY/0bYESiWnx/8Eeppx+ZdaLJhf1d/wuSl8oXfH02En4FrGXhTVzdWxv7xSRw==",
"dev": true,
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"readable-stream": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-xml/node_modules/readable-stream": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.2.0.tgz",
"integrity": "sha512-gJrBHsaI3lgBoGMW/jHZsQ/o/TIWiu5ENCJG1BB7fuCKzpFM8GaS2UoBVt9NO+oI+3FcrBNbUkl3ilDe09aY4A==",
"dev": true,
"dependencies": {
"abort-controller": "^3.0.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"process": "^0.11.10"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-stats": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-stats/-/actor-query-result-serialize-stats-2.4.0.tgz",
"integrity": "sha512-cPwAkMbVApSoF/r7HYXr8LHw8PbEmVDqIuCBKEEqArSBUg3e/QYkMrpQyb8iKI1MfyLp2WpeK0x0lo4/zfQOxw==",
"dev": true,
"dependencies": {
"@comunica/bus-http": "^2.4.0",
"@comunica/bus-http-invalidate": "^2.4.0",