-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
2820 lines (2820 loc) · 120 KB
/
package-lock.json
File metadata and controls
2820 lines (2820 loc) · 120 KB
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": "PLnode",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@comunica/actor-abstract-bindings-hash": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.12.1.tgz",
"integrity": "sha512-hboo9pL8k6GYqK4gvfgGQXLdAkC+qP/X3uOXybCYSB5yPtn69yjjpy+NbTnv9fp3quLlpScY4Vh7HzQDlnZL5g==",
"requires": {
"json-stable-stringify": "^1.0.1",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-abstract-mediatyped": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.11.0.tgz",
"integrity": "sha512-6kH3XIxAS3c61prTjypiHsXBv35u3pNseUZ1EPb3s/GBmx5m7jbHMcdJKId2foRMkJjENvdrBW7KHbdnQya9IA==",
"requires": {
"lodash.mapvalues": "^4.6.0"
}
},
"@comunica/actor-abstract-path": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.12.1.tgz",
"integrity": "sha512-AwikAPW2KCBThpmUjTq2yEcUF95CUFFWJcqmA6poRRlS7JwQUurfYopykXiyVdi76SXwk6KoCTFEX5A0MWfI7g==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^2.2.1"
}
},
"@comunica/actor-http-memento": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.10.0.tgz",
"integrity": "sha512-PYwlVcucy4gTzIW3N+T9K6yPmp6sFBt6LMZuuQGhpNyfCu9bo1n1UcpLmwP9JGoyNSp1bRsme5MlEcSEpkJFmA==",
"requires": {
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-native": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.10.0.tgz",
"integrity": "sha512-ku40ybFzFHHnDuCXaOz0zzYzYqkJINMpVIfGM0OdZyApdwAqx2COWgIePr3HN2dakPl283hj7lbctMVFKuzohQ==",
"requires": {
"follow-redirects": "^1.5.1",
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-proxy": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-1.10.0.tgz",
"integrity": "sha512-8Cd5z/qzBYgtOsMLxPfoKyhSdgvwX9gMh3XPUNvtznQrDIw3p9JMgGhDm72vYFnC/Gfw/o4MI4nmoyxh84lZBw=="
},
"@comunica/actor-init-sparql": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.12.1.tgz",
"integrity": "sha512-URlXF7JN7h8gp0f1Dxtk++l+Rg78dZXtOMV3kSl3W8Jq7k9ZpoXVtTyWUQMeTBDmC/nd/zz3XOLvNgnoe/a3eA==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.12.1",
"@comunica/actor-abstract-mediatyped": "^1.11.0",
"@comunica/actor-http-memento": "^1.10.0",
"@comunica/actor-http-native": "^1.10.0",
"@comunica/actor-http-proxy": "^1.10.0",
"@comunica/actor-optimize-query-operation-join-bgp": "^1.11.0",
"@comunica/actor-query-operation-ask": "^1.12.1",
"@comunica/actor-query-operation-bgp-empty": "^1.12.1",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.12.1",
"@comunica/actor-query-operation-bgp-single": "^1.12.1",
"@comunica/actor-query-operation-construct": "^1.12.1",
"@comunica/actor-query-operation-describe-subject": "^1.12.1",
"@comunica/actor-query-operation-distinct-hash": "^1.12.1",
"@comunica/actor-query-operation-extend": "^1.12.1",
"@comunica/actor-query-operation-filter-sparqlee": "^1.12.1",
"@comunica/actor-query-operation-from-quad": "^1.12.1",
"@comunica/actor-query-operation-group": "^1.12.1",
"@comunica/actor-query-operation-join": "^1.12.1",
"@comunica/actor-query-operation-leftjoin-left-deep": "^1.12.1",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.12.1",
"@comunica/actor-query-operation-minus": "^1.12.1",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.12.1",
"@comunica/actor-query-operation-path-alt": "^1.12.1",
"@comunica/actor-query-operation-path-inv": "^1.12.1",
"@comunica/actor-query-operation-path-link": "^1.12.1",
"@comunica/actor-query-operation-path-nps": "^1.12.1",
"@comunica/actor-query-operation-path-one-or-more": "^1.12.1",
"@comunica/actor-query-operation-path-seq": "^1.12.1",
"@comunica/actor-query-operation-path-zero-or-more": "^1.12.1",
"@comunica/actor-query-operation-path-zero-or-one": "^1.12.1",
"@comunica/actor-query-operation-project": "^1.12.1",
"@comunica/actor-query-operation-quadpattern": "^1.12.1",
"@comunica/actor-query-operation-reduced-hash": "^1.12.1",
"@comunica/actor-query-operation-service": "^1.12.1",
"@comunica/actor-query-operation-slice": "^1.12.1",
"@comunica/actor-query-operation-sparql-endpoint": "^1.12.1",
"@comunica/actor-query-operation-union": "^1.12.1",
"@comunica/actor-query-operation-values": "^1.12.1",
"@comunica/actor-rdf-dereference-http-parse": "^1.11.0",
"@comunica/actor-rdf-join-multi-smallest": "^1.12.1",
"@comunica/actor-rdf-join-symmetrichash": "^1.12.1",
"@comunica/actor-rdf-metadata-all": "^1.9.2",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.12.1",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.12.1",
"@comunica/actor-rdf-metadata-extract-sparql-service": "^1.12.1",
"@comunica/actor-rdf-metadata-primary-topic": "^1.9.2",
"@comunica/actor-rdf-parse-html": "^1.12.1",
"@comunica/actor-rdf-parse-html-rdfa": "^1.9.2",
"@comunica/actor-rdf-parse-html-script": "^1.12.1",
"@comunica/actor-rdf-parse-jsonld": "^1.12.1",
"@comunica/actor-rdf-parse-n3": "^1.11.0",
"@comunica/actor-rdf-parse-rdfxml": "^1.11.0",
"@comunica/actor-rdf-parse-xml-rdfa": "^1.11.0",
"@comunica/actor-rdf-resolve-hypermedia-links-next": "^1.9.3",
"@comunica/actor-rdf-resolve-hypermedia-none": "^1.12.1",
"@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.12.1",
"@comunica/actor-rdf-resolve-hypermedia-sparql": "^1.12.1",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.12.1",
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.12.1",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.9.2",
"@comunica/actor-rdf-serialize-jsonld": "^1.12.1",
"@comunica/actor-rdf-serialize-n3": "^1.11.0",
"@comunica/actor-sparql-parse-algebra": "^1.11.0",
"@comunica/actor-sparql-parse-graphql": "^1.12.1",
"@comunica/actor-sparql-serialize-json": "^1.12.1",
"@comunica/actor-sparql-serialize-rdf": "^1.12.1",
"@comunica/actor-sparql-serialize-simple": "^1.12.1",
"@comunica/actor-sparql-serialize-sparql-json": "^1.12.1",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.12.1",
"@comunica/actor-sparql-serialize-stats": "^1.12.1",
"@comunica/actor-sparql-serialize-table": "^1.12.1",
"@comunica/actor-sparql-serialize-tree": "^1.12.1",
"@comunica/bus-context-preprocess": "^1.9.2",
"@comunica/bus-http": "^1.10.0",
"@comunica/bus-http-invalidate": "^1.9.2",
"@comunica/bus-init": "^1.9.2",
"@comunica/bus-optimize-query-operation": "^1.11.0",
"@comunica/bus-query-operation": "^1.12.1",
"@comunica/bus-rdf-dereference": "^1.9.3",
"@comunica/bus-rdf-dereference-paged": "^1.9.2",
"@comunica/bus-rdf-join": "^1.12.1",
"@comunica/bus-rdf-metadata": "^1.9.2",
"@comunica/bus-rdf-metadata-extract": "^1.12.1",
"@comunica/bus-rdf-parse": "^1.11.0",
"@comunica/bus-rdf-parse-html": "^1.9.2",
"@comunica/bus-rdf-resolve-hypermedia": "^1.12.1",
"@comunica/bus-rdf-resolve-hypermedia-links": "^1.9.3",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.9.2",
"@comunica/bus-rdf-serialize": "^1.11.0",
"@comunica/bus-sparql-parse": "^1.9.2",
"@comunica/bus-sparql-serialize": "^1.12.1",
"@comunica/core": "^1.9.2",
"@comunica/logger-pretty": "^1.10.0",
"@comunica/logger-void": "^1.9.2",
"@comunica/mediator-all": "^1.9.2",
"@comunica/mediator-combine-pipeline": "^1.9.2",
"@comunica/mediator-combine-union": "^1.9.2",
"@comunica/mediator-number": "^1.9.2",
"@comunica/mediator-race": "^1.9.2",
"@comunica/runner": "^1.11.1",
"@comunica/runner-cli": "^1.11.1",
"asynciterator": "^2.0.1",
"asyncreiterable": "^1.1.1",
"minimist": "^1.2.0",
"negotiate": "^1.0.1",
"rdf-quad": "^1.4.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0",
"streamify-string": "^1.0.1"
}
},
"@comunica/actor-optimize-query-operation-join-bgp": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-1.11.0.tgz",
"integrity": "sha512-859I2NKjs9NzH8gk9W6pjHpExJVLtGpWVIf8TwxOg4UiomKEPjmKfyIOsImdCCB/KiRNBRKBGMyW2a3cs/IvjA==",
"requires": {
"sparqlalgebrajs": "^2.2.1"
}
},
"@comunica/actor-query-operation-ask": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-1.12.1.tgz",
"integrity": "sha512-6hsirk3yvL1Fx1DVXKp7MOAWv8OhhY31eM8OoWAs/CECnZPTazfqbRXbo/rukV+DDlzgevo4ItHtpeEvwLlA/g=="
},
"@comunica/actor-query-operation-bgp-empty": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-empty/-/actor-query-operation-bgp-empty-1.12.1.tgz",
"integrity": "sha512-25UACdYmSsx5A11RbO+OeKgPT7HtPGZzqeBDEOMF3eyPUNwmpwa97v+ZJjW3zEtLntgw2WAR//sWFrywyo+/rg==",
"requires": {
"asynciterator": "^2.0.1"
}
},
"@comunica/actor-query-operation-bgp-left-deep-smallest": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-left-deep-smallest/-/actor-query-operation-bgp-left-deep-smallest-1.12.1.tgz",
"integrity": "sha512-cMiaeiCsWvq7+rD49VM+LAw36ibGtbgYMoEk9JvhA3ovnFveE0HRsej9jvd6AzpAb1KdEpk9RpO0JD8Z+uBNfw==",
"requires": {
"asynciterator-promiseproxy": "^2.1.0",
"lodash.uniq": "^4.5.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-query-operation-bgp-single": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-single/-/actor-query-operation-bgp-single-1.12.1.tgz",
"integrity": "sha512-4z5CMuJAFuxC/LBRZBGfcNb0w5Kb3RBUb0UcmT1RMoFDvNyqcfe/N4nzD5SWHUK2JvOwxgPoFLpKUePgZdkx0w=="
},
"@comunica/actor-query-operation-construct": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-1.12.1.tgz",
"integrity": "sha512-gWXIvfkA3icO8uvcHTQ0G3PkTNOHxfot9cMLGkkbTqHeBtOLXoeaPHZ4dvabU09mSQemXzMRMMSVuz3alGgnOQ==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-query-operation-describe-subject": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-1.12.1.tgz",
"integrity": "sha512-y8xSq+0in1lKUWKURjrsB7202eyMFpq27vlv1KdtO6auFi5RPnhffvTNDDkDOD+YEiPEjTdoOq0DZIJkEI8lWA==",
"requires": {
"@comunica/actor-query-operation-union": "^1.12.1",
"@rdfjs/data-model": "^1.1.1",
"asynciterator-union": "^2.1.2"
}
},
"@comunica/actor-query-operation-distinct-hash": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-1.12.1.tgz",
"integrity": "sha512-GxEMah8JE9ew9pEXfsYGauSYRbeunVjnTnj0enqHSuDGRd2JUx3KwcqpF2j9jajbq9pW0t608deVp1PVrFwIzw==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.12.1",
"json-stable-stringify": "^1.0.1"
}
},
"@comunica/actor-query-operation-extend": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-1.12.1.tgz",
"integrity": "sha512-26yT7oO6O7BL/IhMHLWQKY14ujf3SqzpVNC3eB/hy0KQGzDKqoQeifsSb04heTSaUtStNEYlKAMjwakmtMkZ2w==",
"requires": {
"sparqlee": "^1.3.2"
}
},
"@comunica/actor-query-operation-filter-sparqlee": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-1.12.1.tgz",
"integrity": "sha512-oYvVjNM7nI7Tf13dxgzdueXNejYUwHpjK5ywessqqL4tOsth26me9qOr1XqZuFmBGtJaaopgg6g099otHxxgyA==",
"requires": {
"sparqlee": "^1.3.2"
}
},
"@comunica/actor-query-operation-from-quad": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-1.12.1.tgz",
"integrity": "sha512-1kUlJ5Nk2dW46GxAXm+/Wx+Ggm4Ltfzk9Ma70KkHxeX+GanRzoQpMsnv342BSPp+mbiR6gC5YTHrJcf7/+rvYQ==",
"requires": {
"lodash.find": "^4.6.0",
"sparqlalgebrajs": "^2.2.1"
}
},
"@comunica/actor-query-operation-group": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-1.12.1.tgz",
"integrity": "sha512-BfdHdxF0e3wEPxpfR2jtP1FMrklZ/ujs/cIs8VTN2+S6166xteePTuaYfBJe4c4vYkAVeUQXVWEPPbBvlJeHAw==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.12.1",
"rdf-string": "^1.3.1",
"sparqlee": "^1.3.2"
}
},
"@comunica/actor-query-operation-join": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-1.12.1.tgz",
"integrity": "sha512-wca2QXnRgrHGm7BhUxocZsVHDfbDOy684vyoRiW4WmSIkGMuwVjUcy0IvgrMt2SQy5N/qTzGzjO/0NdatGntFw=="
},
"@comunica/actor-query-operation-leftjoin-left-deep": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-left-deep/-/actor-query-operation-leftjoin-left-deep-1.12.1.tgz",
"integrity": "sha512-Im2V5NyEWdBtdsUwNToLEaQlfUD1z5Z1IAKlBLpvDw3BfpVDUbVZ8BMcCq0DQ9TLuI83/r1n+PQXCxtIK78RvQ=="
},
"@comunica/actor-query-operation-leftjoin-nestedloop": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-nestedloop/-/actor-query-operation-leftjoin-nestedloop-1.12.1.tgz",
"integrity": "sha512-VWg+kbHoCrydzcvw8OXPShJ9UwDUbNI/AKH0uUE+qPwymHkAdCBkaTGCgiYHlwu7se400VL+OrTwzew0RIAa6g==",
"requires": {
"sparqlee": "^1.3.2"
}
},
"@comunica/actor-query-operation-minus": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-1.12.1.tgz",
"integrity": "sha512-Ng1XIVC+kBua9j+pLlzrhYDoD/hSghJ3ilqJDIP+ROwqLs27d0JvRK6Hg8BE9d+qHns5jFEWJ68fKxjOd+jEkw==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.12.1",
"asynciterator-promiseproxy": "^2.1.0"
}
},
"@comunica/actor-query-operation-orderby-sparqlee": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-1.12.1.tgz",
"integrity": "sha512-MosG9nsPCDqZxpf6BcKSdM7aikp4IZsHs3KFd0zT4I/XHxwQXlGCYHsaH6wbPYudF+2XKSOo3jSnujhHbog/PA==",
"requires": {
"rdf-string": "^1.3.1",
"sparqlee": "^1.3.2"
}
},
"@comunica/actor-query-operation-path-alt": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-1.12.1.tgz",
"integrity": "sha512-G9p5MRAs5/i77aYxLyFLXpm4LcvMSXFZekhfnwUEmv//E/apZWgMVsv0BZ1PJJReRS4UJLkyNKwif35AaT+I0A==",
"requires": {
"@comunica/actor-abstract-path": "^1.12.1",
"asynciterator-union": "^2.1.2",
"lodash.uniq": "^4.5.0",
"sparqlalgebrajs": "^2.2.1"
}
},
"@comunica/actor-query-operation-path-inv": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-1.12.1.tgz",
"integrity": "sha512-CVXOkMhEKRxkBSt2AlohdtrepPihlUiYQSNTC60Iub+RpOS6b5TLbYTC8qRJqM/rDLmVxao5ZUH0EBgupyY46A==",
"requires": {
"@comunica/actor-abstract-path": "^1.12.1"
}
},
"@comunica/actor-query-operation-path-link": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-1.12.1.tgz",
"integrity": "sha512-Wa5wCPHQ1SXL6Dtv8s/x2+W6t345DK1prRPXWJT2J5fEHHuTAT43pvHaiQz0+F1+Wap3fMOU79N98iZJDSJePQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.12.1",
"sparqlalgebrajs": "^2.2.1"
}
},
"@comunica/actor-query-operation-path-nps": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-1.12.1.tgz",
"integrity": "sha512-I+4gtN6pBHfPNv7yix0IVUG8lsH/oTSp5Z4UXSFYaIJ7KXH/KJb5uDx6LVv1MYaOyzJYmzr7aWd3OzUqZy0IlQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.12.1",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^2.2.1"
}
},
"@comunica/actor-query-operation-path-one-or-more": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-1.12.1.tgz",
"integrity": "sha512-+qPNVO/9yBAHYptC2YVBTw+HtOWYBqKmIeZLSRHk1TSIDB4jNJaMX4JrfbPDleRXH1lY9FeaZfn8wpPJ28qc9Q==",
"requires": {
"@comunica/actor-abstract-path": "^1.12.1",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.1.0",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^2.2.1"
}
},
"@comunica/actor-query-operation-path-seq": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-1.12.1.tgz",
"integrity": "sha512-Gv8Rpf67W3t1UWN/dntNxh1S/SojBswMy+P7YJ8l4mFO9Llqrs9U7ubzH0Ql8ju9VMHxB0nBBfrln17CzcHtvA==",
"requires": {
"@comunica/actor-abstract-path": "^1.12.1",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^2.2.1"
}
},
"@comunica/actor-query-operation-path-zero-or-more": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-1.12.1.tgz",
"integrity": "sha512-rlC03qSyGKSyYkacC6Irm8iTcRwzff4ZeQKisMIOMVU/eRtSV9IOj/H95ZUyBgZccjgBRYL7E6olPk0NjfqBDA==",
"requires": {
"@comunica/actor-abstract-path": "^1.12.1",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^2.2.1"
}
},
"@comunica/actor-query-operation-path-zero-or-one": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-1.12.1.tgz",
"integrity": "sha512-T2DRFOJJIIeNfIdrdTrl89d9vkl7CeQ/ttuu5bf2ToQUGRBMAOijCZ3p6Yh0LqkYzHZVjE6iTm7Wo4OhdORqZQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.12.1",
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-query-operation-project": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-1.12.1.tgz",
"integrity": "sha512-iy2F6nfBpmqVW31k2rdIYf8lnWC7jDcly7ajTUzfq67lZ8VMrkJiZQYzLvrz6KdHba6cJNOAsIlGO/JrtQO+IA==",
"requires": {
"@comunica/data-factory": "^1.12.1",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-query-operation-quadpattern": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-1.12.1.tgz",
"integrity": "sha512-crXW8TSecnc6HMl9H2Mqz8SOdhNDIYDAp/c3/JNe6VityxSz9Fl3lQiGKuY8eDVHA58KEbyqGE4AFI+Kajwh/Q==",
"requires": {
"asynciterator-promiseproxy": "^2.1.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-query-operation-reduced-hash": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-1.12.1.tgz",
"integrity": "sha512-HgwGKWLSK4lAj/uw8e6ZhTefGDATNDc5T2qSvfWlYKie1/iSagVpwOn4LcZWC8Rt47ybI+vY97F9J4mi9sdn/Q==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.12.1",
"lru-cache": "^5.1.1"
}
},
"@comunica/actor-query-operation-service": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-1.12.1.tgz",
"integrity": "sha512-J5bE6c5lkMVzZdR4z3ooGu5U1jmWQuINJn3yNYjbNP+sSHlQPPOhEU3b/Bd0ljZQ6ijVjlAawPJPpWcllMsyJw==",
"requires": {
"asynciterator": "^2.0.1"
}
},
"@comunica/actor-query-operation-slice": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-1.12.1.tgz",
"integrity": "sha512-ua5fw/LX6fVZ85M7h/LxCgzUbL5Mofs80e3ocaTvPu4ul0BvBsFJCujqzJ8/wE7eVIHbnOcT+ezGIlYBhYxCAA=="
},
"@comunica/actor-query-operation-sparql-endpoint": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-1.12.1.tgz",
"integrity": "sha512-W4EXbZdCbe7z55fZi4afWlvduaExtK25WTrc5oR23uX9XbEigXHKJ5UwW2OzA70q+w3ZfsYCTAe28lmVbsUFgw==",
"requires": {
"@comunica/utils-datasource": "^1.9.2",
"arrayify-stream": "^1.0.0",
"asynciterator": "^2.0.1",
"fetch-sparql-endpoint": "^1.5.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0",
"sparqlalgebrajs": "^2.2.1"
}
},
"@comunica/actor-query-operation-union": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-1.12.1.tgz",
"integrity": "sha512-EaYWBGiJ27lOjzXxJpgkctwyRW29YTbZh5kPgPtqNybE9pJjQezpghP83ijmtW712o2m8TNo6P3We5DiPlYn0w==",
"requires": {
"asynciterator-union": "^2.1.2",
"lodash.union": "^4.6.0"
}
},
"@comunica/actor-query-operation-values": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-1.12.1.tgz",
"integrity": "sha512-dLkr1amM9f8i1zXobnGZgTOrt3eHn0R9YB4SLZWStsk5o73lU4o3C3wwEAXF9d1Je95PUn5gMRiVbxgU4udAxA==",
"requires": {
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-rdf-dereference-http-parse": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-http-parse/-/actor-rdf-dereference-http-parse-1.11.0.tgz",
"integrity": "sha512-M6k+Q9AwmWUS3hLAdJ8KA2VGfbYksZWog7NfgOJVoIPCEktFjww1WC4iJmrwqYXYGOA2aNyZvNxID3Kw0X/0eQ==",
"requires": {
"relative-to-absolute-iri": "^1.0.5"
}
},
"@comunica/actor-rdf-join-multi-smallest": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-multi-smallest/-/actor-rdf-join-multi-smallest-1.12.1.tgz",
"integrity": "sha512-zDQmMyLLtgoniTBt6BVst4GYIzsrXMzg+hXcFpSjx3MYGcqbnE7Ufl0fb31IrZxx5Jx8YRGqpkpbJGfqkM5XsA=="
},
"@comunica/actor-rdf-join-symmetrichash": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-symmetrichash/-/actor-rdf-join-symmetrichash-1.12.1.tgz",
"integrity": "sha512-zIKvrYn8ISrypriFajs8oe6/ci2BZel32FGnMBs4ny2hYbDMc26gBiHCha1mZdGNGw8V47NYt43mlWwehrYWrw==",
"requires": {
"asyncjoin": "^0.3.0"
}
},
"@comunica/actor-rdf-metadata-all": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-all/-/actor-rdf-metadata-all-1.9.2.tgz",
"integrity": "sha512-doIay0DFp9aZMfp0Eu6dEOK4yojvLgebh7f4zHpxGJIWrOevJY2aZaS5KsC0bjmlQxvDg/Yf74pDKe6iHd3szg=="
},
"@comunica/actor-rdf-metadata-extract-hydra-controls": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-controls/-/actor-rdf-metadata-extract-hydra-controls-1.12.1.tgz",
"integrity": "sha512-W7pcofM2QtbsGRJEz65Y0wVmxofDGksQDNWQM530Ta+KxpkpiOdBx1SFO71eZzWxkyTLDpO+rKDV2mFxvZ0Z/Q==",
"requires": {
"lodash.assign": "^4.2.0",
"uritemplate": "0.3.4"
}
},
"@comunica/actor-rdf-metadata-extract-hydra-count": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-count/-/actor-rdf-metadata-extract-hydra-count-1.12.1.tgz",
"integrity": "sha512-4Nxing6AjNqgwTkx/mK0EQIQGGEEWWN3Gydw4gh2vWAxTRlmqy+vr85rHfY/guIzz5iW5lTec+Yp2ZjV1CMMnw=="
},
"@comunica/actor-rdf-metadata-extract-sparql-service": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-sparql-service/-/actor-rdf-metadata-extract-sparql-service-1.12.1.tgz",
"integrity": "sha512-G3SM8jk82Rt1Z2+ZkrLFNoqTx2ptJHXETMLM9b1TOAtbp2ZeQHIfcijjQ77UaWnvORNLzRRuzZROx3sIuGS0zQ==",
"requires": {
"relative-to-absolute-iri": "^1.0.5"
}
},
"@comunica/actor-rdf-metadata-primary-topic": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-primary-topic/-/actor-rdf-metadata-primary-topic-1.9.2.tgz",
"integrity": "sha512-h3eYBRFw9usX78bOBO0+XuIim8RZX7L2JzlmPZ7MA5T7sb99NWcZqNIi/WsRPWeKIg2FIESTIXJZsgcXkJ8vmg=="
},
"@comunica/actor-rdf-parse-html": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html/-/actor-rdf-parse-html-1.12.1.tgz",
"integrity": "sha512-uAO3W6mb1Lph/wGoRTNvPFzz75FRhu8UG1Bots/5+2ZTGhP9Wu4UV6qO+c2kAeD2l5B8RhS3+r4sAfJDdzGA0A==",
"requires": {
"htmlparser2": "^4.0.0"
}
},
"@comunica/actor-rdf-parse-html-rdfa": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-rdfa/-/actor-rdf-parse-html-rdfa-1.9.2.tgz",
"integrity": "sha512-TDn6XUOUavEhrOEi3UERfMi62Cv1YDsx4T2N/Afo5UayU9rI24LWcg2cCXgmGXJLjWROCbm/GmFlxecxqwoI3g==",
"requires": {
"rdfa-streaming-parser": "^1.1.1"
}
},
"@comunica/actor-rdf-parse-html-script": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-script/-/actor-rdf-parse-html-script-1.12.1.tgz",
"integrity": "sha512-RqCPtjPt16hPgpkiUJmJRB831yw/hvWF4xTnrYJ1rpK/Egcx7L5XGhjY522P7i0swvJSGz4T7Ty7Ubp36ytj8w==",
"requires": {
"relative-to-absolute-iri": "^1.0.5"
}
},
"@comunica/actor-rdf-parse-jsonld": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-jsonld/-/actor-rdf-parse-jsonld-1.12.1.tgz",
"integrity": "sha512-6v+/Q/0D/KyRHNVEZS0sF2RBJIxswb4EJlnAPiN6V9zWjB+Ci+/2nys7WyVbhqgCcusZVyqCCKIJpTyFRYzrHg==",
"requires": {
"jsonld-streaming-parser": "^2.0.0",
"stream-to-string": "^1.2.0"
}
},
"@comunica/actor-rdf-parse-n3": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-n3/-/actor-rdf-parse-n3-1.11.0.tgz",
"integrity": "sha512-sy6QIssw/8wgHBy0TX+FQwpBMNfvPOMaG3yg49cy6GVhwVz9sRQA/ipk+ee/OnljrB2tYxPP7XMNXjqOQMzWtw==",
"requires": {
"n3": "^1.0.0"
}
},
"@comunica/actor-rdf-parse-rdfxml": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-rdfxml/-/actor-rdf-parse-rdfxml-1.11.0.tgz",
"integrity": "sha512-oyOVkfBiPKuwMOP8TxLQp/FAUK5fXYwSuakfaCGkqgQ4WmBzF3ZbyHOHakOt1zl7irYsiMNU8IpOSQjl/jV2hQ==",
"requires": {
"rdfxml-streaming-parser": "^1.1.0"
}
},
"@comunica/actor-rdf-parse-xml-rdfa": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-xml-rdfa/-/actor-rdf-parse-xml-rdfa-1.11.0.tgz",
"integrity": "sha512-TYe79x4pMyf2JzARf+zx54U08You0AjWMCR5nZjzdp2fC3mn029eoZUxM/Zop4pN40IJ2rP97wwFH0DEOtLQBw==",
"requires": {
"rdfa-streaming-parser": "^1.1.1"
}
},
"@comunica/actor-rdf-resolve-hypermedia-links-next": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-links-next/-/actor-rdf-resolve-hypermedia-links-next-1.9.3.tgz",
"integrity": "sha512-xxpKFRvf7cfJBFEz4BZ6QvJoT4HUL87L1aZkmm+0daHprt0PS3xTs6yk39DPXstQ823WlwfCbdvKxtd1tT0JAw=="
},
"@comunica/actor-rdf-resolve-hypermedia-none": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-none/-/actor-rdf-resolve-hypermedia-none-1.12.1.tgz",
"integrity": "sha512-yQKRsTujfoxiEe4lJGiywlZvlmj/cWhhMNw4FvK5TvnoPEyiRt6FKwc+3Iu3M9fo+JrceaNStIzbDGfEz46N7A==",
"requires": {
"rdf-store-stream": "^1.0.0"
}
},
"@comunica/actor-rdf-resolve-hypermedia-qpf": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-qpf/-/actor-rdf-resolve-hypermedia-qpf-1.12.1.tgz",
"integrity": "sha512-G9TfbqgM/KYST/MLP6YYdZTg2kp3sd1kxfDYzcEcIjm12rrweQ+4t2LlJu0rNnZjV9nucyxjkGBRU0soDL6h0g==",
"requires": {
"@rdfjs/data-model": "^1.1.0",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.1.0",
"rdf-string": "^1.2.0",
"rdf-terms": "^1.5.1"
}
},
"@comunica/actor-rdf-resolve-hypermedia-sparql": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-sparql/-/actor-rdf-resolve-hypermedia-sparql-1.12.1.tgz",
"integrity": "sha512-BmnAROsqJPSu4emS74scgyzI+1irOWSvod/EJNFR+pDfTe8kXSzr1q/hOlmbUznviegmErE/xRry6a9hsLI6pw==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.1.0",
"rdf-terms": "^1.4.0",
"sparqlalgebrajs": "^2.2.1",
"sparqljson-parse": "^1.5.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-federated": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-federated/-/actor-rdf-resolve-quad-pattern-federated-1.12.1.tgz",
"integrity": "sha512-U0oj/JaRTBw+slMfTf6GocAViHYUiLiysTnItQADcqoozcDM058/5ZsirdTbXImEGoh/tp023gcLf/5KhNj/+w==",
"requires": {
"@comunica/data-factory": "^1.12.1",
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.1.0",
"asynciterator-union": "^2.1.2",
"lodash.omit": "^4.5.0",
"rdf-terms": "^1.5.1"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-hypermedia/-/actor-rdf-resolve-quad-pattern-hypermedia-1.12.1.tgz",
"integrity": "sha512-UJpQ5Jd6uRQIGVjSf5chNkIz/BOUXc0HLr0xb5wfnbuadmpMA5FJH2FoK7IbvJqS9FUA+2FpVIgD+17VRlAy/w==",
"requires": {
"@comunica/utils-datasource": "^1.9.2",
"@rdfjs/data-model": "^1.1.1",
"asynciterator-promiseproxy": "^2.1.0",
"lru-cache": "^5.1.1",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.5.1"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source/-/actor-rdf-resolve-quad-pattern-rdfjs-source-1.9.2.tgz",
"integrity": "sha512-xAbcosGvM+kGpgaIwDvuIosc57duqnjFsjpMgVTaLPchBskokXFwK9A1fXYh9yGvz0gYCrRbqkjp8tdS0jsl5w=="
},
"@comunica/actor-rdf-serialize-jsonld": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-jsonld/-/actor-rdf-serialize-jsonld-1.12.1.tgz",
"integrity": "sha512-mWmQw9UpKK9LzBwaXrbL4rVTQb3kLdgJy4yVxwtPUKDHqrTuW998GUctGDTAbZVjcg+a/XgTe2IqGv/WXr+GNg==",
"requires": {
"jsonld-streaming-serializer": "^1.1.0"
}
},
"@comunica/actor-rdf-serialize-n3": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-n3/-/actor-rdf-serialize-n3-1.11.0.tgz",
"integrity": "sha512-ZNnHha5tkpxFnIogMH9h8Z396bQk8PtDSfHW/TFkHNFeO1f+L8H0s5xuoWkLWzbuz77vRHd+4hFsND9zabEQsw==",
"requires": {
"n3": "^1.0.0",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-sparql-parse-algebra": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-algebra/-/actor-sparql-parse-algebra-1.11.0.tgz",
"integrity": "sha512-ED3fedmpWSAgovc3Y48S30lUm9ZpaaRLd/dO2lvE231Th5KT7SFEDpH926AUAFYan3+hfgSfQy/9lLvWtI1pdQ==",
"requires": {
"@types/sparqljs": "^2.1.0",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^2.2.1",
"sparqljs": "^3.0.0"
}
},
"@comunica/actor-sparql-parse-graphql": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-graphql/-/actor-sparql-parse-graphql-1.12.1.tgz",
"integrity": "sha512-ANRFLkbOS628CARHh7XpBZM106CXhGdjxEC9p9kgHAEF24MHiMCd4uMtPB1fauhblqEmNLKLG6U/LY7yX7HXKw==",
"requires": {
"graphql-to-sparql": "^2.1.0"
}
},
"@comunica/actor-sparql-serialize-json": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-json/-/actor-sparql-serialize-json-1.12.1.tgz",
"integrity": "sha512-uOQO9NFgCVz37R70k4ylIAuh74s6+antK90f3jMHxt1JpcRXiQWm2wGlvLtj5cC9nU4lWZVSfzyFho454eEN9Q==",
"requires": {
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-sparql-serialize-rdf": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-rdf/-/actor-sparql-serialize-rdf-1.12.1.tgz",
"integrity": "sha512-LaZZPvBDT5lc3u/HG06lYDB5qA4H0f9/Cn54/GKRZ2pvHuZFUFgiilLfH7bdlxiyZF+ffAduvKhYj+NxUSm7Sw=="
},
"@comunica/actor-sparql-serialize-simple": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-simple/-/actor-sparql-serialize-simple-1.12.1.tgz",
"integrity": "sha512-ARhi4hOzIx9kFhHW1O4L6YIzNGZdqO9h+5vlan9p+hwT31kMjqtVBIkuF6cB/jwegCGQnmaCizFng8/tW98jpw=="
},
"@comunica/actor-sparql-serialize-sparql-json": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-json/-/actor-sparql-serialize-sparql-json-1.12.1.tgz",
"integrity": "sha512-Yc2yhO+OAWs5QS9c0u21ue08MQwRSmVxYWU4a7cpMnsXX17xsSZ2+DBd2Zc21/Y7F1UUDzwQVzHmgkiRfzGAoQ=="
},
"@comunica/actor-sparql-serialize-sparql-xml": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-xml/-/actor-sparql-serialize-sparql-xml-1.12.1.tgz",
"integrity": "sha512-X0aqXifHBfw0rA4MSXKyZT5L3sI+mKTaQQhrDOg1JvYiLQiHEwpqZqbTAvtsBH5crrJixk+oe4RzAXBrAyStYg==",
"requires": {
"xml": "^1.0.1"
}
},
"@comunica/actor-sparql-serialize-stats": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-stats/-/actor-sparql-serialize-stats-1.12.1.tgz",
"integrity": "sha512-PKlhUxYduLzdM59RI6FyNXPOWYTDlCON/H+DwrZK3Hh4NCIcazc4NA2bSwDJBTroBkCmv7PT1BNRzFs6PYM7hg=="
},
"@comunica/actor-sparql-serialize-table": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-table/-/actor-sparql-serialize-table-1.12.1.tgz",
"integrity": "sha512-+ouLb4ivN+DpuA96+JoWyZpMKPaPCImyVumiP2nYTNfS29U322umE+QKVqetqf7E2cA6RZJTbxsMGUQHeEWJjw==",
"requires": {
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-sparql-serialize-tree": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-tree/-/actor-sparql-serialize-tree-1.12.1.tgz",
"integrity": "sha512-SU3YbKN0kLR167H3K4rv7MzxHC0jXCcXnVCOVwL6rDqw6MEjFkx/sRIPf2BRZIhEBqTdssU2M5FlLZAzYqXVrQ==",
"requires": {
"sparqljson-to-tree": "^2.0.0"
}
},
"@comunica/bus-context-preprocess": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/bus-context-preprocess/-/bus-context-preprocess-1.9.2.tgz",
"integrity": "sha512-2o1N71o5QbKekFVBPPsv1kUpghC/y6uQPLh7lCrpdcySqr+T5zPNSlA12DNfMKXrQqmNpuR+8kyZRNZUOiJlXA=="
},
"@comunica/bus-http": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-http/-/bus-http-1.10.0.tgz",
"integrity": "sha512-cNLOz3lQQ4zJiqYtn7FKgbjfyzmkcA480SSGhTmgqzZ8Qnm8DkswiY6xEDGd5aXJxstxR1dOHQmjax3txtpiGg==",
"requires": {
"is-stream": "^2.0.0",
"web-streams-node": "^0.4.0"
},
"dependencies": {
"is-stream": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz",
"integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="
}
}
},
"@comunica/bus-http-invalidate": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/bus-http-invalidate/-/bus-http-invalidate-1.9.2.tgz",
"integrity": "sha512-GNklf+eswWHuYUwWrhOYgEDVw1qBXzqlQM12zbnceI+9+Kv7M85VFmNC1+g5EpfWgkXI9gK46FduiWgBjspw6g=="
},
"@comunica/bus-init": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/bus-init/-/bus-init-1.9.2.tgz",
"integrity": "sha512-m6oG7L2opZ7TxTDlovg7/vFb7AEBRgplsu2sGjsDGo9gwxxQyLxfg1rG7Op6c4QtKzFY30oNODuKp9XE2Ks2jg=="
},
"@comunica/bus-optimize-query-operation": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-optimize-query-operation/-/bus-optimize-query-operation-1.11.0.tgz",
"integrity": "sha512-K2MjvC2ARaYJxn/Llji7cnifUjgV9x8Qau/hK1Y9Dx30iUCxtRg1bMimOzbAPSJFGFm/q9D5xmnhq2MPujGUpQ==",
"requires": {
"sparqlalgebrajs": "^2.2.1"
}
},
"@comunica/bus-query-operation": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-query-operation/-/bus-query-operation-1.12.1.tgz",
"integrity": "sha512-dlxHed64Wf5dinfIO96tDMwjyBciPYAE0j3yaOLIzfVtXvKqmnWfCARhHmOmXGhnMYVimtaJSY3DWJMwJm/xzA==",
"requires": {
"asynciterator": "^2.0.1",
"immutable": "^3.8.2"
}
},
"@comunica/bus-rdf-dereference": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-dereference/-/bus-rdf-dereference-1.9.3.tgz",
"integrity": "sha512-+kvUm4Ve893NPwPlcfS3ChJoLB1PyUBYbHTzSlLY09uKFFmhK5ofRj2c+Cr2ESKVYm38OUXdZBPiwkpZaMjP1g=="
},
"@comunica/bus-rdf-dereference-paged": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-dereference-paged/-/bus-rdf-dereference-paged-1.9.2.tgz",
"integrity": "sha512-WIB09umNHmkip8Z/Yr3SioUIDQw4tuUzzhr573QAWoVT+j4I2YPlB6xpn15HwSceUDUrPKjRSlZ8wxXPpImtYw=="
},
"@comunica/bus-rdf-join": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-join/-/bus-rdf-join-1.12.1.tgz",
"integrity": "sha512-O+NxbDAaRdMh1X1Pu7cik1lNb/27cRa3VRIV0oyYrP/DsQrnCKpXk3R+7moF54c95ERoDyX561NJXTarjw5GRw==",
"requires": {
"lodash.intersection": "^4.4.0",
"lodash.union": "^4.6.0"
}
},
"@comunica/bus-rdf-metadata": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-metadata/-/bus-rdf-metadata-1.9.2.tgz",
"integrity": "sha512-isoxC9qPVU7kPwfLt8cR5OLSv2waOGAitzPb0oWNXRBUd7IVzFLD/PATK/VW27uScoX8dRJK5/NDa9EB3Y2yBg=="
},
"@comunica/bus-rdf-metadata-extract": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-metadata-extract/-/bus-rdf-metadata-extract-1.12.1.tgz",
"integrity": "sha512-H2h4pzf8k4VIF1laW7ks5V33x4T/H7bxmXH/oGOvQIk/QMh4thYDZj+hEdPoSJqIPXGslhnz+L/c55KDuRuOCg==",
"requires": {
"graphql-ld": "^1.1.0",
"rdf-store-stream": "^1.0.0"
}
},
"@comunica/bus-rdf-parse": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-parse/-/bus-rdf-parse-1.11.0.tgz",
"integrity": "sha512-dthd6d5Mj/+SDiwjvE5bh4frqak9WD1HHR7PHQyroC4EsSPhFrrORWRZH3kuyRNNnkf/kOkJEfdoWhiKl+ugWQ==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.11.0"
}
},
"@comunica/bus-rdf-parse-html": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-parse-html/-/bus-rdf-parse-html-1.9.2.tgz",
"integrity": "sha512-FxZG8gTZv7YbjAoq3IsubLnjA8rcPNqUvtIBqp9skzhqBwv1l92e6O5eKiUvvq5QR+5xXBS+SIAi+17F4oOA9g=="
},
"@comunica/bus-rdf-resolve-hypermedia": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-resolve-hypermedia/-/bus-rdf-resolve-hypermedia-1.12.1.tgz",
"integrity": "sha512-tsQj7qP85b+4z6wZxXF38S/KRuFch+6+LyPTA4M4IK8i01N6xdWWS4XH4CcU2rAYAXppZ/OqMS9WlWpnd8VNdA==",
"requires": {
"asynciterator": "^2.0.0",
"asyncreiterable": "^1.1.1"
}
},
"@comunica/bus-rdf-resolve-hypermedia-links": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-resolve-hypermedia-links/-/bus-rdf-resolve-hypermedia-links-1.9.3.tgz",
"integrity": "sha512-P2Qo8lX2h0pcA87qs7O6bFz16h4iQpvNtTerAsBvPALLglXkprjS+LUa85PwSDKCafcH5UFBoYVnq2KTm+PrBw=="
},
"@comunica/bus-rdf-resolve-quad-pattern": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-resolve-quad-pattern/-/bus-rdf-resolve-quad-pattern-1.9.2.tgz",
"integrity": "sha512-dt9Y3vVTvyaqmbWyXCSXkPHgVdVKPY2Az0e/sAW3O/waP3/h0TDhA7ve7lN2D9+iS+KGl8IbzvKvSfg86ErLbg==",
"requires": {
"asynciterator": "^2.0.1",
"asyncreiterable": "^1.1.1"
}
},
"@comunica/bus-rdf-serialize": {
"version": "1.11.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-serialize/-/bus-rdf-serialize-1.11.0.tgz",
"integrity": "sha512-Kis+2Sv/v7ok5YK048PMwAuMpBJJZ5QGQ1PqfYWp3qx3E9+VoTzXj0yOcbQZXCowhC7SFyUH+6h3l1jOV/cr4w==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.11.0"
}
},
"@comunica/bus-sparql-parse": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/bus-sparql-parse/-/bus-sparql-parse-1.9.2.tgz",
"integrity": "sha512-i/JeX7PGBqoiEfvmIWwbMqM5ZbZuh8yDEGVwelDOneqGTzzXBFk8HSv/N4fwg7s4YXi4RcEFkbYurOY8b+2g2Q=="
},
"@comunica/bus-sparql-serialize": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/bus-sparql-serialize/-/bus-sparql-serialize-1.12.1.tgz",
"integrity": "sha512-SYBEMtRDpKNOwljrc+y0fXeGSfOahNbLgPaxpaTkfrCXXXlKivYGD8Q0b8qXwaPGV/u0KCvK543m5SNVtDmqqw==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.11.0"
}
},
"@comunica/core": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-1.9.2.tgz",
"integrity": "sha512-bsXMUnuO/5EyhVmbNehlL8+wkAGRM9vAqp0cAjhQDyT832BJcGB7Cr1Ufdzr5ZxOuG/Z0ydkTbcLS8JwE/hrcg==",
"requires": {
"immutable": "^3.8.2",
"lodash.assign": "^4.2.0"
}
},
"@comunica/data-factory": {
"version": "1.12.1",
"resolved": "https://registry.npmjs.org/@comunica/data-factory/-/data-factory-1.12.1.tgz",
"integrity": "sha512-91BmG99Z07AWqetx4ZCbSnXcQy1/ouFDBhv/30TC92/oQcM/ahCLSAX/UDgSVpgmKU5QzrbF+UwkJZuNLKQNWw=="
},
"@comunica/logger-pretty": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@comunica/logger-pretty/-/logger-pretty-1.10.0.tgz",
"integrity": "sha512-6Z4HBOMTvYJQNSZYa/On5lAXBCHzaH4HIRjf81m9zaBym+ZIsJdgqQVYHoWQDSDago1hjIAtw13sENJ3Ms9o8w=="
},
"@comunica/logger-void": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/logger-void/-/logger-void-1.9.2.tgz",
"integrity": "sha512-U4XLx73TjKnZ3hBFC+kD/OCQ3bn5pToljcgqYO37TNCZ4lOcLF/GkNYkkNbyC6yFbKKBqD+HAl0+Gs/BjxWD8g=="
},
"@comunica/mediator-all": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/mediator-all/-/mediator-all-1.9.2.tgz",
"integrity": "sha512-Gj8p3JATmttQhU7XrBOx9WUQ/D5s26HJ/cNZI5ozTG3+Fn462ct8LNKjB8xB8GezYFn5W8meJjWrlsJki+vuXQ==",
"requires": {
"lodash": "^4.17.4"
}
},
"@comunica/mediator-combine-pipeline": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/mediator-combine-pipeline/-/mediator-combine-pipeline-1.9.2.tgz",
"integrity": "sha512-4BjUGZ4uMSy4pNYPURev3o+ikvIsjOC8B9m7FjozaOrCKXu9EZHmsNbWXv/pc8tBjMBgR7YleXXWwu9ImD+KGg=="
},
"@comunica/mediator-combine-union": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/mediator-combine-union/-/mediator-combine-union-1.9.2.tgz",
"integrity": "sha512-bYKrNL645h/DrTl2NLQnMJsf2WiP3i7Wu1pEIIE815vjOnrvvbklkC1t/Q1ASMFWGuBIb65kps4hIUkvd9DJfg==",
"requires": {
"lodash.defaults": "^4.2.0"
}
},
"@comunica/mediator-number": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/mediator-number/-/mediator-number-1.9.2.tgz",
"integrity": "sha512-3rFZrcc6jQsbbX2pjh2j/StMMWHly7VNFCvOTVHBYVPV5r5tQkEWvIlyaBYhL4wQu8IiReUjm/ZCqRWUnApOGA=="
},
"@comunica/mediator-race": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/mediator-race/-/mediator-race-1.9.2.tgz",
"integrity": "sha512-8BivIVQX7VRD/xyFjwXoko1mMAs6uS9ntQYW12U9HZ156PrE0m9K+Ge0f+dya7i3A/GsJCAfn05dmHb7L1JmVg=="
},
"@comunica/runner": {
"version": "1.11.1",
"resolved": "https://registry.npmjs.org/@comunica/runner/-/runner-1.11.1.tgz",
"integrity": "sha512-aOpKuNRtP1X4H+oSBe9jLkbAxiySQ+f4L/ORBxmxKnZkItR3RSw2Lc3LGXAXXngUxTpk1W4BbWEKMQdhuFC4Sw==",
"requires": {
"componentsjs": "^3.3.0",
"lodash.assign": "^4.2.0",
"lodash.defaults": "^4.2.0"
}
},
"@comunica/runner-cli": {
"version": "1.11.1",
"resolved": "https://registry.npmjs.org/@comunica/runner-cli/-/runner-cli-1.11.1.tgz",
"integrity": "sha512-6AcDtHpQEOQHq4nDHmcLyy39QaiNUN8OAduK/ymO99sK0NWCXynfwdGrqn/IG53HfwTAwbDygULgp1j5Gjyq4w==",
"requires": {
"@comunica/runner": "^1.11.1"
}
},
"@comunica/utils-datasource": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/@comunica/utils-datasource/-/utils-datasource-1.9.2.tgz",
"integrity": "sha512-sxStuD62s0eO/dnyH0q+Ec6pV5oxHM9ILSsgHdywGKVoH3CHSCBgEhQaGottUhK59FpSY7g2qUgUJra7hq+6KQ==",
"requires": {
"arrayify-stream": "^1.0.0",
"asynciterator": "^2.0.0",
"asyncreiterable": "^1.1.1"
}
},
"@rdfjs/data-model": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@rdfjs/data-model/-/data-model-1.1.2.tgz",
"integrity": "sha512-pk/G/JLYGaXesoBLvEmoC/ic0H3B79fTyS0Ujjh5YQB2DZW+mn05ZowFFv88rjB9jf7c1XE5XSmf8jzn6U0HHA==",
"requires": {
"@types/rdf-js": "^2.0.1"
}
},
"@types/asynciterator": {
"version": "1.1.4",
"resolved": "https://registry.npmjs.org/@types/asynciterator/-/asynciterator-1.1.4.tgz",
"integrity": "sha512-sa5KPB8GsC70myFcnygLm3VEMh/IrSXarbqC7OrJLPJ8jFDzOZ9B1uOgbf0PcQ/smBTVJJXeZItYI9TklGiaSA==",
"requires": {
"@types/node": "*"
}
},
"@types/http-link-header": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@types/http-link-header/-/http-link-header-1.0.1.tgz",
"integrity": "sha512-5h+Pqs4EHoMkY/fLva7XsYmh9IVQghQ6uWWil1FGCNI0WqjhI4g20doYsbT4kJ/G3GkAlQca4AIc9OexdUnzkg=="
},
"@types/isomorphic-fetch": {
"version": "0.0.35",
"resolved": "https://registry.npmjs.org/@types/isomorphic-fetch/-/isomorphic-fetch-0.0.35.tgz",
"integrity": "sha512-DaZNUvLDCAnCTjgwxgiL1eQdxIKEpNLOlTNtAgnZc50bG2copGhRrFN9/PxPBuJe+tZVLCbQ7ls0xveXVRPkvw=="
},
"@types/node": {
"version": "13.13.5",
"resolved": "https://registry.npmjs.org/@types/node/-/node-13.13.5.tgz",
"integrity": "sha512-3ySmiBYJPqgjiHA7oEaIo2Rzz0HrOZ7yrNO5HWyaE5q0lQ3BppDZ3N53Miz8bw2I7gh1/zir2MGVZBvpb1zq9g=="
},
"@types/rdf-js": {
"version": "2.0.12",
"resolved": "https://registry.npmjs.org/@types/rdf-js/-/rdf-js-2.0.12.tgz",
"integrity": "sha512-NBzHFHp2vHOJkPlSqzsOrkEsD9grKn+PdFjZieIw59pc0FlRG6WEQAjQZvHzFxJlYzC6ZDCFyTA1wBvUnnzUQw==",
"requires": {
"@types/node": "*"
}
},
"@types/sparqljs": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/@types/sparqljs/-/sparqljs-2.1.1.tgz",
"integrity": "sha512-mCT9RP2xsmbrQLzqJyuCyfR9I2DtCgzPoP7v6Ti9NfcnU5Rzem2OG9ZIRTSjK/71cbWvGacznb+eSX/60xu5DA=="
},
"JSONStream": {
"version": "1.3.5",
"resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz",