-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
12996 lines (12996 loc) · 551 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": "myapp",
"version": "0.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "myapp",
"version": "0.0.0",
"dependencies": {
"@comunica/actor-init-sparql": "^1.12.0",
"@comunica/actor-init-sparql-file": "^1.13.1",
"@comunica/actor-init-sparql-hdt": "^1.5.4",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"request": "^2.88.0",
"sparqljs": "^3.0.1",
"url": "^0.11.0",
"yasgui-yasqe": "^2.11.22"
}
},
"node_modules/@comunica/actor-abstract-bindings-hash": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.19.2.tgz",
"integrity": "sha512-Rf5DH43+inBhI/IlmKILQGTYWCWWmK/s3YM+O/wmxO3M38OXFspv4fyIfUYrfBHeYKaq78w64vPH43umw+DOAQ==",
"dependencies": {
"canonicalize": "^1.0.1",
"hash.js": "^1.1.7",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-abstract-bindings-hash/node_modules/rdf-string": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/rdf-string/-/rdf-string-1.5.0.tgz",
"integrity": "sha512-3TEJuDIKUADgZrfcZG+zAN4GfVA1Ei2sKA7Z7QVHkAE36wWoRGPJbGihPQMldgzvy9lG2nzZU+CXz+6oGSQNsQ==",
"dependencies": {
"rdf-data-factory": "^1.0.0"
}
},
"node_modules/@comunica/actor-abstract-bindings-hash/node_modules/sparqlalgebrajs": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/sparqlalgebrajs/-/sparqlalgebrajs-2.5.0.tgz",
"integrity": "sha512-dNJf4xUj5DFZc/9vQnDU5y9u8l4MfvOkMgx6PAefhTjAK0HHChxLZFF4n6GngWfvEZQ3/HcfmQk3cQo6sT/6bQ==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"minimist": "^1.2.5",
"rdf-data-factory": "^1.0.0",
"rdf-isomorphic": "^1.2.0",
"rdf-string": "^1.5.0",
"sparqljs": "^3.1.1"
},
"bin": {
"sparqlalgebrajs": "bin/sparqlalgebrajs.js"
}
},
"node_modules/@comunica/actor-abstract-bindings-hash/node_modules/sparqljs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/sparqljs/-/sparqljs-3.2.0.tgz",
"integrity": "sha512-Sc0oVe0yexum9i2y+KYuD96s3j8iewgYok5ooLstXP9KiShKgeDAhcWupMmnGr+YLpDpCrEqRhkiQ2LxQOfX4w==",
"dependencies": {
"rdf-data-factory": "^1.0.4"
},
"bin": {
"sparqljs": "bin/sparql-to-json"
},
"engines": {
"node": ">=8.0"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.19.2.tgz",
"integrity": "sha512-BER87Niq4dqLxfF3JtYCZ1lCHB+MB/N3yNUq5GnInzdisAQBT/T7dwmps1eqF435DyiDS/j0VOJpnPmWV8bRlA=="
},
"node_modules/@comunica/actor-abstract-path": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.19.2.tgz",
"integrity": "sha512-0pqfYotFtXIDyNjmqqGyxrVwrS7pNY9R5he3PugilzZCOrHy19Zr8bofr24xTXgEP8VdQR1uD2vE1H43JE/6HA==",
"dependencies": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-abstract-path/node_modules/asynciterator": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/asynciterator/-/asynciterator-3.0.3.tgz",
"integrity": "sha512-mNvEwsk6DN7+co9T2be/Eor0kKQGIXCoGg27v7vsCLlFdSXlboH06UGCy9cfEh2qAfDdgsEpmDn6y59f3+ZvgA=="
},
"node_modules/@comunica/actor-abstract-path/node_modules/rdf-string": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/rdf-string/-/rdf-string-1.5.0.tgz",
"integrity": "sha512-3TEJuDIKUADgZrfcZG+zAN4GfVA1Ei2sKA7Z7QVHkAE36wWoRGPJbGihPQMldgzvy9lG2nzZU+CXz+6oGSQNsQ==",
"dependencies": {
"rdf-data-factory": "^1.0.0"
}
},
"node_modules/@comunica/actor-abstract-path/node_modules/sparqlalgebrajs": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/sparqlalgebrajs/-/sparqlalgebrajs-2.5.0.tgz",
"integrity": "sha512-dNJf4xUj5DFZc/9vQnDU5y9u8l4MfvOkMgx6PAefhTjAK0HHChxLZFF4n6GngWfvEZQ3/HcfmQk3cQo6sT/6bQ==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"minimist": "^1.2.5",
"rdf-data-factory": "^1.0.0",
"rdf-isomorphic": "^1.2.0",
"rdf-string": "^1.5.0",
"sparqljs": "^3.1.1"
},
"bin": {
"sparqlalgebrajs": "bin/sparqlalgebrajs.js"
}
},
"node_modules/@comunica/actor-abstract-path/node_modules/sparqljs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/sparqljs/-/sparqljs-3.2.0.tgz",
"integrity": "sha512-Sc0oVe0yexum9i2y+KYuD96s3j8iewgYok5ooLstXP9KiShKgeDAhcWupMmnGr+YLpDpCrEqRhkiQ2LxQOfX4w==",
"dependencies": {
"rdf-data-factory": "^1.0.4"
},
"bin": {
"sparqljs": "bin/sparql-to-json"
},
"engines": {
"node": ">=8.0"
}
},
"node_modules/@comunica/actor-http-memento": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.19.2.tgz",
"integrity": "sha512-3d8cviX1i1CKXkaV0u0C9S/jzmViZTMd3kwVUOwaqJW8EH4dpJkADtxaly32qtRfUp2suNQ/dcG8DlAcHUPNNg==",
"dependencies": {
"@types/parse-link-header": "^1.0.0",
"cross-fetch": "^3.0.5",
"parse-link-header": "^1.0.1"
}
},
"node_modules/@comunica/actor-http-native": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.19.2.tgz",
"integrity": "sha512-/eLeL3/MCuoTpYqMKM4f6VNIgBMtduOHc7DHxw/p6I/mL9mRZp848+MyhKFEN4W4gVk8aKVlMCI4MI52bKXWLw==",
"dependencies": {
"@types/parse-link-header": "^1.0.0",
"cross-fetch": "^3.0.5",
"follow-redirects": "^1.5.1",
"parse-link-header": "^1.0.1"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-1.19.2.tgz",
"integrity": "sha512-b/yP6TbpEBOac5gtX+4lxF6cd+/mI0WQiYUZGhRQZ2gUEcU0js0Gte9uqz1wCVxIQJnMbOryso3tCVFw/CZNJg=="
},
"node_modules/@comunica/actor-init-sparql": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.19.2.tgz",
"integrity": "sha512-TUYde50lcJOVbIkY+sJb9B1OuaKB8yvy8oyeNXF8nF3rOdFT0hnjmPcyT9KRKKJXmG7t4ywygDSbyaGqPnlyUA==",
"dependencies": {
"@comunica/actor-abstract-bindings-hash": "^1.19.2",
"@comunica/actor-abstract-mediatyped": "^1.19.2",
"@comunica/actor-http-memento": "^1.19.2",
"@comunica/actor-http-native": "^1.19.2",
"@comunica/actor-http-proxy": "^1.19.2",
"@comunica/actor-optimize-query-operation-join-bgp": "^1.19.2",
"@comunica/actor-query-operation-ask": "^1.19.2",
"@comunica/actor-query-operation-bgp-empty": "^1.19.2",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.19.2",
"@comunica/actor-query-operation-bgp-single": "^1.19.2",
"@comunica/actor-query-operation-construct": "^1.19.2",
"@comunica/actor-query-operation-describe-subject": "^1.19.2",
"@comunica/actor-query-operation-distinct-hash": "^1.19.2",
"@comunica/actor-query-operation-extend": "^1.19.2",
"@comunica/actor-query-operation-filter-sparqlee": "^1.19.2",
"@comunica/actor-query-operation-from-quad": "^1.19.2",
"@comunica/actor-query-operation-group": "^1.19.2",
"@comunica/actor-query-operation-join": "^1.19.2",
"@comunica/actor-query-operation-leftjoin-left-deep": "^1.19.2",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.19.2",
"@comunica/actor-query-operation-minus": "^1.19.2",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.19.2",
"@comunica/actor-query-operation-path-alt": "^1.19.2",
"@comunica/actor-query-operation-path-inv": "^1.19.2",
"@comunica/actor-query-operation-path-link": "^1.19.2",
"@comunica/actor-query-operation-path-nps": "^1.19.2",
"@comunica/actor-query-operation-path-one-or-more": "^1.19.2",
"@comunica/actor-query-operation-path-seq": "^1.19.2",
"@comunica/actor-query-operation-path-zero-or-more": "^1.19.2",
"@comunica/actor-query-operation-path-zero-or-one": "^1.19.2",
"@comunica/actor-query-operation-project": "^1.19.2",
"@comunica/actor-query-operation-quadpattern": "^1.19.2",
"@comunica/actor-query-operation-reduced-hash": "^1.19.2",
"@comunica/actor-query-operation-service": "^1.19.2",
"@comunica/actor-query-operation-slice": "^1.19.2",
"@comunica/actor-query-operation-sparql-endpoint": "^1.19.2",
"@comunica/actor-query-operation-union": "^1.19.2",
"@comunica/actor-query-operation-values": "^1.19.2",
"@comunica/actor-rdf-dereference-http-parse": "^1.19.2",
"@comunica/actor-rdf-join-multi-smallest": "^1.19.2",
"@comunica/actor-rdf-join-nestedloop": "^1.19.2",
"@comunica/actor-rdf-join-symmetrichash": "^1.19.2",
"@comunica/actor-rdf-metadata-all": "^1.19.2",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.19.2",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.19.2",
"@comunica/actor-rdf-metadata-extract-sparql-service": "^1.19.2",
"@comunica/actor-rdf-metadata-primary-topic": "^1.19.2",
"@comunica/actor-rdf-parse-html": "^1.19.2",
"@comunica/actor-rdf-parse-html-microdata": "^1.19.2",
"@comunica/actor-rdf-parse-html-rdfa": "^1.19.2",
"@comunica/actor-rdf-parse-html-script": "^1.19.2",
"@comunica/actor-rdf-parse-jsonld": "^1.19.2",
"@comunica/actor-rdf-parse-n3": "^1.19.2",
"@comunica/actor-rdf-parse-rdfxml": "^1.19.2",
"@comunica/actor-rdf-parse-xml-rdfa": "^1.19.2",
"@comunica/actor-rdf-resolve-hypermedia-links-next": "^1.19.2",
"@comunica/actor-rdf-resolve-hypermedia-none": "^1.19.2",
"@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.19.2",
"@comunica/actor-rdf-resolve-hypermedia-sparql": "^1.19.2",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.19.2",
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.19.2",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.19.2",
"@comunica/actor-rdf-serialize-jsonld": "^1.19.2",
"@comunica/actor-rdf-serialize-n3": "^1.19.2",
"@comunica/actor-sparql-parse-algebra": "^1.19.2",
"@comunica/actor-sparql-parse-graphql": "^1.19.2",
"@comunica/actor-sparql-serialize-json": "^1.19.2",
"@comunica/actor-sparql-serialize-rdf": "^1.19.2",
"@comunica/actor-sparql-serialize-simple": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-csv": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-json": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-tsv": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.19.2",
"@comunica/actor-sparql-serialize-stats": "^1.19.2",
"@comunica/actor-sparql-serialize-table": "^1.19.2",
"@comunica/actor-sparql-serialize-tree": "^1.19.2",
"@comunica/bus-context-preprocess": "^1.19.2",
"@comunica/bus-http": "^1.19.2",
"@comunica/bus-http-invalidate": "^1.19.2",
"@comunica/bus-init": "^1.19.2",
"@comunica/bus-optimize-query-operation": "^1.19.2",
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/bus-rdf-dereference": "^1.19.2",
"@comunica/bus-rdf-dereference-paged": "^1.19.2",
"@comunica/bus-rdf-join": "^1.19.2",
"@comunica/bus-rdf-metadata": "^1.19.2",
"@comunica/bus-rdf-metadata-extract": "^1.19.2",
"@comunica/bus-rdf-parse": "^1.19.2",
"@comunica/bus-rdf-parse-html": "^1.19.2",
"@comunica/bus-rdf-resolve-hypermedia": "^1.19.2",
"@comunica/bus-rdf-resolve-hypermedia-links": "^1.19.2",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.19.2",
"@comunica/bus-rdf-serialize": "^1.19.2",
"@comunica/bus-sparql-parse": "^1.19.2",
"@comunica/bus-sparql-serialize": "^1.19.2",
"@comunica/core": "^1.19.2",
"@comunica/logger-pretty": "^1.19.2",
"@comunica/logger-void": "^1.19.2",
"@comunica/mediator-all": "^1.19.2",
"@comunica/mediator-combine-pipeline": "^1.19.2",
"@comunica/mediator-combine-union": "^1.19.2",
"@comunica/mediator-number": "^1.19.2",
"@comunica/mediator-race": "^1.19.2",
"@comunica/runner": "^1.19.2",
"@comunica/runner-cli": "^1.19.2",
"@types/minimist": "^1.2.0",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"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.4.0",
"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-init-sparql-file": {
"version": "1.13.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql-file/-/actor-init-sparql-file-1.13.1.tgz",
"integrity": "sha512-THKzOXB16iMk5PJd6/GVlN4f0RoUoPVLOaT8cZq2GYV6kJHaDaGlUlbQAhbOrXD1opDSOUDgFxuhqbl/yFdDIA==",
"dependencies": {
"@comunica/actor-init-sparql": "^1.13.1",
"@comunica/actor-rdf-dereference-file": "^1.13.0"
},
"bin": {
"comunica-dynamic-sparql-file": "bin/query-dynamic.js",
"comunica-sparql-file": "bin/query.js",
"comunica-sparql-file-http": "bin/http.js"
}
},
"node_modules/@comunica/actor-init-sparql-file/node_modules/@comunica/actor-init-sparql": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.19.2.tgz",
"integrity": "sha512-TUYde50lcJOVbIkY+sJb9B1OuaKB8yvy8oyeNXF8nF3rOdFT0hnjmPcyT9KRKKJXmG7t4ywygDSbyaGqPnlyUA==",
"dependencies": {
"@comunica/actor-abstract-bindings-hash": "^1.19.2",
"@comunica/actor-abstract-mediatyped": "^1.19.2",
"@comunica/actor-http-memento": "^1.19.2",
"@comunica/actor-http-native": "^1.19.2",
"@comunica/actor-http-proxy": "^1.19.2",
"@comunica/actor-optimize-query-operation-join-bgp": "^1.19.2",
"@comunica/actor-query-operation-ask": "^1.19.2",
"@comunica/actor-query-operation-bgp-empty": "^1.19.2",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.19.2",
"@comunica/actor-query-operation-bgp-single": "^1.19.2",
"@comunica/actor-query-operation-construct": "^1.19.2",
"@comunica/actor-query-operation-describe-subject": "^1.19.2",
"@comunica/actor-query-operation-distinct-hash": "^1.19.2",
"@comunica/actor-query-operation-extend": "^1.19.2",
"@comunica/actor-query-operation-filter-sparqlee": "^1.19.2",
"@comunica/actor-query-operation-from-quad": "^1.19.2",
"@comunica/actor-query-operation-group": "^1.19.2",
"@comunica/actor-query-operation-join": "^1.19.2",
"@comunica/actor-query-operation-leftjoin-left-deep": "^1.19.2",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.19.2",
"@comunica/actor-query-operation-minus": "^1.19.2",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.19.2",
"@comunica/actor-query-operation-path-alt": "^1.19.2",
"@comunica/actor-query-operation-path-inv": "^1.19.2",
"@comunica/actor-query-operation-path-link": "^1.19.2",
"@comunica/actor-query-operation-path-nps": "^1.19.2",
"@comunica/actor-query-operation-path-one-or-more": "^1.19.2",
"@comunica/actor-query-operation-path-seq": "^1.19.2",
"@comunica/actor-query-operation-path-zero-or-more": "^1.19.2",
"@comunica/actor-query-operation-path-zero-or-one": "^1.19.2",
"@comunica/actor-query-operation-project": "^1.19.2",
"@comunica/actor-query-operation-quadpattern": "^1.19.2",
"@comunica/actor-query-operation-reduced-hash": "^1.19.2",
"@comunica/actor-query-operation-service": "^1.19.2",
"@comunica/actor-query-operation-slice": "^1.19.2",
"@comunica/actor-query-operation-sparql-endpoint": "^1.19.2",
"@comunica/actor-query-operation-union": "^1.19.2",
"@comunica/actor-query-operation-values": "^1.19.2",
"@comunica/actor-rdf-dereference-http-parse": "^1.19.2",
"@comunica/actor-rdf-join-multi-smallest": "^1.19.2",
"@comunica/actor-rdf-join-nestedloop": "^1.19.2",
"@comunica/actor-rdf-join-symmetrichash": "^1.19.2",
"@comunica/actor-rdf-metadata-all": "^1.19.2",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.19.2",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.19.2",
"@comunica/actor-rdf-metadata-extract-sparql-service": "^1.19.2",
"@comunica/actor-rdf-metadata-primary-topic": "^1.19.2",
"@comunica/actor-rdf-parse-html": "^1.19.2",
"@comunica/actor-rdf-parse-html-microdata": "^1.19.2",
"@comunica/actor-rdf-parse-html-rdfa": "^1.19.2",
"@comunica/actor-rdf-parse-html-script": "^1.19.2",
"@comunica/actor-rdf-parse-jsonld": "^1.19.2",
"@comunica/actor-rdf-parse-n3": "^1.19.2",
"@comunica/actor-rdf-parse-rdfxml": "^1.19.2",
"@comunica/actor-rdf-parse-xml-rdfa": "^1.19.2",
"@comunica/actor-rdf-resolve-hypermedia-links-next": "^1.19.2",
"@comunica/actor-rdf-resolve-hypermedia-none": "^1.19.2",
"@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.19.2",
"@comunica/actor-rdf-resolve-hypermedia-sparql": "^1.19.2",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.19.2",
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.19.2",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.19.2",
"@comunica/actor-rdf-serialize-jsonld": "^1.19.2",
"@comunica/actor-rdf-serialize-n3": "^1.19.2",
"@comunica/actor-sparql-parse-algebra": "^1.19.2",
"@comunica/actor-sparql-parse-graphql": "^1.19.2",
"@comunica/actor-sparql-serialize-json": "^1.19.2",
"@comunica/actor-sparql-serialize-rdf": "^1.19.2",
"@comunica/actor-sparql-serialize-simple": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-csv": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-json": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-tsv": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.19.2",
"@comunica/actor-sparql-serialize-stats": "^1.19.2",
"@comunica/actor-sparql-serialize-table": "^1.19.2",
"@comunica/actor-sparql-serialize-tree": "^1.19.2",
"@comunica/bus-context-preprocess": "^1.19.2",
"@comunica/bus-http": "^1.19.2",
"@comunica/bus-http-invalidate": "^1.19.2",
"@comunica/bus-init": "^1.19.2",
"@comunica/bus-optimize-query-operation": "^1.19.2",
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/bus-rdf-dereference": "^1.19.2",
"@comunica/bus-rdf-dereference-paged": "^1.19.2",
"@comunica/bus-rdf-join": "^1.19.2",
"@comunica/bus-rdf-metadata": "^1.19.2",
"@comunica/bus-rdf-metadata-extract": "^1.19.2",
"@comunica/bus-rdf-parse": "^1.19.2",
"@comunica/bus-rdf-parse-html": "^1.19.2",
"@comunica/bus-rdf-resolve-hypermedia": "^1.19.2",
"@comunica/bus-rdf-resolve-hypermedia-links": "^1.19.2",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.19.2",
"@comunica/bus-rdf-serialize": "^1.19.2",
"@comunica/bus-sparql-parse": "^1.19.2",
"@comunica/bus-sparql-serialize": "^1.19.2",
"@comunica/core": "^1.19.2",
"@comunica/logger-pretty": "^1.19.2",
"@comunica/logger-void": "^1.19.2",
"@comunica/mediator-all": "^1.19.2",
"@comunica/mediator-combine-pipeline": "^1.19.2",
"@comunica/mediator-combine-union": "^1.19.2",
"@comunica/mediator-number": "^1.19.2",
"@comunica/mediator-race": "^1.19.2",
"@comunica/runner": "^1.19.2",
"@comunica/runner-cli": "^1.19.2",
"@types/minimist": "^1.2.0",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"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.4.0",
"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-init-sparql-file/node_modules/@comunica/actor-init-sparql/node_modules/asynciterator": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/asynciterator/-/asynciterator-3.0.3.tgz",
"integrity": "sha512-mNvEwsk6DN7+co9T2be/Eor0kKQGIXCoGg27v7vsCLlFdSXlboH06UGCy9cfEh2qAfDdgsEpmDn6y59f3+ZvgA=="
},
"node_modules/@comunica/actor-init-sparql-file/node_modules/@comunica/actor-init-sparql/node_modules/rdf-terms": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/rdf-terms/-/rdf-terms-1.6.2.tgz",
"integrity": "sha512-dASpdYHYLEwzN9iSymJie1WUj6VHXy1By8Am4g2rJlhTfVvNitsJpDY+A3X2QehlGhCaWjHMzXS4q/JKNPI80A==",
"dependencies": {
"lodash.uniqwith": "^4.5.0",
"rdf-data-factory": "^1.0.1"
}
},
"node_modules/@comunica/actor-init-sparql-file/node_modules/@comunica/runner": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/runner/-/runner-1.19.2.tgz",
"integrity": "sha512-BfwVSI1M3/cPxC/006KyR1TDnmuxGY+lENZRAs3BWc1RaCmkcU/V9+yrxWmUHYfSZgVZ4sQovkC/BTwLiMUBaw==",
"dependencies": {
"componentsjs": "^4.0.3"
},
"bin": {
"comunica-compile-config": "bin/compile-config.js"
}
},
"node_modules/@comunica/actor-init-sparql-file/node_modules/@comunica/runner-cli": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/runner-cli/-/runner-cli-1.19.2.tgz",
"integrity": "sha512-glBNAUURfwmD1/xTwJNfw3vBoBp9Lzagqe/gcpzGhj+62xZ5KBfoE9fMu9gFfc10uXHHuvoXTfIISfxQbWd0SA==",
"dependencies": {
"@comunica/runner": "^1.19.2"
},
"bin": {
"comunica-run": "bin/run.js"
}
},
"node_modules/@comunica/actor-init-sparql-file/node_modules/@comunica/runner/node_modules/@types/node": {
"version": "14.14.31",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz",
"integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g=="
},
"node_modules/@comunica/actor-init-sparql-file/node_modules/@comunica/runner/node_modules/componentsjs": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/componentsjs/-/componentsjs-4.0.6.tgz",
"integrity": "sha512-MPvKSLVo4SX3PafGMqKPzV+i8JdivYXuaJb2CsEF86TUgniXX3i661D0MDBwMWnd0LXWbI1sNq0kKJBKrL/wBw==",
"dependencies": {
"@types/minimist": "^1.2.0",
"@types/node": "^14.14.7",
"@types/rdf-js": "*",
"@types/semver": "^7.3.4",
"jsonld-context-parser": "^2.1.1",
"minimist": "^1.2.0",
"rdf-data-factory": "^1.0.4",
"rdf-object": "^1.8.0",
"rdf-parse": "^1.7.0",
"rdf-quad": "^1.5.0",
"rdf-terms": "^1.6.2",
"semver": "^7.3.2",
"winston": "^3.3.3"
},
"bin": {
"componentsjs-compile-config": "bin/compile-config.js"
},
"engines": {
"node": ">=8.0"
}
},
"node_modules/@comunica/actor-init-sparql-file/node_modules/@comunica/runner/node_modules/rdf-quad": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/rdf-quad/-/rdf-quad-1.5.0.tgz",
"integrity": "sha512-LnCYx8XbRVW1wr6UiZPSy2Tv7bXAtEwuyck/68dANhFu8VMnGS+QfUNP3b9YI6p4Bfd/fyDx5E3x81IxGV6BzA==",
"dependencies": {
"rdf-data-factory": "^1.0.1",
"rdf-literal": "^1.2.0",
"rdf-string": "^1.5.0"
}
},
"node_modules/@comunica/actor-init-sparql-file/node_modules/@comunica/runner/node_modules/rdf-terms": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/rdf-terms/-/rdf-terms-1.6.2.tgz",
"integrity": "sha512-dASpdYHYLEwzN9iSymJie1WUj6VHXy1By8Am4g2rJlhTfVvNitsJpDY+A3X2QehlGhCaWjHMzXS4q/JKNPI80A==",
"dependencies": {
"lodash.uniqwith": "^4.5.0",
"rdf-data-factory": "^1.0.1"
}
},
"node_modules/@comunica/actor-init-sparql-file/node_modules/jsonld-context-parser": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/jsonld-context-parser/-/jsonld-context-parser-2.1.1.tgz",
"integrity": "sha512-7yKhnwFaiCnDPUZYQuAWyT0zZBfOKZDyjtqFVNbXrYRkboU+m55UsastsfXbo7qNroTGdFiEyxHEHDEfBC0P4Q==",
"dependencies": {
"@types/http-link-header": "^1.0.1",
"@types/node": "^13.1.0",
"canonicalize": "^1.0.1",
"cross-fetch": "^3.0.6",
"http-link-header": "^1.0.2",
"relative-to-absolute-iri": "^1.0.5"
},
"bin": {
"jsonld-context-parse": "bin/jsonld-context-parse.js"
}
},
"node_modules/@comunica/actor-init-sparql-file/node_modules/rdf-literal": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/rdf-literal/-/rdf-literal-1.2.0.tgz",
"integrity": "sha512-N7nyfp/xzoiUuJt0xZ80BvBGkCPwWejgVDkCxWDSuooXKSows4ToW+KouYkMHLcoFzGg1Rlw2lk6btjMJg5aSA==",
"dependencies": {
"@types/rdf-js": "*",
"rdf-data-factory": "^1.0.1"
}
},
"node_modules/@comunica/actor-init-sparql-file/node_modules/rdf-string": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/rdf-string/-/rdf-string-1.5.0.tgz",
"integrity": "sha512-3TEJuDIKUADgZrfcZG+zAN4GfVA1Ei2sKA7Z7QVHkAE36wWoRGPJbGihPQMldgzvy9lG2nzZU+CXz+6oGSQNsQ==",
"dependencies": {
"rdf-data-factory": "^1.0.0"
}
},
"node_modules/@comunica/actor-init-sparql-hdt": {
"version": "1.5.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql-hdt/-/actor-init-sparql-hdt-1.5.4.tgz",
"integrity": "sha512-wiNJIqF9WR7BrmG0YJigeFWBUfXDf29paC4oDjxr14F5M3gw9gmJe2ixLcbzHkJublhQIWRHJm395/43+Q5UIA==",
"dependencies": {
"@comunica/actor-init-sparql": "^1.9.0",
"@comunica/actor-rdf-resolve-quad-pattern-hdt": "^1.5.2",
"@comunica/runner-cli": "^1.9.0",
"@types/minimist": "^1.2.0",
"@types/node": "^13.1.0"
},
"bin": {
"comunica-dynamic-sparql-hdt": "bin/query-dynamic.js",
"comunica-sparql-hdt": "bin/query.js",
"comunica-sparql-hdt-http": "bin/http.js"
}
},
"node_modules/@comunica/actor-init-sparql/node_modules/@comunica/runner": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/runner/-/runner-1.19.2.tgz",
"integrity": "sha512-BfwVSI1M3/cPxC/006KyR1TDnmuxGY+lENZRAs3BWc1RaCmkcU/V9+yrxWmUHYfSZgVZ4sQovkC/BTwLiMUBaw==",
"dependencies": {
"componentsjs": "^4.0.3"
},
"bin": {
"comunica-compile-config": "bin/compile-config.js"
}
},
"node_modules/@comunica/actor-init-sparql/node_modules/@comunica/runner-cli": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/runner-cli/-/runner-cli-1.19.2.tgz",
"integrity": "sha512-glBNAUURfwmD1/xTwJNfw3vBoBp9Lzagqe/gcpzGhj+62xZ5KBfoE9fMu9gFfc10uXHHuvoXTfIISfxQbWd0SA==",
"dependencies": {
"@comunica/runner": "^1.19.2"
},
"bin": {
"comunica-run": "bin/run.js"
}
},
"node_modules/@comunica/actor-init-sparql/node_modules/@types/node": {
"version": "14.14.31",
"resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz",
"integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g=="
},
"node_modules/@comunica/actor-init-sparql/node_modules/asynciterator": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/asynciterator/-/asynciterator-3.0.3.tgz",
"integrity": "sha512-mNvEwsk6DN7+co9T2be/Eor0kKQGIXCoGg27v7vsCLlFdSXlboH06UGCy9cfEh2qAfDdgsEpmDn6y59f3+ZvgA=="
},
"node_modules/@comunica/actor-init-sparql/node_modules/componentsjs": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/componentsjs/-/componentsjs-4.0.6.tgz",
"integrity": "sha512-MPvKSLVo4SX3PafGMqKPzV+i8JdivYXuaJb2CsEF86TUgniXX3i661D0MDBwMWnd0LXWbI1sNq0kKJBKrL/wBw==",
"dependencies": {
"@types/minimist": "^1.2.0",
"@types/node": "^14.14.7",
"@types/rdf-js": "*",
"@types/semver": "^7.3.4",
"jsonld-context-parser": "^2.1.1",
"minimist": "^1.2.0",
"rdf-data-factory": "^1.0.4",
"rdf-object": "^1.8.0",
"rdf-parse": "^1.7.0",
"rdf-quad": "^1.5.0",
"rdf-terms": "^1.6.2",
"semver": "^7.3.2",
"winston": "^3.3.3"
},
"bin": {
"componentsjs-compile-config": "bin/compile-config.js"
},
"engines": {
"node": ">=8.0"
}
},
"node_modules/@comunica/actor-init-sparql/node_modules/componentsjs/node_modules/rdf-quad": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/rdf-quad/-/rdf-quad-1.5.0.tgz",
"integrity": "sha512-LnCYx8XbRVW1wr6UiZPSy2Tv7bXAtEwuyck/68dANhFu8VMnGS+QfUNP3b9YI6p4Bfd/fyDx5E3x81IxGV6BzA==",
"dependencies": {
"rdf-data-factory": "^1.0.1",
"rdf-literal": "^1.2.0",
"rdf-string": "^1.5.0"
}
},
"node_modules/@comunica/actor-init-sparql/node_modules/jsonld-context-parser": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/jsonld-context-parser/-/jsonld-context-parser-2.1.1.tgz",
"integrity": "sha512-7yKhnwFaiCnDPUZYQuAWyT0zZBfOKZDyjtqFVNbXrYRkboU+m55UsastsfXbo7qNroTGdFiEyxHEHDEfBC0P4Q==",
"dependencies": {
"@types/http-link-header": "^1.0.1",
"@types/node": "^13.1.0",
"canonicalize": "^1.0.1",
"cross-fetch": "^3.0.6",
"http-link-header": "^1.0.2",
"relative-to-absolute-iri": "^1.0.5"
},
"bin": {
"jsonld-context-parse": "bin/jsonld-context-parse.js"
}
},
"node_modules/@comunica/actor-init-sparql/node_modules/jsonld-context-parser/node_modules/@types/node": {
"version": "13.13.45",
"resolved": "https://registry.npmjs.org/@types/node/-/node-13.13.45.tgz",
"integrity": "sha512-703YTEp8AwQeapI0PTXDOj+Bs/mtdV/k9VcTP7z/de+lx6XjFMKdB+JhKnK+6PZ5za7omgZ3V6qm/dNkMj/Zow=="
},
"node_modules/@comunica/actor-init-sparql/node_modules/rdf-literal": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/rdf-literal/-/rdf-literal-1.2.0.tgz",
"integrity": "sha512-N7nyfp/xzoiUuJt0xZ80BvBGkCPwWejgVDkCxWDSuooXKSows4ToW+KouYkMHLcoFzGg1Rlw2lk6btjMJg5aSA==",
"dependencies": {
"@types/rdf-js": "*",
"rdf-data-factory": "^1.0.1"
}
},
"node_modules/@comunica/actor-init-sparql/node_modules/rdf-string": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/rdf-string/-/rdf-string-1.5.0.tgz",
"integrity": "sha512-3TEJuDIKUADgZrfcZG+zAN4GfVA1Ei2sKA7Z7QVHkAE36wWoRGPJbGihPQMldgzvy9lG2nzZU+CXz+6oGSQNsQ==",
"dependencies": {
"rdf-data-factory": "^1.0.0"
}
},
"node_modules/@comunica/actor-init-sparql/node_modules/rdf-terms": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/rdf-terms/-/rdf-terms-1.6.2.tgz",
"integrity": "sha512-dASpdYHYLEwzN9iSymJie1WUj6VHXy1By8Am4g2rJlhTfVvNitsJpDY+A3X2QehlGhCaWjHMzXS4q/JKNPI80A==",
"dependencies": {
"lodash.uniqwith": "^4.5.0",
"rdf-data-factory": "^1.0.1"
}
},
"node_modules/@comunica/actor-init-sparql/node_modules/sparqlalgebrajs": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/sparqlalgebrajs/-/sparqlalgebrajs-2.5.0.tgz",
"integrity": "sha512-dNJf4xUj5DFZc/9vQnDU5y9u8l4MfvOkMgx6PAefhTjAK0HHChxLZFF4n6GngWfvEZQ3/HcfmQk3cQo6sT/6bQ==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"minimist": "^1.2.5",
"rdf-data-factory": "^1.0.0",
"rdf-isomorphic": "^1.2.0",
"rdf-string": "^1.5.0",
"sparqljs": "^3.1.1"
},
"bin": {
"sparqlalgebrajs": "bin/sparqlalgebrajs.js"
}
},
"node_modules/@comunica/actor-init-sparql/node_modules/sparqljs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/sparqljs/-/sparqljs-3.2.0.tgz",
"integrity": "sha512-Sc0oVe0yexum9i2y+KYuD96s3j8iewgYok5ooLstXP9KiShKgeDAhcWupMmnGr+YLpDpCrEqRhkiQ2LxQOfX4w==",
"dependencies": {
"rdf-data-factory": "^1.0.4"
},
"bin": {
"sparqljs": "bin/sparql-to-json"
},
"engines": {
"node": ">=8.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-1.19.2.tgz",
"integrity": "sha512-MyC//Cl9SwQNKQeaULea8ViU1ehn68hL6CuqqwDHL/0M6lLi45aMFUBs9iK/Vw330uzFjbLjTc1epo1fFb2tLA==",
"dependencies": {
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp/node_modules/rdf-string": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/rdf-string/-/rdf-string-1.5.0.tgz",
"integrity": "sha512-3TEJuDIKUADgZrfcZG+zAN4GfVA1Ei2sKA7Z7QVHkAE36wWoRGPJbGihPQMldgzvy9lG2nzZU+CXz+6oGSQNsQ==",
"dependencies": {
"rdf-data-factory": "^1.0.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp/node_modules/sparqlalgebrajs": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/sparqlalgebrajs/-/sparqlalgebrajs-2.5.0.tgz",
"integrity": "sha512-dNJf4xUj5DFZc/9vQnDU5y9u8l4MfvOkMgx6PAefhTjAK0HHChxLZFF4n6GngWfvEZQ3/HcfmQk3cQo6sT/6bQ==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"minimist": "^1.2.5",
"rdf-data-factory": "^1.0.0",
"rdf-isomorphic": "^1.2.0",
"rdf-string": "^1.5.0",
"sparqljs": "^3.1.1"
},
"bin": {
"sparqlalgebrajs": "bin/sparqlalgebrajs.js"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp/node_modules/sparqljs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/sparqljs/-/sparqljs-3.2.0.tgz",
"integrity": "sha512-Sc0oVe0yexum9i2y+KYuD96s3j8iewgYok5ooLstXP9KiShKgeDAhcWupMmnGr+YLpDpCrEqRhkiQ2LxQOfX4w==",
"dependencies": {
"rdf-data-factory": "^1.0.4"
},
"bin": {
"sparqljs": "bin/sparql-to-json"
},
"engines": {
"node": ">=8.0"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-1.19.2.tgz",
"integrity": "sha512-ogRkDwuPxDBRV8By20OHSkB89MblNM4YVfkMT2pPDhWrPojKGQVvedi58LpnfWX1NmTN63fhm9F8TyaG+jwsew==",
"dependencies": {
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-ask/node_modules/rdf-string": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/rdf-string/-/rdf-string-1.5.0.tgz",
"integrity": "sha512-3TEJuDIKUADgZrfcZG+zAN4GfVA1Ei2sKA7Z7QVHkAE36wWoRGPJbGihPQMldgzvy9lG2nzZU+CXz+6oGSQNsQ==",
"dependencies": {
"rdf-data-factory": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-ask/node_modules/sparqlalgebrajs": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/sparqlalgebrajs/-/sparqlalgebrajs-2.5.0.tgz",
"integrity": "sha512-dNJf4xUj5DFZc/9vQnDU5y9u8l4MfvOkMgx6PAefhTjAK0HHChxLZFF4n6GngWfvEZQ3/HcfmQk3cQo6sT/6bQ==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"minimist": "^1.2.5",
"rdf-data-factory": "^1.0.0",
"rdf-isomorphic": "^1.2.0",
"rdf-string": "^1.5.0",
"sparqljs": "^3.1.1"
},
"bin": {
"sparqlalgebrajs": "bin/sparqlalgebrajs.js"
}
},
"node_modules/@comunica/actor-query-operation-ask/node_modules/sparqljs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/sparqljs/-/sparqljs-3.2.0.tgz",
"integrity": "sha512-Sc0oVe0yexum9i2y+KYuD96s3j8iewgYok5ooLstXP9KiShKgeDAhcWupMmnGr+YLpDpCrEqRhkiQ2LxQOfX4w==",
"dependencies": {
"rdf-data-factory": "^1.0.4"
},
"bin": {
"sparqljs": "bin/sparql-to-json"
},
"engines": {
"node": ">=8.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-empty": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-empty/-/actor-query-operation-bgp-empty-1.19.2.tgz",
"integrity": "sha512-Lbv7XC1Jct0FMIat4ZwVH73M2KttaSKbiVCN27ef97HTlveHS5IJ0TXUBcf/sn3YGXhQcaF9zFiLozZ9cD7o0g==",
"dependencies": {
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-empty/node_modules/asynciterator": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/asynciterator/-/asynciterator-3.0.3.tgz",
"integrity": "sha512-mNvEwsk6DN7+co9T2be/Eor0kKQGIXCoGg27v7vsCLlFdSXlboH06UGCy9cfEh2qAfDdgsEpmDn6y59f3+ZvgA=="
},
"node_modules/@comunica/actor-query-operation-bgp-empty/node_modules/rdf-string": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/rdf-string/-/rdf-string-1.5.0.tgz",
"integrity": "sha512-3TEJuDIKUADgZrfcZG+zAN4GfVA1Ei2sKA7Z7QVHkAE36wWoRGPJbGihPQMldgzvy9lG2nzZU+CXz+6oGSQNsQ==",
"dependencies": {
"rdf-data-factory": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-empty/node_modules/rdf-terms": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/rdf-terms/-/rdf-terms-1.6.2.tgz",
"integrity": "sha512-dASpdYHYLEwzN9iSymJie1WUj6VHXy1By8Am4g2rJlhTfVvNitsJpDY+A3X2QehlGhCaWjHMzXS4q/JKNPI80A==",
"dependencies": {
"lodash.uniqwith": "^4.5.0",
"rdf-data-factory": "^1.0.1"
}
},
"node_modules/@comunica/actor-query-operation-bgp-empty/node_modules/sparqlalgebrajs": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/sparqlalgebrajs/-/sparqlalgebrajs-2.5.0.tgz",
"integrity": "sha512-dNJf4xUj5DFZc/9vQnDU5y9u8l4MfvOkMgx6PAefhTjAK0HHChxLZFF4n6GngWfvEZQ3/HcfmQk3cQo6sT/6bQ==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"minimist": "^1.2.5",
"rdf-data-factory": "^1.0.0",
"rdf-isomorphic": "^1.2.0",
"rdf-string": "^1.5.0",
"sparqljs": "^3.1.1"
},
"bin": {
"sparqlalgebrajs": "bin/sparqlalgebrajs.js"
}
},
"node_modules/@comunica/actor-query-operation-bgp-empty/node_modules/sparqljs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/sparqljs/-/sparqljs-3.2.0.tgz",
"integrity": "sha512-Sc0oVe0yexum9i2y+KYuD96s3j8iewgYok5ooLstXP9KiShKgeDAhcWupMmnGr+YLpDpCrEqRhkiQ2LxQOfX4w==",
"dependencies": {
"rdf-data-factory": "^1.0.4"
},
"bin": {
"sparqljs": "bin/sparql-to-json"
},
"engines": {
"node": ">=8.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-left-deep-smallest": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-left-deep-smallest/-/actor-query-operation-bgp-left-deep-smallest-1.19.2.tgz",
"integrity": "sha512-KuyPkY47MFBYcZIwE2shJYTpd1ERGOLuwEVG3UOXz/ON6tosklQOAbuGHe0bFk0fZTrM2e3SLVdPMeWaetf7QA==",
"dependencies": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-left-deep-smallest/node_modules/asynciterator": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/asynciterator/-/asynciterator-3.0.3.tgz",
"integrity": "sha512-mNvEwsk6DN7+co9T2be/Eor0kKQGIXCoGg27v7vsCLlFdSXlboH06UGCy9cfEh2qAfDdgsEpmDn6y59f3+ZvgA=="
},
"node_modules/@comunica/actor-query-operation-bgp-left-deep-smallest/node_modules/rdf-string": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/rdf-string/-/rdf-string-1.5.0.tgz",
"integrity": "sha512-3TEJuDIKUADgZrfcZG+zAN4GfVA1Ei2sKA7Z7QVHkAE36wWoRGPJbGihPQMldgzvy9lG2nzZU+CXz+6oGSQNsQ==",
"dependencies": {
"rdf-data-factory": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-left-deep-smallest/node_modules/rdf-terms": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/rdf-terms/-/rdf-terms-1.6.2.tgz",
"integrity": "sha512-dASpdYHYLEwzN9iSymJie1WUj6VHXy1By8Am4g2rJlhTfVvNitsJpDY+A3X2QehlGhCaWjHMzXS4q/JKNPI80A==",
"dependencies": {
"lodash.uniqwith": "^4.5.0",
"rdf-data-factory": "^1.0.1"
}
},
"node_modules/@comunica/actor-query-operation-bgp-left-deep-smallest/node_modules/sparqlalgebrajs": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/sparqlalgebrajs/-/sparqlalgebrajs-2.5.0.tgz",
"integrity": "sha512-dNJf4xUj5DFZc/9vQnDU5y9u8l4MfvOkMgx6PAefhTjAK0HHChxLZFF4n6GngWfvEZQ3/HcfmQk3cQo6sT/6bQ==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"minimist": "^1.2.5",
"rdf-data-factory": "^1.0.0",
"rdf-isomorphic": "^1.2.0",
"rdf-string": "^1.5.0",
"sparqljs": "^3.1.1"
},
"bin": {
"sparqlalgebrajs": "bin/sparqlalgebrajs.js"
}
},
"node_modules/@comunica/actor-query-operation-bgp-left-deep-smallest/node_modules/sparqljs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/sparqljs/-/sparqljs-3.2.0.tgz",
"integrity": "sha512-Sc0oVe0yexum9i2y+KYuD96s3j8iewgYok5ooLstXP9KiShKgeDAhcWupMmnGr+YLpDpCrEqRhkiQ2LxQOfX4w==",
"dependencies": {
"rdf-data-factory": "^1.0.4"
},
"bin": {
"sparqljs": "bin/sparql-to-json"
},
"engines": {
"node": ">=8.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-single": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-single/-/actor-query-operation-bgp-single-1.19.2.tgz",
"integrity": "sha512-Z9mdfGg/blqzh9wDEusnwwpTpP7Eb3GdbIOAxaMzIe3fo3PDuTadariXPzliho9tprC1dF/JN78i/1QM5MYqUA==",
"dependencies": {
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-single/node_modules/rdf-string": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/rdf-string/-/rdf-string-1.5.0.tgz",
"integrity": "sha512-3TEJuDIKUADgZrfcZG+zAN4GfVA1Ei2sKA7Z7QVHkAE36wWoRGPJbGihPQMldgzvy9lG2nzZU+CXz+6oGSQNsQ==",
"dependencies": {
"rdf-data-factory": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-single/node_modules/sparqlalgebrajs": {
"version": "2.5.0",
"resolved": "https://registry.npmjs.org/sparqlalgebrajs/-/sparqlalgebrajs-2.5.0.tgz",
"integrity": "sha512-dNJf4xUj5DFZc/9vQnDU5y9u8l4MfvOkMgx6PAefhTjAK0HHChxLZFF4n6GngWfvEZQ3/HcfmQk3cQo6sT/6bQ==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"minimist": "^1.2.5",
"rdf-data-factory": "^1.0.0",
"rdf-isomorphic": "^1.2.0",
"rdf-string": "^1.5.0",
"sparqljs": "^3.1.1"
},
"bin": {
"sparqlalgebrajs": "bin/sparqlalgebrajs.js"
}
},
"node_modules/@comunica/actor-query-operation-bgp-single/node_modules/sparqljs": {
"version": "3.2.0",
"resolved": "https://registry.npmjs.org/sparqljs/-/sparqljs-3.2.0.tgz",
"integrity": "sha512-Sc0oVe0yexum9i2y+KYuD96s3j8iewgYok5ooLstXP9KiShKgeDAhcWupMmnGr+YLpDpCrEqRhkiQ2LxQOfX4w==",
"dependencies": {
"rdf-data-factory": "^1.0.4"
},
"bin": {
"sparqljs": "bin/sparql-to-json"
},
"engines": {
"node": ">=8.0"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-1.19.2.tgz",
"integrity": "sha512-wNktY1yUVFCQBqvcr4xD52hlMmDzrB0VOJ9aEHQdvjmCs4P2AsLCG5Ty+qiz7va3HC1nT1qV4qRNLkeUYS93GQ==",
"dependencies": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-construct/node_modules/asynciterator": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/asynciterator/-/asynciterator-3.0.3.tgz",
"integrity": "sha512-mNvEwsk6DN7+co9T2be/Eor0kKQGIXCoGg27v7vsCLlFdSXlboH06UGCy9cfEh2qAfDdgsEpmDn6y59f3+ZvgA=="
},
"node_modules/@comunica/actor-query-operation-construct/node_modules/rdf-string": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/rdf-string/-/rdf-string-1.5.0.tgz",
"integrity": "sha512-3TEJuDIKUADgZrfcZG+zAN4GfVA1Ei2sKA7Z7QVHkAE36wWoRGPJbGihPQMldgzvy9lG2nzZU+CXz+6oGSQNsQ==",
"dependencies": {
"rdf-data-factory": "^1.0.0"
}
},
"node_modules/@comunica/actor-query-operation-construct/node_modules/rdf-terms": {