forked from SolidLabResearch/Bashlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
20753 lines (20753 loc) · 824 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-bashlib",
"version": "0.3.5",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "solid-bashlib",
"version": "0.3.5",
"license": "ISC",
"dependencies": {
"@comunica/query-sparql": "^2.1.0",
"@inrupt/solid-client": "1.26.0",
"@inrupt/solid-client-authn-node": "^1.14.0",
"chalk": "^4.1.2",
"cli-columns": "^4.0.0",
"cli-select": "^1.1.2",
"cli-table": "^0.3.11",
"commander": "^9.0.0",
"cookie-session": "^2.0.0",
"cross-fetch": "^3.1.5",
"express": "^4.17.3",
"fetch-blob": "^2.1.1",
"form-urlencoded": "^6.0.6",
"getmac": "^5.20.0",
"http-link-header": "^1.0.4",
"inquirer": "^8.2.4",
"jose": "^4.7.0",
"jwt-decode": "^3.1.2",
"md5": "^2.3.0",
"mime-types": "^2.1.35",
"open": "^8.4.0",
"set-cookie-parser": "^2.4.8",
"tiny-queue": "^0.2.1"
},
"bin": {
"sld": "bin/solid.js",
"solid-css": "bin/solid-dev.js",
"solid-tools": "bin/solid.js"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/inquirer": "^8.2.1",
"@types/set-cookie-parser": "^2.4.2",
"live-server": "^1.2.2",
"release-it": "^15.5.0",
"typedoc": "^0.23.27",
"typescript": "^4.9.3"
}
},
"node_modules/@babel/code-frame": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
"integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
"dev": true,
"dependencies": {
"@babel/highlight": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.19.1",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz",
"integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==",
"dev": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
"integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
"dev": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.18.6",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight/node_modules/ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dev": true,
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dev": true,
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/@babel/highlight/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==",
"dev": true
},
"node_modules/@babel/highlight/node_modules/has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"dev": true,
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=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==",
"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.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-2.5.1.tgz",
"integrity": "sha512-Iz8j1XqXp/A7HJVDTtEtp7hV6nuNoIjjEUgiJUiBTM5OIx7sFbGfUd10VtHPSXB/3lHHcIo34BKNZkeurNo6BA==",
"dependencies": {
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-2.5.1.tgz",
"integrity": "sha512-KbkdI2QRH6gfVsDwufpj02jBSBMSG19xC1d52M1GG6MfdMoDNj2MLlcf0rXgYe1IePdCWf0qZzxqdu4fYQpYFw==",
"dependencies": {
"@comunica/core": "^2.5.1",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-2.5.1.tgz",
"integrity": "sha512-cgScbMCc+iWaJ1+9zb6jHC5/JOt8eSKar+TE37UMfK9+wkrI/4WoZOKI0fAD58lSs5D6n9rZLIBUpTQSGmOV9Q==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"@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.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-2.5.1.tgz",
"integrity": "sha512-GmNUsCAFBBjrvYLQmSJyC6pGqggtXW+7WpqzGxoqIKleDCnhJe6RaOztD1LfOyQFt84kTq5bmWtF/C4elNCLMg==",
"dependencies": {
"@comunica/bus-context-preprocess": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-2.5.1.tgz",
"integrity": "sha512-Yn3NFS73LV62QLYYzdGxTAROHr319D2RmNwXxkkz98oVFVkoWsWU+ojIA4n8yjceuHu0jXP5C0NNJIou+dR2lw==",
"dependencies": {
"@comunica/bus-dereference": "^2.5.1",
"@comunica/core": "^2.5.1"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-2.5.1.tgz",
"integrity": "sha512-Vy9IyaNgygp5qFB14/FV6bt77JQJgOfEfMopyC2f8KcMWmFHdbuRPVCv83kme4wouB6d6L0mCvQ2yT6uWQf8qQ==",
"dependencies": {
"@comunica/bus-dereference": "^2.5.1",
"@comunica/bus-http": "^2.5.1",
"@comunica/core": "^2.5.1",
"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.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-2.5.1.tgz",
"integrity": "sha512-24u/lt1yJcwAijwJSfOI19L6ZAMmctgyJFrZRjvwPG+g3kl9Eyqw0WdWhKijOj+/bS3nSaQGKL7MlUkYM6VZfQ==",
"dependencies": {
"@comunica/bus-dereference": "^2.5.1",
"@comunica/bus-dereference-rdf": "^2.5.1",
"@comunica/bus-rdf-parse": "^2.5.1"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-bindings-sha1/-/actor-hash-bindings-sha1-2.5.1.tgz",
"integrity": "sha512-S0RYCZu2bKsZx4ktRZlSy3es2hJ5QtDRLec4RTZEjKlitCyanJ+Y2glK+up8Y1PfonjrWWbmNEQkMa5zC6W8aA==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.5.1",
"@comunica/core": "^2.5.1",
"canonicalize": "^1.0.8",
"hash.js": "^1.1.7",
"rdf-string": "^1.6.1"
}
},
"node_modules/@comunica/actor-http-fetch": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-fetch/-/actor-http-fetch-2.5.1.tgz",
"integrity": "sha512-2E25qKw2+16iWOHfaaGkbzv14owMwN3UGWURPaLyFIOa8S6xkjU/8CMWRjaGibee2KOC8TKUioeQ+YJCweIC/w==",
"dependencies": {
"@comunica/bus-http": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/mediatortype-time": "^2.5.1",
"abort-controller": "^3.0.0",
"cross-fetch": "^3.1.5"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-2.5.1.tgz",
"integrity": "sha512-VlBxLWgg0wC+xl3Ut8ZNSADHJZR472+VB8YI+MkQhU2uUvvt5eHUzaEu0QDY7K9sjEfbw+qh6plXCum1REOYhg==",
"dependencies": {
"@comunica/bus-http": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/mediatortype-time": "^2.5.1",
"@comunica/types": "^2.5.1"
}
},
"node_modules/@comunica/actor-http-wayback": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-wayback/-/actor-http-wayback-2.5.1.tgz",
"integrity": "sha512-HOLBhbYAugoIL9QUAPyvPSQJp3OeGPg5ZEZ+WC1lhMqd7Qsj6zlEr+cV+gs/Dwlpo11OxLxseyqVM9BNmbkQgg==",
"dependencies": {
"@comunica/bus-http": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/core": "^2.5.1",
"cross-fetch": "^3.1.5",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-init-query": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-query/-/actor-init-query-2.5.1.tgz",
"integrity": "sha512-tsa0S9Qf62mZQ7Yn3ZIfxd8ckTUT3BHiWC8stmG2aEnSfQEABiEkCezu+1EEO/T08ETYOK1ohRyA6yySsB58Wg==",
"dependencies": {
"@comunica/actor-http-proxy": "^2.5.1",
"@comunica/bus-context-preprocess": "^2.5.1",
"@comunica/bus-http-invalidate": "^2.5.1",
"@comunica/bus-init": "^2.5.1",
"@comunica/bus-optimize-query-operation": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/bus-query-parse": "^2.5.1",
"@comunica/bus-query-result-serialize": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/logger-pretty": "^2.5.1",
"@comunica/runner": "^2.5.1",
"@comunica/types": "^2.5.1",
"@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.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-bgp-to-join/-/actor-optimize-query-operation-bgp-to-join-2.5.1.tgz",
"integrity": "sha512-PEt32DHRzxHKJk+h/RF35t8/Jat0FlxwLOQMAjuyJPeg9IcFTovIEbYySTGZ7J7QIt5kJD2xWovE11nWfUg+EQ==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-2.5.1.tgz",
"integrity": "sha512-Ao1c+deBJs3bF3sPV8gt95sLeHFJ8zD+UgOB7E1Q/coWPePmPHXgtjVGblfBtK7+zuuEk/bf9sgoEJ8iu6HPlQ==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-connected": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-connected/-/actor-optimize-query-operation-join-connected-2.5.1.tgz",
"integrity": "sha512-6CEFcf1+L1t+w28TuyO5dgxlU07j53f3h235as5BqIbUzK16yjfERrqqvKSjdaHlj3XqWM8T+znmidsmnzf+pg==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-2.5.1.tgz",
"integrity": "sha512-2Xsvt6p9YfqTQIY4LJ7mdrqRPf7ocb6N/g/S+Lj9w4mje8d4Yd+Hft5HgPQUsMk70SHUb8tTlvSsraPzXERphw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-bgp-join": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-join/-/actor-query-operation-bgp-join-2.5.1.tgz",
"integrity": "sha512-DNWM6ZB1I+0EwagGuM0LsQj2rV+g7/UPGk/UGPeJKtEZARr7Tn0rsmWZxZsYL9LvQl2bM9zs166DrlLyIL54Xg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-2.5.1.tgz",
"integrity": "sha512-470PGbDK/8iqPR+R6cmzBRD1zaCfSoKcp1fnVEItJI2Y4uElT2ckjR57M4rXcFxArHtKcBohkQ2dGf3VRZfpWQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"@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.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-2.5.1.tgz",
"integrity": "sha512-SPUKYJqhltUYWXf7FrbOJQV7nBOETDrGHc7kE12deD3jxOch+btbfjOKD9Wl9/zyU29/t7QF7n+5BHESvpC/kw==",
"dependencies": {
"@comunica/actor-query-operation-union": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-distinct-hash": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-2.5.1.tgz",
"integrity": "sha512-hi3Wq8GF3NT7F5fojqhJn+EfnZ7aJ6TTc11ZdQVcLY2fXNPAR4O/jkusIpXk8IoH/6UJEW9ZqM7ZnhHd5LzN/Q==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-extend": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-2.5.1.tgz",
"integrity": "sha512-3ahNJuYS03STeqzmRVCb4UXOvI62KJdCBjrYpvMgvyan+8qOgVsr7IJz9OY4dHAS+8xEcoxr2SubibsR4TeMVQ==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-filter-sparqlee": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-2.5.1.tgz",
"integrity": "sha512-JIiavjAQBGjVBn60b6DRQceZoxIP7BrAP0Fh2I9Ngzl0uydtUNC3gMHcwwR1CwV6G+y50KP0/OSx9SRNSDWkjQ==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-from-quad": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-2.5.1.tgz",
"integrity": "sha512-i5NpTFaaRbjmU3+IToPY29ROB5B+0aPJpn2xIdenEbWZFt2QvKhydqR6HK1I4VHsG8N2k8z+j0EB5QC8KffmJQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-group": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-2.5.1.tgz",
"integrity": "sha512-hMQQhIbW9ME/H1t9GiZv+2GTHMH6syFFRFCAu6U4KpzPTE9zTLiMo3WLo9M7oJ8zUkbciB5OCP1VKztO/BzupA==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-hash-bindings": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-join": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-2.5.1.tgz",
"integrity": "sha512-an4INEGYjYDaTz+QhN747GFWthi5Vl0uGhuAGxOCWX8tkmXItAWnxnIxqbE6lrywrMAsSKTefdEZTAuBGEbi7g==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/bus-rdf-join": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin/-/actor-query-operation-leftjoin-2.5.1.tgz",
"integrity": "sha512-Zj34DosMbWJw/I0hlRI3MMuy6FCXf98jW2RMA3ExiAGw9ZBhc6bA1BZ828Oz30/8PDduhaR4aAJA9R4gXJc4sw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/bus-rdf-join": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-minus": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-2.5.1.tgz",
"integrity": "sha512-KENZnMG8QmQf2zQfb5c6BfX/jvkNf6WkmADoq3UU8kcBfGAWTl/2xBEfkvQQOapzrX14GOsMWSD2jfC1YCI4oQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/bus-rdf-join": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-nop": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-nop/-/actor-query-operation-nop-2.5.1.tgz",
"integrity": "sha512-KzbTicBlrwJcLByO2lZ7dSMU52QUNqv2kZLE1V959znGJvyMXfN+tpJnz72U/LOrZ12H/YyU2uAPw3fvNy8skQ==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-orderby-sparqlee": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-2.5.1.tgz",
"integrity": "sha512-8ZDBSKL4Lcvxjl4RPCpX2yfZLTXMgF+wac9pERBeVeV9SsUm3gk1qx9rLV4nMSFEAgqXmf0bAbyfPqjgD2hTfA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-path-alt": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-2.5.1.tgz",
"integrity": "sha512-QtLgfsE3kewExaWGP8tRgLE4+UP+ht5BIRpS0hmOeZv7zWHJVIbAyIIDhxx60T300sybbXI6vDx/lsVvsXlZtw==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.5.1",
"@comunica/actor-query-operation-union": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/types": "^2.5.1",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-inv": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-2.5.1.tgz",
"integrity": "sha512-03+2bSaXPN6Fvf/f72JnizhmeC1W1adMcqbH1I8odAvmmxbE4uoTmw/NbEEpNoj903aSL1e2oPxpwCEjcjd4Ag==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-link": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-2.5.1.tgz",
"integrity": "sha512-/B/n8/IUHlBhuN1dPwnaOEW/fsnKTwy0lfitNvsqbvByfazJADM1GmBl9U4joIrgG2xfAnHwddypQjrl/x32vw==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-nps": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-2.5.1.tgz",
"integrity": "sha512-dU4Le9uxWcYd5O1j3pOmiWmDb/t8zqvPWZoL1CiGTo+c0jhMcMWCGQO5wp1K2q8LktVWRSPCJVZljqkZ0bafZQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-one-or-more": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-2.5.1.tgz",
"integrity": "sha512-mLxTZ9QomiGTK7OONXU5ebY2nzuJBJyJDeDmnv2NdqIlc8lRir3JE0QutpbPoGOI8YgkMfd0loAzQQ78M+EeAg==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.5.1",
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/types": "^2.5.1",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-seq": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-2.5.1.tgz",
"integrity": "sha512-lF9dZ1I9SAnCnEAxDsSKJ3Q0eUMcUvOTjItzx7DrwvbrZUR0dOTeT16TUdZgY1F4iwNnYG0yNg9fSn4hZiEvfg==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/bus-rdf-join": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-more": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-2.5.1.tgz",
"integrity": "sha512-usDvnCtApINUx5MM5Md42TzlVs/OlXhAEKlbobVTSNbMBcGh0NteFU39QoU7UUhTDx4qXCeR2APTebeWt9PTEA==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.5.1",
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/types": "^2.5.1",
"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.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-2.5.1.tgz",
"integrity": "sha512-k7OxUR5rTu5IrUwO/jQoCO95V7Ri8oHij5O7r5E1bjcsz2QghIA9nNRz6BtvfsEFj8pDMruMV8JXgg6h8WJmHw==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.5.1",
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/types": "^2.5.1",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-project": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-2.5.1.tgz",
"integrity": "sha512-CxjVhg/IFttxnCESbesuRKVw3MSUsYbOGOj+pZ5XXFxSnR9538Mi+Gq34RZeCIxcsOJUNs/okGvATzAB9cDQbw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/data-factory": "^2.5.1",
"@comunica/types": "^2.5.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-quadpattern": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-2.5.1.tgz",
"integrity": "sha512-eYz54Uwcgn5w/GG2YbaWrmj9novauZ9hv0gjjl+fcrJSiUAUM457RM9DaMDnG7co3Vlonlp2UlTosNrorT1oyQ==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"@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.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-2.5.1.tgz",
"integrity": "sha512-U8Zw6Vpzc+cirMGOKEIY3LTHcUzaUlzQ09V6g3ZLhHaz6iC+UYoDLllf0YwuqnrL4VTxcm9iFAoMVMFqCYAwhw==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"@types/lru-cache": "^5.1.1",
"lru-cache": "^6.0.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-service": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-2.5.1.tgz",
"integrity": "sha512-47KYiAfdlNErUQQDXlIpXeSwBgRxhJ2f97KDlKRQFdd29tbQ0tsqqspW2Vu9JBbHHCggHKfiYbYE0T/hkpgyQA==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-slice": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-2.5.1.tgz",
"integrity": "sha512-1u3+C4e7DltX8OYAcqv9qzeZXA3KvtIWhLh0/5/Mj2mgd/E0RGWcvssanLl+sQX5L6qH9GGTGprvYSgP9XJnlw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-sparql-endpoint": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-2.5.1.tgz",
"integrity": "sha512-p98KR3FnggouZTFbUpE5Ll/Hgxghf3Z4B+TurdrxlJ3kWM9lXA9JXUjWwaElBzxMfoQ9pfdnX00g2cYANzSMEg==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-http": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.5.1",
"@comunica/bus-rdf-update-quads": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/mediatortype-httprequests": "^2.5.1",
"@comunica/types": "^2.5.1",
"@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.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-2.5.1.tgz",
"integrity": "sha512-n0YamV+Iuo26P18nFnaG6HSbVFMhOyLJmY13mlRxnKGKK/TS90MGc14NR+GSbnfJYPiKa1v0WvGkubf4ngoFZw==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"@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.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-add-rewrite/-/actor-query-operation-update-add-rewrite-2.5.1.tgz",
"integrity": "sha512-tXpU3AvN7k7Q5I+b+nLjSieIV7QY27CX+4R78u3+Qte4p0CoYD6YMsBPPJJSrtVaLt9SIJYJUi9B/6MMJcPuZg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-clear": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-clear/-/actor-query-operation-update-clear-2.5.1.tgz",
"integrity": "sha512-XAam1a5h7nCsLCvH1gSIWxp6pvo8PJ5t1Lik6H36m9UhDaATaf9noiSUY2pXBfTavpnqHtH7XDnT7kvU6RlqeA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/bus-rdf-update-quads": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-compositeupdate": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-compositeupdate/-/actor-query-operation-update-compositeupdate-2.5.1.tgz",
"integrity": "sha512-AyafeIH2Mdnrag1grp2WYzzkaFneCcn5uFJ0gSreWvKDoRRrjEyqhpiBC6pifAqFSHwmbzSQ1qegUtMZuhc1MQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-copy-rewrite": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-copy-rewrite/-/actor-query-operation-update-copy-rewrite-2.5.1.tgz",
"integrity": "sha512-gI6pLo1lYqt+dQ36AFSqSHq5lEXq1AQ7TveskLuiibHiSmNHIVh3LBVgtKqy+z8WBJ1t4rdVspNtWE5ywqrXog==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-create": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-create/-/actor-query-operation-update-create-2.5.1.tgz",
"integrity": "sha512-AtJZk8H/4f71+YgzEPqFq+VeIk/sEVNXARuGEarN/qnpUCizkzojzczMs4XzCZTC6w8BRj9q1miJwKjDu8nynA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/bus-rdf-update-quads": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-deleteinsert": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-deleteinsert/-/actor-query-operation-update-deleteinsert-2.5.1.tgz",
"integrity": "sha512-6hv8iBw8PdT3fvK0A8NmXZlDgjZvk0DPC17suaFcEZfBzHNyO6js2aGsSHCXMugAk4zhINcIXKtOYho7ClDcoA==",
"dependencies": {
"@comunica/actor-query-operation-construct": "^2.5.1",
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/bus-rdf-update-quads": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"@rdfjs/types": "*",
"asynciterator": "^3.8.0",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-drop": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-drop/-/actor-query-operation-update-drop-2.5.1.tgz",
"integrity": "sha512-bpqQhzS/93VOYtDFpSMmb5IUCiBNdAQz1ZLIoKBuWD24NSuRoS12Wd6Okh9pMwSI/kjh1n5pxFax5uXWtiQp0Q==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/bus-rdf-update-quads": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-load": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-load/-/actor-query-operation-update-load-2.5.1.tgz",
"integrity": "sha512-1bQe3i/vTFiQojsKVuNWcUitndJGlNiSAag9BO4U3dsCimvcv2NTrojp6cNbvCNYNFJ/YJUmfaBnoKsxCvvtgQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/bus-rdf-update-quads": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-update-move-rewrite": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-update-move-rewrite/-/actor-query-operation-update-move-rewrite-2.5.1.tgz",
"integrity": "sha512-g6eZzhaMsnGD3Av8QanQWiGe8eV+o/Py/zy8kHqr1a9ynKn6GIidam+RcrOk479hh9HB0zrIfNz6EW1ueXnSow==",
"dependencies": {
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-operation-values": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-2.5.1.tgz",
"integrity": "sha512-5lIJ5rzcLkADdK8DhdEFxcdbZuKqk8jECIyUweDoZdHv/TvwgbmyLyqJICBWl0o7T0jrtTTn/YJWBW1yOP3Qqw==",
"dependencies": {
"@comunica/bindings-factory": "^2.5.1",
"@comunica/bus-query-operation": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"asynciterator": "^3.8.0",
"rdf-data-factory": "^1.1.1",
"sparqlalgebrajs": "^4.0.5"
}
},
"node_modules/@comunica/actor-query-parse-graphql": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-graphql/-/actor-query-parse-graphql-2.5.1.tgz",
"integrity": "sha512-AvgiJMFV9wLKODn0Hm+LSS21K/NI2G7iOmuq3owCcChgGkO8hCsjaZG4BZJ48ABVHLtgbNTDrvdUMjp40kZsDA==",
"dependencies": {
"@comunica/bus-query-parse": "^2.5.1",
"@comunica/context-entries": "^2.5.1",
"@comunica/core": "^2.5.1",
"graphql-to-sparql": "^3.0.1"
}
},
"node_modules/@comunica/actor-query-parse-sparql": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-parse-sparql/-/actor-query-parse-sparql-2.5.1.tgz",
"integrity": "sha512-OG8VCR7tVHxaVFZOW+lqih9RtpSnn6tXlkEZIIJyPkTYEjLcCzFcE0+S4O7HuKfDvr6mj41lIUwRxjVnCPf/1w==",
"dependencies": {
"@comunica/bus-query-parse": "^2.5.1",
"@comunica/core": "^2.5.1",
"@types/sparqljs": "^3.1.3",
"sparqlalgebrajs": "^4.0.5",
"sparqljs": "^3.6.1"
}
},
"node_modules/@comunica/actor-query-result-serialize-json": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-json/-/actor-query-result-serialize-json-2.5.1.tgz",
"integrity": "sha512-MFBfQlBSEAW51LN4jZN9XRyGLtn4QFlI8w+juh5RrH9/iyKmITv7GsKseUYRjFsIIcLI15G92ttugbZD89e53g==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.5.1",
"@comunica/types": "^2.5.1",
"rdf-string": "^1.6.1",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-rdf": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-rdf/-/actor-query-result-serialize-rdf-2.5.1.tgz",
"integrity": "sha512-pI499HkLrkn59QzVOEIz5JYZ0rkIy5aqJ/tFrNXeb8ip/ntOXZbUAQjiREZ+wpgP8vVHIjX5eBCKN1LQrPhM+Q==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.5.1",
"@comunica/bus-rdf-serialize": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1"
}
},
"node_modules/@comunica/actor-query-result-serialize-simple": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-simple/-/actor-query-result-serialize-simple-2.5.1.tgz",
"integrity": "sha512-lt+NECnauuUsvy21/6YkL6+00NztYPjZBUz8OtMjtPlkbJjU8gZ8SD7hRTbRc+ApVUKn118z02/Zh3h9AEB3rw==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.5.1",
"@comunica/types": "^2.5.1",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-csv": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-csv/-/actor-query-result-serialize-sparql-csv-2.5.1.tgz",
"integrity": "sha512-16Op+6bk8aZNRLkM1cni+91PWAdTV0gbJOpjiBaWOlMFUzCaoBus2OGoQYwP398yBWmBm2ui1UkFhFqNq6Pd+g==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.5.1",
"@comunica/types": "^2.5.1",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-json": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-json/-/actor-query-result-serialize-sparql-json-2.5.1.tgz",
"integrity": "sha512-DGt6SInzYofftWhONKBcIFPOAm/3vIvePZ/jkiG1ncKimyvAClMJ7nQbXsFLfxhYdCKP7tALNZnOyKOYv4U2rQ==",
"dependencies": {
"@comunica/bus-http": "^2.5.1",
"@comunica/bus-http-invalidate": "^2.5.1",
"@comunica/bus-query-result-serialize": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-tsv": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-tsv/-/actor-query-result-serialize-sparql-tsv-2.5.1.tgz",
"integrity": "sha512-BNEfHE/JCTZ6NIns6I1MEPRDVPKE8WH0sCnMrAuzhLr4zNpKNg2GE/teCPYTyc4zEYHYpxmaftRJQDohLMRYaA==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.5.1",
"@comunica/types": "^2.5.1",
"@rdfjs/types": "*",
"rdf-string-ttl": "^1.3.2",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-sparql-xml": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-sparql-xml/-/actor-query-result-serialize-sparql-xml-2.5.1.tgz",
"integrity": "sha512-o/kznhd9WoDtQ7D/Hz1doS7NMUpYeM88jMJFbtiePHVIUI2GVUFu32GZ1GXLw0KREeYZDAHpxTVX663AiWS0cw==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.5.1",
"@comunica/types": "^2.5.1",
"@rdfjs/types": "*",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-stats": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-stats/-/actor-query-result-serialize-stats-2.5.1.tgz",
"integrity": "sha512-/82UAxeWuKsLiT3OBLN589U3nERKKBbA4ho6LlYSakTFUbtEVuJfsBHKlr4/NL/WsJgypYa1DBUdf0oBUt0Dkg==",
"dependencies": {
"@comunica/bus-http": "^2.5.1",
"@comunica/bus-http-invalidate": "^2.5.1",
"@comunica/bus-query-result-serialize": "^2.5.1",
"@comunica/core": "^2.5.1",
"@comunica/types": "^2.5.1",
"readable-stream": "^4.2.0"
}
},
"node_modules/@comunica/actor-query-result-serialize-table": {
"version": "2.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-result-serialize-table/-/actor-query-result-serialize-table-2.5.1.tgz",
"integrity": "sha512-SrtjB2ThIoGz/fdqim5swfdfFmS3RZiQNBE939idK19vo0bJFvxqZItwH8TALvamvj9xW/VL72t7FwwjChXyhA==",
"dependencies": {
"@comunica/bus-query-result-serialize": "^2.5.1",
"@comunica/types": "^2.5.1",
"@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": {