-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
7989 lines (7989 loc) · 318 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": "website",
"version": "0.0.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@11ty/eleventy": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@11ty/eleventy/-/eleventy-0.6.0.tgz",
"integrity": "sha512-IFac7cQQQEVwrbaTshCy2ibUUty154gyGIZ87gRkEDmsONgztvXBDVo6CTlUH27t+5xfwjiiSWTh5cC1WWOf8g==",
"requires": {
"browser-sync": "^2.24.7",
"chalk": "^2.4.1",
"debug": "^4.0.1",
"ejs": "^2.6.1",
"fast-glob": "^2.2.2",
"fs-extra": "^7.0.0",
"glob-watcher": "^5.0.1",
"gray-matter": "^4.0.1",
"hamljs": "^0.6.2",
"handlebars": "^4.0.12",
"javascript-stringify": "^1.6.0",
"liquidjs": "^6.0.1",
"lodash": "^4.17.11",
"luxon": "^1.4.1",
"markdown-it": "^8.4.2",
"minimist": "^1.2.0",
"multimatch": "^2.1.0",
"mustache": "^2.3.0",
"normalize-path": "^3.0.0",
"nunjucks": "^3.1.4",
"parse-filepath": "^1.0.2",
"please-upgrade-node": "^3.1.1",
"pretty": "^2.0.0",
"pug": "^2.0.3",
"recursive-copy": "^2.0.9",
"semver": "^5.5.1",
"slugify": "^1.3.1",
"time-require": "^0.1.2",
"valid-url": "^1.0.9"
}
},
"@comunica/actor-abstract-bindings-hash": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.4.4.tgz",
"integrity": "sha512-SgT7+WAzas/S8OyGs018KRAkCZbCo9Xo1YQTMf2JmL30wLc8iR8vrtlBgd/noyesd9iOFKiroyrR19Zm3/qnpQ=="
},
"@comunica/actor-abstract-mediatyped": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.4.0.tgz",
"integrity": "sha512-30WSiLjDaZ7mkeRzbsoW91UHaWtfgYH54W7qIP9osntfFUQq6KbYGsmlnsDPSva+cmGralAb7g3HMqErBeFHgQ==",
"requires": {
"lodash.mapvalues": "^4.6.0"
}
},
"@comunica/actor-abstract-path": {
"version": "1.4.5",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.4.5.tgz",
"integrity": "sha512-NDFaA880vcpxnRZaZrOKi/8jN7bYc0cx07PZhMP59BcIvaLJA6V7BuJNegQeeKDPA0K/mkMsWztq6nsvLYHkuQ==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.4.0"
}
},
"@comunica/actor-context-preprocess-rdf-source-identifier": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-rdf-source-identifier/-/actor-context-preprocess-rdf-source-identifier-1.5.1.tgz",
"integrity": "sha512-x6QMDgmkjKKBu70DzG5O7oTbpm8fzQCEQ1ffP3eeK2AsIjaZBLk5cHpdBvdPUDDSiD3dY1HPU6daBLY+OEi7pg==",
"requires": {
"asyncreiterable": "^1.1.0"
}
},
"@comunica/actor-http-memento": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.5.1.tgz",
"integrity": "sha512-0uqMxG7/82kG/RHSzVfGvZbs2e6II/j/Kj2Afhn1ouAbrJOIJU3BVtqJ0UfK16ipiVJPD6/YOz8fkaO2SArzpA==",
"requires": {
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-native": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.5.1.tgz",
"integrity": "sha512-IhH2CVf33pw5S35VSFIxefmkT8t04/7dqNtgeKNMH1PDlyeLqWsFk32KhZ0CwUr9Q/FaejhQK+pYTcTK3iEpOg==",
"requires": {
"follow-redirects": "^1.5.1",
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-node-fetch": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-node-fetch/-/actor-http-node-fetch-1.5.1.tgz",
"integrity": "sha512-zb6V9oLuvFG3f1X+5ib+uHRrcps5qQ8bxvpJUia6uFKSXQbrPYQViP4R5/n4R2ZIeiqR2a/RM1LLKRUb/+4O+Q==",
"requires": {
"isomorphic-fetch": "^2.2.1"
}
},
"@comunica/actor-init-hello-world": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-hello-world/-/actor-init-hello-world-1.4.4.tgz",
"integrity": "sha512-dB/r5/tK4fX/8ovUWOS0Ti1JWaVcxyNu+J5LSwrVVRM+rYCwOomT9xZGTCrvbTM0DRSUpVP/35oxSlmogmbrJA==",
"requires": {
"@comunica/bus-init": "^1.4.0",
"@comunica/core": "^1.4.0",
"@comunica/runner": "^1.4.4",
"@comunica/runner-cli": "^1.4.4",
"streamify-string": "^1.0.1"
}
},
"@comunica/actor-init-http": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-http/-/actor-init-http-1.5.1.tgz",
"integrity": "sha512-6juqQYdP1yENkr417QZ+4+NeNgsU4bUvs8gPd6XpIEl5f/Z7+otCDAi2Dbjj7NIjKuRLAOAeXvRp1i0iu6NTyA==",
"requires": {
"@comunica/actor-http-node-fetch": "^1.5.1",
"@comunica/bus-http": "^1.5.1",
"@comunica/bus-init": "^1.4.0",
"@comunica/core": "^1.4.0",
"@comunica/mediator-number": "^1.4.1",
"@comunica/runner": "^1.4.4",
"@comunica/runner-cli": "^1.4.4"
}
},
"@comunica/actor-init-rdf-dereference": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-rdf-dereference/-/actor-init-rdf-dereference-1.5.1.tgz",
"integrity": "sha512-bInoiroQRFoUuH5HPAHT1HIuFNJj/Qy5LktC+lAyirFZtFZHYDKuXbQMTr9RaZTLxH2d4SfVkME7cLUwmZQcpA==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.4.0",
"@comunica/actor-http-node-fetch": "^1.5.1",
"@comunica/actor-rdf-dereference-http-parse": "^1.5.1",
"@comunica/actor-rdf-parse-jsonld": "^1.5.1",
"@comunica/actor-rdf-parse-n3": "^1.4.3",
"@comunica/bus-http": "^1.5.1",
"@comunica/bus-init": "^1.4.0",
"@comunica/bus-rdf-dereference": "^1.4.0",
"@comunica/bus-rdf-parse": "^1.4.2",
"@comunica/core": "^1.4.0",
"@comunica/mediator-number": "^1.4.1",
"@comunica/mediator-race": "^1.4.0",
"@comunica/runner": "^1.4.4",
"@comunica/runner-cli": "^1.4.4",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-init-rdf-dereference-paged": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-rdf-dereference-paged/-/actor-init-rdf-dereference-paged-1.5.1.tgz",
"integrity": "sha512-K5vzkBjSoci2o5FEPSd1JJUHzmMw4rkUU+Cs5zlBDX2el56H5KbL3Do471kTXN8f8DOe/hlk3ucFDiXg9uWTQg==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.4.0",
"@comunica/actor-http-node-fetch": "^1.5.1",
"@comunica/actor-rdf-dereference-http-parse": "^1.5.1",
"@comunica/actor-rdf-dereference-paged-next": "^1.4.5",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.4.0",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.4.0",
"@comunica/actor-rdf-metadata-primary-topic": "^1.4.0",
"@comunica/actor-rdf-metadata-triple-predicate": "^1.4.0",
"@comunica/actor-rdf-parse-jsonld": "^1.5.1",
"@comunica/actor-rdf-parse-n3": "^1.4.3",
"@comunica/bus-http": "^1.5.1",
"@comunica/bus-init": "^1.4.0",
"@comunica/bus-rdf-dereference": "^1.4.0",
"@comunica/bus-rdf-dereference-paged": "^1.4.0",
"@comunica/bus-rdf-metadata": "^1.4.0",
"@comunica/bus-rdf-metadata-extract": "^1.4.0",
"@comunica/bus-rdf-parse": "^1.4.2",
"@comunica/core": "^1.4.0",
"@comunica/mediator-combine-union": "^1.4.0",
"@comunica/mediator-number": "^1.4.1",
"@comunica/mediator-race": "^1.4.0",
"@comunica/runner": "^1.4.4",
"@comunica/runner-cli": "^1.4.4",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-init-rdf-parse": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-rdf-parse/-/actor-init-rdf-parse-1.5.1.tgz",
"integrity": "sha512-wpUgNF0bCwouarn0UJtIZDN8VWAapwGvdq3blwLD5uMJ3FWPBj3465PoLzBa4XAIvZlUbGFGXylW4+3BED1JbA==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.4.0",
"@comunica/actor-rdf-parse-jsonld": "^1.5.1",
"@comunica/actor-rdf-parse-n3": "^1.4.3",
"@comunica/actor-rdf-parse-rdfxml": "^1.4.3",
"@comunica/bus-init": "^1.4.0",
"@comunica/bus-rdf-parse": "^1.4.2",
"@comunica/core": "^1.4.0",
"@comunica/mediator-race": "^1.4.0",
"@comunica/runner": "^1.4.4",
"@comunica/runner-cli": "^1.4.4",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-init-sparql": {
"version": "1.5.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.5.3.tgz",
"integrity": "sha512-9sjkHUG8gFXFxU8NPuUkr7NvYrlhi3N1mQdeGdHQLcIZXx8R+d5Q2swdCb9rDnhWOOhM7oZbtFN5XY0q7IZKRA==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.4.4",
"@comunica/actor-abstract-mediatyped": "^1.4.0",
"@comunica/actor-context-preprocess-rdf-source-identifier": "^1.5.1",
"@comunica/actor-http-memento": "^1.5.1",
"@comunica/actor-http-native": "^1.5.1",
"@comunica/actor-optimize-query-operation-join-bgp": "^1.5.0",
"@comunica/actor-query-operation-ask": "^1.4.4",
"@comunica/actor-query-operation-bgp-empty": "^1.4.4",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.4.5",
"@comunica/actor-query-operation-bgp-single": "^1.4.4",
"@comunica/actor-query-operation-construct": "^1.4.4",
"@comunica/actor-query-operation-describe-subject": "^1.4.4",
"@comunica/actor-query-operation-distinct-hash": "^1.4.4",
"@comunica/actor-query-operation-extend": "^1.5.2",
"@comunica/actor-query-operation-filter-sparqlee": "^1.5.1",
"@comunica/actor-query-operation-from-quad": "^1.4.5",
"@comunica/actor-query-operation-join": "^1.4.4",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.5.1",
"@comunica/actor-query-operation-minus": "^1.4.4",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.5.1",
"@comunica/actor-query-operation-path-alt": "^1.4.5",
"@comunica/actor-query-operation-path-inv": "^1.4.5",
"@comunica/actor-query-operation-path-link": "^1.4.5",
"@comunica/actor-query-operation-path-nps": "^1.4.5",
"@comunica/actor-query-operation-path-one-or-more": "^1.4.5",
"@comunica/actor-query-operation-path-seq": "^1.4.5",
"@comunica/actor-query-operation-path-zero-or-more": "^1.4.5",
"@comunica/actor-query-operation-path-zero-or-one": "^1.4.5",
"@comunica/actor-query-operation-project": "^1.4.4",
"@comunica/actor-query-operation-quadpattern": "^1.4.5",
"@comunica/actor-query-operation-reduced-hash": "^1.4.5",
"@comunica/actor-query-operation-service": "^1.4.4",
"@comunica/actor-query-operation-slice": "^1.4.4",
"@comunica/actor-query-operation-sparql-endpoint": "^1.5.1",
"@comunica/actor-query-operation-union": "^1.4.4",
"@comunica/actor-query-operation-values": "^1.4.4",
"@comunica/actor-rdf-dereference-http-parse": "^1.5.1",
"@comunica/actor-rdf-dereference-paged-next": "^1.4.5",
"@comunica/actor-rdf-join-nestedloop": "^1.4.4",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.4.0",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.4.0",
"@comunica/actor-rdf-metadata-primary-topic": "^1.4.0",
"@comunica/actor-rdf-metadata-triple-predicate": "^1.4.0",
"@comunica/actor-rdf-parse-jsonld": "^1.5.1",
"@comunica/actor-rdf-parse-n3": "^1.4.3",
"@comunica/actor-rdf-parse-rdfxml": "^1.4.3",
"@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.5.1",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.4.5",
"@comunica/actor-rdf-resolve-quad-pattern-file": "^1.4.5",
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.5.1",
"@comunica/actor-rdf-resolve-quad-pattern-sparql-json": "^1.5.1",
"@comunica/actor-rdf-serialize-jsonld": "^1.5.1",
"@comunica/actor-rdf-serialize-n3": "^1.4.3",
"@comunica/actor-rdf-source-identifier-file-content-type": "^1.5.1",
"@comunica/actor-rdf-source-identifier-hypermedia-qpf": "^1.5.1",
"@comunica/actor-rdf-source-identifier-sparql": "^1.5.1",
"@comunica/actor-sparql-parse-algebra": "^1.5.3",
"@comunica/actor-sparql-parse-graphql": "^1.5.3",
"@comunica/actor-sparql-serialize-json": "^1.4.4",
"@comunica/actor-sparql-serialize-rdf": "^1.4.4",
"@comunica/actor-sparql-serialize-simple": "^1.4.4",
"@comunica/actor-sparql-serialize-sparql-json": "^1.4.4",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.4.4",
"@comunica/actor-sparql-serialize-stats": "^1.4.4",
"@comunica/actor-sparql-serialize-table": "^1.4.4",
"@comunica/actor-sparql-serialize-tree": "^1.4.4",
"@comunica/bus-context-preprocess": "^1.4.0",
"@comunica/bus-http": "^1.5.1",
"@comunica/bus-init": "^1.4.0",
"@comunica/bus-optimize-query-operation": "^1.5.0",
"@comunica/bus-query-operation": "^1.4.4",
"@comunica/bus-rdf-dereference": "^1.4.0",
"@comunica/bus-rdf-dereference-paged": "^1.4.0",
"@comunica/bus-rdf-join": "^1.4.4",
"@comunica/bus-rdf-metadata": "^1.4.0",
"@comunica/bus-rdf-metadata-extract": "^1.4.0",
"@comunica/bus-rdf-parse": "^1.4.2",
"@comunica/bus-rdf-resolve-hypermedia": "^1.4.5",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.4.5",
"@comunica/bus-rdf-serialize": "^1.4.0",
"@comunica/bus-rdf-source-identifier": "^1.5.1",
"@comunica/bus-sparql-parse": "^1.4.0",
"@comunica/bus-sparql-serialize": "^1.4.4",
"@comunica/core": "^1.4.0",
"@comunica/logger-pretty": "^1.4.0",
"@comunica/logger-void": "^1.4.0",
"@comunica/mediator-combine-pipeline": "^1.4.0",
"@comunica/mediator-combine-union": "^1.4.0",
"@comunica/mediator-number": "^1.4.1",
"@comunica/mediator-race": "^1.4.0",
"@comunica/runner": "^1.4.4",
"@comunica/runner-cli": "^1.4.4",
"asyncreiterable": "^1.1.0",
"minimist": "^1.2.0",
"negotiate": "^1.0.1",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0",
"streamify-string": "^1.0.1"
}
},
"@comunica/actor-init-sparql-file": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql-file/-/actor-init-sparql-file-1.6.2.tgz",
"integrity": "sha512-dUjX00Oynt3QdtEz6HNQifCItcHr/wptgujF6Q4Nc4i4rINSYGSZ5ybPdQ9EDHVVzOzsb3dXgwuvlhLvh2mn1w==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.6.0",
"@comunica/actor-context-preprocess-rdf-source-identifier": "^1.6.0",
"@comunica/actor-http-native": "^1.6.1",
"@comunica/actor-init-sparql": "^1.6.2",
"@comunica/actor-query-operation-ask": "^1.6.1",
"@comunica/actor-query-operation-bgp-empty": "^1.6.0",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.6.0",
"@comunica/actor-query-operation-bgp-single": "^1.6.0",
"@comunica/actor-query-operation-construct": "^1.6.0",
"@comunica/actor-query-operation-describe-subject": "^1.6.0",
"@comunica/actor-query-operation-distinct-hash": "^1.6.0",
"@comunica/actor-query-operation-extend": "^1.6.0",
"@comunica/actor-query-operation-filter-sparqlee": "^1.6.0",
"@comunica/actor-query-operation-from-quad": "^1.6.0",
"@comunica/actor-query-operation-join": "^1.6.0",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.6.0",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.6.0",
"@comunica/actor-query-operation-path-alt": "^1.6.0",
"@comunica/actor-query-operation-path-inv": "^1.6.0",
"@comunica/actor-query-operation-path-link": "^1.6.0",
"@comunica/actor-query-operation-path-nps": "^1.6.0",
"@comunica/actor-query-operation-path-one-or-more": "^1.6.0",
"@comunica/actor-query-operation-path-seq": "^1.6.0",
"@comunica/actor-query-operation-path-zero-or-more": "^1.6.0",
"@comunica/actor-query-operation-path-zero-or-one": "^1.6.0",
"@comunica/actor-query-operation-project": "^1.6.0",
"@comunica/actor-query-operation-quadpattern": "^1.6.0",
"@comunica/actor-query-operation-service": "^1.6.0",
"@comunica/actor-query-operation-slice": "^1.6.0",
"@comunica/actor-query-operation-union": "^1.6.0",
"@comunica/actor-query-operation-values": "^1.6.0",
"@comunica/actor-rdf-dereference-file": "^1.6.2",
"@comunica/actor-rdf-dereference-http-parse": "^1.6.0",
"@comunica/actor-rdf-join-nestedloop": "^1.6.0",
"@comunica/actor-rdf-parse-jsonld": "^1.6.0",
"@comunica/actor-rdf-parse-n3": "^1.6.0",
"@comunica/actor-rdf-resolve-quad-pattern-file": "^1.6.0",
"@comunica/actor-rdf-serialize-jsonld": "^1.6.0",
"@comunica/actor-rdf-serialize-n3": "^1.6.0",
"@comunica/actor-rdf-source-identifier-file-content-type": "^1.6.0",
"@comunica/actor-sparql-parse-algebra": "^1.6.0",
"@comunica/actor-sparql-serialize-json": "^1.6.0",
"@comunica/actor-sparql-serialize-rdf": "^1.6.0",
"@comunica/actor-sparql-serialize-simple": "^1.6.0",
"@comunica/actor-sparql-serialize-sparql-json": "^1.6.0",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.6.0",
"@comunica/actor-sparql-serialize-stats": "^1.6.0",
"@comunica/actor-sparql-serialize-table": "^1.6.0",
"@comunica/bus-context-preprocess": "^1.6.0",
"@comunica/bus-http": "^1.6.0",
"@comunica/bus-init": "^1.6.0",
"@comunica/bus-query-operation": "^1.6.0",
"@comunica/bus-rdf-dereference": "^1.6.0",
"@comunica/bus-rdf-join": "^1.6.0",
"@comunica/bus-rdf-parse": "^1.6.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.6.0",
"@comunica/bus-rdf-serialize": "^1.6.0",
"@comunica/bus-rdf-source-identifier": "^1.6.0",
"@comunica/bus-sparql-parse": "^1.6.0",
"@comunica/bus-sparql-serialize": "^1.6.0",
"@comunica/core": "^1.4.0",
"@comunica/mediator-combine-pipeline": "^1.4.0",
"@comunica/mediator-combine-union": "^1.4.0",
"@comunica/mediator-number": "^1.4.1",
"@comunica/mediator-race": "^1.6.0",
"@comunica/runner": "^1.6.1",
"@comunica/runner-cli": "^1.6.1"
},
"dependencies": {
"@comunica/actor-abstract-bindings-hash": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.6.0.tgz",
"integrity": "sha512-wVrufnCM1sjUgoAx2BqA87MLI3TdspURZuLIei3+MqZCsxxTTf2BnYt9ctE/sjHF26R+S1s8v9oXXmYOr0hqog=="
},
"@comunica/actor-abstract-mediatyped": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.6.0.tgz",
"integrity": "sha512-yHMsh04V3B33piprdR31uLGZqASL6n7LogdwkudtnjGX2ODLfeOk1NMxE9nsf3LE90TdCWn3aTeQTQNQmx0/9w==",
"requires": {
"lodash.mapvalues": "^4.6.0"
}
},
"@comunica/actor-abstract-path": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.6.0.tgz",
"integrity": "sha512-B16It0IJKIxolK5ePuZZGLhu4N+UHdWoZxxyFekur1te4o1/13q/01/cIgbSLiv1zUeLdk8FXVUAT6K4H4zVQA==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.4.0"
}
},
"@comunica/actor-context-preprocess-rdf-source-identifier": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-rdf-source-identifier/-/actor-context-preprocess-rdf-source-identifier-1.6.0.tgz",
"integrity": "sha512-PdFeE6NflVnnwr0ywD2RL8LkdnekF/3QX6I+tlCV7lUCAt8XZboFBLyTB08GuCJkEcGFT6k52NWgwkJlJR6low==",
"requires": {
"asyncreiterable": "^1.1.1"
}
},
"@comunica/actor-http-memento": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.6.0.tgz",
"integrity": "sha512-E2d1LEEo9xzeSJbPYeX8TWE3WS/5adftO6V4RZroleI0gjciDiTazKk8KvH/ubvUZybuR5CKFZT65sZ1lxAk7g==",
"requires": {
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-native": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.6.1.tgz",
"integrity": "sha512-f9hON45piFAW0YamPOLiJzIKFPgqc0qTu4T4UBje26g10a/KKtu9zKOXIppSUor/xNIRJkXs4kOERkd+DEYe7A==",
"requires": {
"follow-redirects": "^1.5.1",
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-init-sparql": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.6.2.tgz",
"integrity": "sha512-cREBGDm5TJVGvh5+Va+wn6BRTlPu8xPJluKX02Nrt9LTHBBKmfVh2TnBQu/BKjvA5hoeA1lCV7/v4imwCIQW7A==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.6.0",
"@comunica/actor-abstract-mediatyped": "^1.6.0",
"@comunica/actor-context-preprocess-rdf-source-identifier": "^1.6.0",
"@comunica/actor-http-memento": "^1.6.0",
"@comunica/actor-http-native": "^1.6.1",
"@comunica/actor-optimize-query-operation-join-bgp": "^1.6.0",
"@comunica/actor-query-operation-ask": "^1.6.1",
"@comunica/actor-query-operation-bgp-empty": "^1.6.0",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.6.0",
"@comunica/actor-query-operation-bgp-single": "^1.6.0",
"@comunica/actor-query-operation-construct": "^1.6.0",
"@comunica/actor-query-operation-describe-subject": "^1.6.0",
"@comunica/actor-query-operation-distinct-hash": "^1.6.0",
"@comunica/actor-query-operation-extend": "^1.6.0",
"@comunica/actor-query-operation-filter-sparqlee": "^1.6.0",
"@comunica/actor-query-operation-from-quad": "^1.6.0",
"@comunica/actor-query-operation-join": "^1.6.0",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.6.0",
"@comunica/actor-query-operation-minus": "^1.6.0",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.6.0",
"@comunica/actor-query-operation-path-alt": "^1.6.0",
"@comunica/actor-query-operation-path-inv": "^1.6.0",
"@comunica/actor-query-operation-path-link": "^1.6.0",
"@comunica/actor-query-operation-path-nps": "^1.6.0",
"@comunica/actor-query-operation-path-one-or-more": "^1.6.0",
"@comunica/actor-query-operation-path-seq": "^1.6.0",
"@comunica/actor-query-operation-path-zero-or-more": "^1.6.0",
"@comunica/actor-query-operation-path-zero-or-one": "^1.6.0",
"@comunica/actor-query-operation-project": "^1.6.0",
"@comunica/actor-query-operation-quadpattern": "^1.6.0",
"@comunica/actor-query-operation-reduced-hash": "^1.6.0",
"@comunica/actor-query-operation-service": "^1.6.0",
"@comunica/actor-query-operation-slice": "^1.6.0",
"@comunica/actor-query-operation-sparql-endpoint": "^1.6.0",
"@comunica/actor-query-operation-union": "^1.6.0",
"@comunica/actor-query-operation-values": "^1.6.0",
"@comunica/actor-rdf-dereference-http-parse": "^1.6.0",
"@comunica/actor-rdf-dereference-paged-next": "^1.6.0",
"@comunica/actor-rdf-join-nestedloop": "^1.6.0",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.6.0",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.6.0",
"@comunica/actor-rdf-metadata-primary-topic": "^1.6.2",
"@comunica/actor-rdf-metadata-triple-predicate": "^1.6.0",
"@comunica/actor-rdf-parse-jsonld": "^1.6.0",
"@comunica/actor-rdf-parse-n3": "^1.6.0",
"@comunica/actor-rdf-parse-rdfxml": "^1.6.0",
"@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.6.0",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.6.0",
"@comunica/actor-rdf-resolve-quad-pattern-file": "^1.6.0",
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.6.0",
"@comunica/actor-rdf-resolve-quad-pattern-sparql-json": "^1.6.0",
"@comunica/actor-rdf-serialize-jsonld": "^1.6.0",
"@comunica/actor-rdf-serialize-n3": "^1.6.0",
"@comunica/actor-rdf-source-identifier-file-content-type": "^1.6.0",
"@comunica/actor-rdf-source-identifier-hypermedia-qpf": "^1.6.0",
"@comunica/actor-rdf-source-identifier-sparql": "^1.6.0",
"@comunica/actor-sparql-parse-algebra": "^1.6.0",
"@comunica/actor-sparql-parse-graphql": "^1.6.0",
"@comunica/actor-sparql-serialize-json": "^1.6.0",
"@comunica/actor-sparql-serialize-rdf": "^1.6.0",
"@comunica/actor-sparql-serialize-simple": "^1.6.0",
"@comunica/actor-sparql-serialize-sparql-json": "^1.6.0",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.6.0",
"@comunica/actor-sparql-serialize-stats": "^1.6.0",
"@comunica/actor-sparql-serialize-table": "^1.6.0",
"@comunica/actor-sparql-serialize-tree": "^1.6.0",
"@comunica/bus-context-preprocess": "^1.6.0",
"@comunica/bus-http": "^1.6.0",
"@comunica/bus-http-invalidate": "^1.6.0",
"@comunica/bus-init": "^1.6.0",
"@comunica/bus-optimize-query-operation": "^1.6.0",
"@comunica/bus-query-operation": "^1.6.0",
"@comunica/bus-rdf-dereference": "^1.6.0",
"@comunica/bus-rdf-dereference-paged": "^1.6.0",
"@comunica/bus-rdf-join": "^1.6.0",
"@comunica/bus-rdf-metadata": "^1.6.0",
"@comunica/bus-rdf-metadata-extract": "^1.6.0",
"@comunica/bus-rdf-parse": "^1.6.0",
"@comunica/bus-rdf-resolve-hypermedia": "^1.6.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.6.0",
"@comunica/bus-rdf-serialize": "^1.6.0",
"@comunica/bus-rdf-source-identifier": "^1.6.0",
"@comunica/bus-sparql-parse": "^1.6.0",
"@comunica/bus-sparql-serialize": "^1.6.0",
"@comunica/core": "^1.4.0",
"@comunica/logger-pretty": "^1.6.0",
"@comunica/logger-void": "^1.6.0",
"@comunica/mediator-all": "^1.6.0",
"@comunica/mediator-combine-pipeline": "^1.4.0",
"@comunica/mediator-combine-union": "^1.4.0",
"@comunica/mediator-number": "^1.4.1",
"@comunica/mediator-race": "^1.6.0",
"@comunica/runner": "^1.6.1",
"@comunica/runner-cli": "^1.6.1",
"asyncreiterable": "^1.1.1",
"minimist": "^1.2.0",
"negotiate": "^1.0.1",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0",
"streamify-string": "^1.0.1"
}
},
"@comunica/actor-optimize-query-operation-join-bgp": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-1.6.0.tgz",
"integrity": "sha512-MpgQaTd1xBZHUeNKMbafNBtEX1JBopm+cEj8coW/PD4l0WYUHphftCY79+etLH8WfqBWEgwC8auUvobdM6qbkQ==",
"requires": {
"sparqlalgebrajs": "^1.4.0"
}
},
"@comunica/actor-query-operation-ask": {
"version": "1.6.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-1.6.1.tgz",
"integrity": "sha512-PGC0KWjUVXApeNQvNyZmoXsQUnM8hUDKh9vSzcmydc705n0lu8k2DR790le1mI21L8rlmqlz+t5yM55BaBrTxA=="
},
"@comunica/actor-query-operation-bgp-empty": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-empty/-/actor-query-operation-bgp-empty-1.6.0.tgz",
"integrity": "sha512-n0cICSVdkQljo5oOIOc18qil4L5ivtc89vXOl2qlElKuDs6lDmDR4aCUwFQxA4YiMikIZZd/646mTZp8EdWDuQ==",
"requires": {
"asynciterator": "^2.0.1"
}
},
"@comunica/actor-query-operation-bgp-left-deep-smallest": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-left-deep-smallest/-/actor-query-operation-bgp-left-deep-smallest-1.6.0.tgz",
"integrity": "sha512-u6lkKf0xBAYCK61oC5EGsEAr+GjJ57B/kDimwlURMqo2rCX9GDxWo2KoyL+IGTWT+U+hySithUbODSdGE5X8MQ==",
"requires": {
"asynciterator-promiseproxy": "^2.0.0",
"lodash.uniq": "^4.5.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-query-operation-bgp-single": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-single/-/actor-query-operation-bgp-single-1.6.0.tgz",
"integrity": "sha512-ikaqR7zKoZO4cmIGquJeQgABwue9A/Qz+8Y9gAoJFUE2kPst9vjzOirHOcizsR8u5ZSf3HooFIJ5fW+SSNIeaw=="
},
"@comunica/actor-query-operation-construct": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-1.6.0.tgz",
"integrity": "sha512-Ws6cv4BsopHlV/q9rH/8OUgnGdaQPAizK/CHt6YYpuvYFSR0kDk+k79Kqh4PnG1rXzf6Go/micH0rb6qiLQGyw==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-query-operation-describe-subject": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-1.6.0.tgz",
"integrity": "sha512-OAvLunBBBi/L5fjbkhwmBydmEY7WHdvraheZjJNGslnWcRQOy067LkObjJdGi5Sz8MlA9FfII0m+dOSRk80IBA==",
"requires": {
"@comunica/actor-query-operation-union": "^1.6.0",
"@rdfjs/data-model": "^1.1.1",
"asynciterator-union": "^2.1.1"
}
},
"@comunica/actor-query-operation-distinct-hash": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-1.6.0.tgz",
"integrity": "sha512-Smranjp5pNkLN4nt4dDpgKuYoeKGX8WXQUTbO129GhSIfkuh2IUDCqgRdp3xyg245BYJfdpfBKhmstmXkjWvUw==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.6.0",
"json-stable-stringify": "^1.0.1"
}
},
"@comunica/actor-query-operation-extend": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-1.6.0.tgz",
"integrity": "sha512-mN1WJRzyokDl1mbdHSWKj1g9Mo8ne8LDtjSQ236RgGmBn2Y3iqHX5wpzgsdPHbY8ptsE8TC6aZVi5Jk2k+wuEA==",
"requires": {
"sparqlee": "0.1.0"
}
},
"@comunica/actor-query-operation-filter-sparqlee": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-1.6.0.tgz",
"integrity": "sha512-DoKLa+Q+c1epiwkMoHLFqVfhnc7wo5uDY1PXP/a5uBZQfj/yyQLfhfwUuZEvEAEIh5w1L47aglcDU7nExLQ66A==",
"requires": {
"sparqlee": "0.1.0"
}
},
"@comunica/actor-query-operation-from-quad": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-1.6.0.tgz",
"integrity": "sha512-PwC9A7ewC2NSQcoM/vvt9F+9R5UlNkd+ZIH1g13A6RLPzII2dwgmLJWydf6rGQ2RNBlRKyZE+l4542/9t8iWQA==",
"requires": {
"lodash.find": "^4.6.0",
"sparqlalgebrajs": "^1.4.0"
}
},
"@comunica/actor-query-operation-join": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-1.6.0.tgz",
"integrity": "sha512-BO3mVi76d9uPOoYJbP7+cFbUNDA0/4jAf3MAoe5N470Cax4wNeiFvoAWsW3Q9e27wxmqpPvj9o94HtcQX/s73A=="
},
"@comunica/actor-query-operation-leftjoin-nestedloop": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-nestedloop/-/actor-query-operation-leftjoin-nestedloop-1.6.0.tgz",
"integrity": "sha512-mXNonOCCJgnE8nHqpQvh+zvS3sAXn8FCyBX0Ix9b7LQ9d9XBFH+084Wf8YP3agz0Eyqm3QZRUOnECY87kKKyWw==",
"requires": {
"sparqlee": "0.1.0"
}
},
"@comunica/actor-query-operation-minus": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-1.6.0.tgz",
"integrity": "sha512-K9uC5L7kXoXX4p8DmsWERwWFsjF3K3T0lHrgmDjsmYMSIXAAEzb2tfJipQFs9nplmtTJOjwL4KiMKl/n4boAzw==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.6.0",
"asynciterator-promiseproxy": "^2.0.0"
}
},
"@comunica/actor-query-operation-orderby-sparqlee": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-1.6.0.tgz",
"integrity": "sha512-LcrCjvFE6UbTLbYZ1YtyfDYyzPt4Tye7V/GuqfVROni7oLuuoJ5A4wRAcSKxZ6sBUGkzxERQQk82W7Hc0byFSA==",
"requires": {
"rdf-string": "^1.3.1",
"sparqlee": "0.1.0"
}
},
"@comunica/actor-query-operation-path-alt": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-1.6.0.tgz",
"integrity": "sha512-ssns/3oSHLpVqVFoxJa7/EVn9q1L3RzmcLQGl3YQjSz3v/HmMGXBU3F4QhoI4JvP0O/WDqiJvKb8z61fBWcfVw==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.0",
"asynciterator-union": "^2.1.1",
"lodash.uniq": "^4.5.0",
"sparqlalgebrajs": "^1.4.0"
}
},
"@comunica/actor-query-operation-path-inv": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-1.6.0.tgz",
"integrity": "sha512-kZXLb5z2MOgXECueONd+hFagtG9ZOfvux8soSRp02tm89LA/l87dCv9DIxk8QUOrmwG7l3ZJ0SSk149nhe+x6Q==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.0"
}
},
"@comunica/actor-query-operation-path-link": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-1.6.0.tgz",
"integrity": "sha512-I4/PT3XB4Yc9VcDBHutroP+Lv20Z7GkxHMLmezkAFC6z14MivmGC+/I+zc5wJSxETHf5J+sv24Z5l4mGdvnNdA==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.0",
"sparqlalgebrajs": "^1.4.0"
}
},
"@comunica/actor-query-operation-path-nps": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-1.6.0.tgz",
"integrity": "sha512-rPTugkghu0KxtG0IBb2Nj3kG12rdAnHU7tqReei3BeHS3Eyn8yUA/AV6QJCsyZh4wkCVkNYuEweqWeDf62Lxsg==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.0",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.4.0"
}
},
"@comunica/actor-query-operation-path-one-or-more": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-1.6.0.tgz",
"integrity": "sha512-lVkPSGPnyYnJZEzfcnmT6Mm+HUMQCUrh88VC7C+s2NShrXeR3zY6Fndp29w+SKdGAI/m+Keb2W/6BRAfU68GMA==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.0",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.4.0"
}
},
"@comunica/actor-query-operation-path-seq": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-1.6.0.tgz",
"integrity": "sha512-Rejb9L7LwjXfRN3x+HAmt83ephPoQvL+JhzdZxXUIueBbjyM/i1sw7e9Zxt/L7UTR3fjoUgIXfyYb9146/PqWQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.0",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.4.0"
}
},
"@comunica/actor-query-operation-path-zero-or-more": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-1.6.0.tgz",
"integrity": "sha512-QKefgFQhTvGOeWDcEvLRTiz1RdhDtkowO+eMf2rrBtYlHDtZPZcXuL0KevtGE/LoD/9v3ZcSeu/1k7uZFGfXtQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.0",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.4.0"
}
},
"@comunica/actor-query-operation-path-zero-or-one": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-1.6.0.tgz",
"integrity": "sha512-nHNIppyxojo5vHimNOEtoOJji5mGm5YyXnVRUMbnbFW7DDEjUjScZMKohWJzl0ilYNFQtbb0ecO+vEWlss6b3w==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.0",
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-query-operation-project": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-1.6.0.tgz",
"integrity": "sha512-ogfhwxDKEyGYY1Sf4vUrXK62St4dFiHtxXobegDR1cYW+AnnFK8+wzQo7V1zZIkBq7KHbylYbyPaxWtB32Ua0g==",
"requires": {
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-query-operation-quadpattern": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-1.6.0.tgz",
"integrity": "sha512-jJO+0Euq2n5RthPKpf+1MDrTBTcAlZDfl5YKjKFKLYR1QMwo7NCBrAXljxXJTslLmrTFjFkISR6ds1Ee4oY6LQ==",
"requires": {
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-query-operation-reduced-hash": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-1.6.0.tgz",
"integrity": "sha512-77sSF1Le6mkgpjkWDsnvnwJUsUbOg4xJSMgZ6i6WATQLVN4xBZ3erve/jm2p2gmWUXndvnam76/N3E1DSs2c0g==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.6.0",
"lru-cache": "^5.1.1"
}
},
"@comunica/actor-query-operation-service": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-1.6.0.tgz",
"integrity": "sha512-ZYPzs9ohFan+6EonXA0qTGS6HS/D3r6aefRiqLIAO21lUXGK81xLaI1UZojeoNFpHWeF1OEv+H9g99IFxtKETA==",
"requires": {
"asynciterator": "^2.0.1"
}
},
"@comunica/actor-query-operation-slice": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-1.6.0.tgz",
"integrity": "sha512-GGpTgkzC74HProgo8rvrLWyibDaUcjvGgMb+F3Qp98Nd91FdiKMiY3txYWuXAmCXiKopJB6dSZ0bxw48yYsSLw=="
},
"@comunica/actor-query-operation-sparql-endpoint": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-1.6.0.tgz",
"integrity": "sha512-HFkOCqA609+RD0aXId0/mXvdtdEGnPn/noKa1VxeAumxmN96r7Klj5j4DNM1soXgBacj5Ry0Bg7Pi/7i9ZJMGg==",
"requires": {
"@comunica/utils-datasource": "^1.5.4",
"arrayify-stream": "^1.0.0",
"asynciterator": "^2.0.1",
"fetch-sparql-endpoint": "^1.4.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0",
"sparqlalgebrajs": "^1.4.0"
}
},
"@comunica/actor-query-operation-union": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-1.6.0.tgz",
"integrity": "sha512-gJ/LpKakGoOv6KCCCI3FJTH+KLFzEokX4G8zb++PaxX+kZXtNbKBfRkU8Y1KmnNqARtH+HOdsFsU0Z/0WS7cAg==",
"requires": {
"asynciterator-union": "^2.1.1",
"lodash.union": "^4.6.0"
}
},
"@comunica/actor-query-operation-values": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-1.6.0.tgz",
"integrity": "sha512-LjRnWA6wgD9ZdKzAOpqjPf2K9FbY3e4/xqddYNJrQZvRN4YQcTeptO14Jz+4b+7CbRdc1Kkp04qxKvU/kCjFWQ==",
"requires": {
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-rdf-dereference-http-parse": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-http-parse/-/actor-rdf-dereference-http-parse-1.6.0.tgz",
"integrity": "sha512-Vp4eQqOFtBuUB7eBzpndqevCRQaCiFf0uJV60kPfXuKF3a/pukqwaoPKRHmIr3fxAyA56u+qaKR/3UphOypPtQ=="
},
"@comunica/actor-rdf-dereference-paged-next": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-paged-next/-/actor-rdf-dereference-paged-next-1.6.0.tgz",
"integrity": "sha512-BrpU3vZwuhyG+jdzFBBx3vnyILZa/l54yiJ1YXNIrmpOILo4BeyXLTEX36UdfV/S3TYm1PkfiB4nx7Jr94Tiag==",
"requires": {
"asynciterator": "^2.0.1",
"lru-cache": "^5.1.1"
}
},
"@comunica/actor-rdf-join-nestedloop": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-nestedloop/-/actor-rdf-join-nestedloop-1.6.0.tgz",
"integrity": "sha512-+G24rZrvKhhSddu2Ybe5KFKJ8/uh9cq0TvLRsScv4hdH2E60n8rVT4heJya3RgoYHPNxINiVEzDVYyk3MGUC1Q==",
"requires": {
"asyncjoin": "^0.3.0"
}
},
"@comunica/actor-rdf-metadata-extract-hydra-controls": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-controls/-/actor-rdf-metadata-extract-hydra-controls-1.6.0.tgz",
"integrity": "sha512-jFrkFrb7OplxAR47IEpqIx5n1wun03Kqe3VZobzL13CRPvcNe9l5nAmgR83oRO9xgA3ZLPELi8QCu1ldoc+i2A==",
"requires": {
"lodash.assign": "^4.2.0",
"lodash.flatten": "^4.4.0",
"lodash.mapvalues": "^4.6.0",
"lodash.values": "^4.3.0",
"uritemplate": "0.3.4"
}
},
"@comunica/actor-rdf-metadata-extract-hydra-count": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-count/-/actor-rdf-metadata-extract-hydra-count-1.6.0.tgz",
"integrity": "sha512-TsyPqnPzKejLtrjdQzZHu0aVPt7dX+B90VJF/HNAf6INXv8bFtAf78XaRwSX03PnvfG4pE/vODW3sDJWt2tr+g=="
},
"@comunica/actor-rdf-metadata-primary-topic": {
"version": "1.6.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-primary-topic/-/actor-rdf-metadata-primary-topic-1.6.2.tgz",
"integrity": "sha512-jMwMxUieWx8g4syIH9qJLGNZgmqnrbPihs8r9wHRSXjZDwyndWmw+hQCth32q8qacsPYkjhnWrapeu3WokNOOA=="
},
"@comunica/actor-rdf-metadata-triple-predicate": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-triple-predicate/-/actor-rdf-metadata-triple-predicate-1.6.0.tgz",
"integrity": "sha512-6vUmz1gREm5XP+qOS2efqUQ5FWfgN59PaHq0WRmw9aljsRe1x6v5L6pBpArIwl3bp6I0+1XVSacbX8IbDCmxtg=="
},
"@comunica/actor-rdf-parse-jsonld": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-jsonld/-/actor-rdf-parse-jsonld-1.6.0.tgz",
"integrity": "sha512-yKc5WTgdhSV2IOzl9Gd4Bj4f6MWaosXFqgBAZhttlFBpwaB1yPyNZqchwKw0nevf89J90lJ6dLncEOf8SuEYag==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"jsonld": "^1.5.0",
"rdf-terms": "^1.4.0",
"stream-to-string": "^1.1.0"
}
},
"@comunica/actor-rdf-parse-n3": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-n3/-/actor-rdf-parse-n3-1.6.0.tgz",
"integrity": "sha512-JITiOgk3FZ2sK4+ag+4Hd62mQXtMQiAG3TTa/gla++pYZEt6lXcsQj/EICG1NcBdg+7jtZQrTnoxlO3Roqb98A==",
"requires": {
"n3": "^1.0.0"
}
},
"@comunica/actor-rdf-parse-rdfxml": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-rdfxml/-/actor-rdf-parse-rdfxml-1.6.0.tgz",
"integrity": "sha512-Z/WAnbX7W7P60nz70P6A7BUPzXa/qOeajBfewznAxFq35EKoNQ8EdjDyhekDYn8EGVdEuQCDiY45fv38JlSsrg==",
"requires": {
"rdfxml-streaming-parser": "^1.1.0"
}
},
"@comunica/actor-rdf-resolve-hypermedia-qpf": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-qpf/-/actor-rdf-resolve-hypermedia-qpf-1.6.0.tgz",
"integrity": "sha512-30xDgdq2gpv5uUuHp6Pr9V7Zrt3N/fc9Iw1qSBeGHqX9qpWn4pH4up7zLiUvTF1NbU+C8HP/RYyQqWTwPzeOHw==",
"requires": {
"@rdfjs/data-model": "^1.1.0",
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.2.0",
"rdf-terms": "^1.2.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-federated": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-federated/-/actor-rdf-resolve-quad-pattern-federated-1.6.0.tgz",
"integrity": "sha512-OA7o+8ho6myGC/RRZZZpZcKm0cwM4zL0ASlV3qmgzx7NvFfFCaZHf+y5rImfYzNM/KpTSREBYl2BLD0hccCE2Q==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.0.0",
"asynciterator-union": "^2.1.1",
"lodash.omit": "^4.5.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-file": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-file/-/actor-rdf-resolve-quad-pattern-file-1.6.0.tgz",
"integrity": "sha512-+XB9FA8/P8+3dQEsPl58pHb+TjTmPRiOh0194Vi6sXmthNzLySON4/wEd4AhgX4wL7Iemm++bTIq511CDL2Rew==",
"requires": {
"asynciterator": "^2.0.1",
"lru-cache": "^5.1.1",
"n3": "^1.0.0",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-hypermedia/-/actor-rdf-resolve-quad-pattern-hypermedia-1.6.0.tgz",
"integrity": "sha512-+sPPwcbYiMYWonvGjd6gQ0UffAtFfcLWMFrNZ/9MS8Q/p8FiiE8lv+j5YU3xPue7fS4Vr3E3qdn2Nyb/j3KVVQ==",
"requires": {
"@comunica/utils-datasource": "^1.5.4",
"@rdfjs/data-model": "^1.1.1",
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-sparql-json": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-sparql-json/-/actor-rdf-resolve-quad-pattern-sparql-json-1.6.0.tgz",
"integrity": "sha512-AZYAuzHV3W9WHz2Tt+sdcNVLgimgquLd3NdjxAKHira0dgBrK40KjCt/HB6iDpLBaWKIyhOScB5nH9IX8D73XQ==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.0.0",
"rdf-terms": "^1.4.0",
"sparqlalgebrajs": "^1.4.0",
"sparqljson-parse": "^1.5.0"
}
},
"@comunica/actor-rdf-serialize-jsonld": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-jsonld/-/actor-rdf-serialize-jsonld-1.6.0.tgz",
"integrity": "sha512-2YmT/Q084XlchWWKF1kzrY0h1lYTc8JVdufqsz5i/JP+kqBFAXzwRZb9obfTT/g0oNYTC4SFaETUSi2Pra45Og==",
"requires": {
"arrayify-stream": "^1.0.0",
"jsonld": "^1.5.0",
"streamify-array": "^1.0.0"
}
},
"@comunica/actor-rdf-serialize-n3": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-n3/-/actor-rdf-serialize-n3-1.6.0.tgz",
"integrity": "sha512-beXKmf6CyhRUSd0KImL/DW66cvb4bim7aaVhYdJobYcOqxkIPtewbesgOuyWDSL6dYjT8qG+9N8LZgr+s0N9Iw==",
"requires": {
"n3": "^1.0.0",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-rdf-source-identifier-file-content-type": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-source-identifier-file-content-type/-/actor-rdf-source-identifier-file-content-type-1.6.0.tgz",
"integrity": "sha512-I9mHHvM2F3yTUR/OIWEMtRyUqUgHs6ZLRXFkZ5HdbdfbfWHtSS837CMam3zK+mvPWyEfclm5L+NtH19tIH7f9A=="
},
"@comunica/actor-rdf-source-identifier-hypermedia-qpf": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-source-identifier-hypermedia-qpf/-/actor-rdf-source-identifier-hypermedia-qpf-1.6.0.tgz",
"integrity": "sha512-0GvNx7n/JDDdODUlDtfW5gCv55YdEjoZb/J1LzPcKLNjTlmiybKZ2dt4gwvq67ckjbSRdLryar5Wn3IbkS/7+g==",
"requires": {
"stream-to-string": "^1.1.0"
}
},
"@comunica/actor-rdf-source-identifier-sparql": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-source-identifier-sparql/-/actor-rdf-source-identifier-sparql-1.6.0.tgz",
"integrity": "sha512-dU/jWwvjIhyOcVGAFaq7ylfp7rqzcYA73k7TKlZKGqSiyMSs1eVfLeQQnyKHwcrUrjLlhHNE5DuOnfBnTfBcig=="
},
"@comunica/actor-sparql-parse-algebra": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-algebra/-/actor-sparql-parse-algebra-1.6.0.tgz",
"integrity": "sha512-aQNVJE0B7LCYKCfY6/6tgarwwWF1+ajIqrQITdQGl4O1hTkHX1By6JZ1d2IA2WyQ8NQEnR8TOK+EzkjpaXIywg==",
"requires": {
"sparqlalgebrajs": "^1.4.0"
}
},
"@comunica/actor-sparql-parse-graphql": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-graphql/-/actor-sparql-parse-graphql-1.6.0.tgz",
"integrity": "sha512-YYCtNycTZJdaN8oZmYgLprDslFSlOySjYgtZo3WCLPPUv4ULjI2lWMfNrEZXFYx1cuo9yMg6+vDhY06Tou4CYg==",
"requires": {
"graphql-to-sparql": "^1.5.0"
}
},
"@comunica/actor-sparql-serialize-json": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-json/-/actor-sparql-serialize-json-1.6.0.tgz",