-
Notifications
You must be signed in to change notification settings - Fork 3
/
package-lock.json
6344 lines (6344 loc) · 236 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "solid-anime-tracker",
"version": "0.0.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/runtime": {
"version": "7.1.2",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.1.2.tgz",
"integrity": "sha512-Y3SCjmhSupzFB6wcv1KmmFucH6gDVnI30WjOcicV10ju0cZjak3Jcs67YLIXBrmZYw1xCrVeJPbycFwrqNyxpg==",
"requires": {
"regenerator-runtime": "^0.12.0"
}
},
"@comunica/actor-abstract-bindings-hash": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.4.0.tgz",
"integrity": "sha512-5u7ZzUD6a19UcblkLFyCIITWFwSofsMua921ei7hVK+LrAzSzSFTObe6pe0wxCF0DrVrbib/DnQdMGF8m/0Y3A=="
},
"@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.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.4.0.tgz",
"integrity": "sha512-l70zGRnR7bTEpcrxX7I9UmpDj/C5SwOFq8mOhUCQh/bK2RCHz8JUYRUnbuWNm4GUsCnRg9XCfBHHauvoaBcVjw==",
"requires": {
"@rdfjs/data-model": "^1.0.0",
"asynciterator": "^2.0.0",
"rdf-string": "^1.2.0",
"sparqlalgebrajs": "^1.1.0"
}
},
"@comunica/actor-context-preprocess-rdf-source-identifier": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-rdf-source-identifier/-/actor-context-preprocess-rdf-source-identifier-1.4.0.tgz",
"integrity": "sha512-NdR1XNjFyYg+e2L+YScKFEl7Y4MdDd/9cd8catsEqxymxLVmQjRVltP7QhAt5TPvake5pQmynpl547SwYeg4Rg==",
"requires": {
"asyncreiterable": "^1.1.0"
}
},
"@comunica/actor-http-memento": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.4.0.tgz",
"integrity": "sha512-MhOlPeAo9U3VRRIMo/giCJo6Mhmc/g8EPCfT0bo5WHvMdO+Mpepm9QSxvhC0CkqOf62mb58pddzCj7SeehOkYQ==",
"requires": {
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-native": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.4.0.tgz",
"integrity": "sha512-+hlUknE3YMrLTsALhZAOcpXHOSiCh96vzmuomzF/UZ/vYVj6W7eTyB7h5Jsb3CYzyRTo7a1ETOn9IwM3TvLfBw==",
"requires": {
"follow-redirects": "^1.5.1",
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-init-sparql": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.4.1.tgz",
"integrity": "sha512-YBOWZDnPdCWe7tNOhhk36XSal6ZDEJLKyB0SOHBvxMAlnWHr8X7wl2q/MA2RNLoI9B1b9ZctYSOxpacFUNIA9g==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.4.0",
"@comunica/actor-abstract-mediatyped": "^1.4.0",
"@comunica/actor-context-preprocess-rdf-source-identifier": "^1.4.0",
"@comunica/actor-http-memento": "^1.4.0",
"@comunica/actor-http-native": "^1.4.0",
"@comunica/actor-query-operation-ask": "^1.4.0",
"@comunica/actor-query-operation-bgp-empty": "^1.4.0",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.4.0",
"@comunica/actor-query-operation-bgp-single": "^1.4.0",
"@comunica/actor-query-operation-construct": "^1.4.0",
"@comunica/actor-query-operation-describe-subject": "^1.4.0",
"@comunica/actor-query-operation-distinct-hash": "^1.4.0",
"@comunica/actor-query-operation-filter-direct": "^1.4.0",
"@comunica/actor-query-operation-from-quad": "^1.4.0",
"@comunica/actor-query-operation-join": "^1.4.0",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.4.0",
"@comunica/actor-query-operation-minus": "^1.4.0",
"@comunica/actor-query-operation-orderby-direct": "^1.4.0",
"@comunica/actor-query-operation-path-alt": "^1.4.0",
"@comunica/actor-query-operation-path-inv": "^1.4.0",
"@comunica/actor-query-operation-path-link": "^1.4.0",
"@comunica/actor-query-operation-path-nps": "^1.4.0",
"@comunica/actor-query-operation-path-one-or-more": "^1.4.0",
"@comunica/actor-query-operation-path-seq": "^1.4.0",
"@comunica/actor-query-operation-path-zero-or-more": "^1.4.0",
"@comunica/actor-query-operation-path-zero-or-one": "^1.4.0",
"@comunica/actor-query-operation-project": "^1.4.0",
"@comunica/actor-query-operation-quadpattern": "^1.4.0",
"@comunica/actor-query-operation-reduced-hash": "^1.4.0",
"@comunica/actor-query-operation-service": "^1.4.0",
"@comunica/actor-query-operation-slice": "^1.4.0",
"@comunica/actor-query-operation-sparql-endpoint": "^1.4.0",
"@comunica/actor-query-operation-union": "^1.4.0",
"@comunica/actor-query-operation-values": "^1.4.0",
"@comunica/actor-rdf-dereference-http-parse": "^1.4.0",
"@comunica/actor-rdf-dereference-paged-next": "^1.4.0",
"@comunica/actor-rdf-join-nestedloop": "^1.4.0",
"@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.4.0",
"@comunica/actor-rdf-parse-n3": "^1.4.0",
"@comunica/actor-rdf-parse-rdfxml": "^1.4.0",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.4.0",
"@comunica/actor-rdf-resolve-quad-pattern-file": "^1.4.0",
"@comunica/actor-rdf-resolve-quad-pattern-qpf": "^1.4.0",
"@comunica/actor-rdf-resolve-quad-pattern-sparql-json": "^1.4.0",
"@comunica/actor-rdf-serialize-jsonld": "^1.4.0",
"@comunica/actor-rdf-serialize-n3": "^1.4.0",
"@comunica/actor-rdf-source-identifier-file-content-type": "^1.4.0",
"@comunica/actor-rdf-source-identifier-hypermedia-qpf": "^1.4.0",
"@comunica/actor-rdf-source-identifier-sparql": "^1.4.0",
"@comunica/actor-sparql-parse-algebra": "^1.4.0",
"@comunica/actor-sparql-parse-graphql": "^1.4.0",
"@comunica/actor-sparql-serialize-json": "^1.4.0",
"@comunica/actor-sparql-serialize-rdf": "^1.4.0",
"@comunica/actor-sparql-serialize-simple": "^1.4.0",
"@comunica/actor-sparql-serialize-sparql-json": "^1.4.0",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.4.0",
"@comunica/actor-sparql-serialize-stats": "^1.4.0",
"@comunica/actor-sparql-serialize-table": "^1.4.0",
"@comunica/actor-sparql-serialize-tree": "^1.4.0",
"@comunica/bus-context-preprocess": "^1.4.0",
"@comunica/bus-http": "^1.4.0",
"@comunica/bus-init": "^1.4.0",
"@comunica/bus-query-operation": "^1.4.0",
"@comunica/bus-rdf-dereference": "^1.4.0",
"@comunica/bus-rdf-dereference-paged": "^1.4.0",
"@comunica/bus-rdf-join": "^1.4.0",
"@comunica/bus-rdf-metadata": "^1.4.0",
"@comunica/bus-rdf-metadata-extract": "^1.4.0",
"@comunica/bus-rdf-parse": "^1.4.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.4.0",
"@comunica/bus-rdf-serialize": "^1.4.0",
"@comunica/bus-rdf-source-identifier": "^1.4.0",
"@comunica/bus-sparql-parse": "^1.4.0",
"@comunica/bus-sparql-serialize": "^1.4.0",
"@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.0",
"@comunica/runner-cli": "^1.4.0",
"asyncreiterable": "^1.1.0",
"minimist": "^1.2.0",
"negotiate": "^1.0.1",
"rdf-string": "^1.1.1",
"rdf-terms": "^1.1.0",
"streamify-string": "^1.0.1"
}
},
"@comunica/actor-init-sparql-rdfjs": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql-rdfjs/-/actor-init-sparql-rdfjs-1.4.1.tgz",
"integrity": "sha512-HSzucpbXTs9YlNqvPSpJck85SvdU3t1s7Jdqcsc0jY35TEAjaLHc1mRxsUo0CWDVCq/h9LhMTgzdJ90PDLi7uw==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.4.0",
"@comunica/actor-context-preprocess-rdf-source-identifier": "^1.4.0",
"@comunica/actor-init-sparql": "^1.4.1",
"@comunica/actor-query-operation-ask": "^1.4.0",
"@comunica/actor-query-operation-bgp-empty": "^1.4.0",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.4.0",
"@comunica/actor-query-operation-bgp-single": "^1.4.0",
"@comunica/actor-query-operation-construct": "^1.4.0",
"@comunica/actor-query-operation-describe-subject": "^1.4.0",
"@comunica/actor-query-operation-distinct-hash": "^1.4.0",
"@comunica/actor-query-operation-filter-direct": "^1.4.0",
"@comunica/actor-query-operation-from-quad": "^1.4.0",
"@comunica/actor-query-operation-join": "^1.4.0",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.4.0",
"@comunica/actor-query-operation-orderby-direct": "^1.4.0",
"@comunica/actor-query-operation-path-alt": "^1.4.0",
"@comunica/actor-query-operation-path-inv": "^1.4.0",
"@comunica/actor-query-operation-path-link": "^1.4.0",
"@comunica/actor-query-operation-path-nps": "^1.4.0",
"@comunica/actor-query-operation-path-one-or-more": "^1.4.0",
"@comunica/actor-query-operation-path-seq": "^1.4.0",
"@comunica/actor-query-operation-path-zero-or-more": "^1.4.0",
"@comunica/actor-query-operation-path-zero-or-one": "^1.4.0",
"@comunica/actor-query-operation-project": "^1.4.0",
"@comunica/actor-query-operation-quadpattern": "^1.4.0",
"@comunica/actor-query-operation-service": "^1.4.0",
"@comunica/actor-query-operation-slice": "^1.4.0",
"@comunica/actor-query-operation-union": "^1.4.0",
"@comunica/actor-query-operation-values": "^1.4.0",
"@comunica/actor-rdf-join-nestedloop": "^1.4.0",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.4.0",
"@comunica/actor-rdf-serialize-jsonld": "^1.4.0",
"@comunica/actor-rdf-serialize-n3": "^1.4.0",
"@comunica/actor-sparql-parse-algebra": "^1.4.0",
"@comunica/actor-sparql-serialize-json": "^1.4.0",
"@comunica/actor-sparql-serialize-rdf": "^1.4.0",
"@comunica/actor-sparql-serialize-simple": "^1.4.0",
"@comunica/actor-sparql-serialize-sparql-json": "^1.4.0",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.4.0",
"@comunica/bus-context-preprocess": "^1.4.0",
"@comunica/bus-init": "^1.4.0",
"@comunica/bus-query-operation": "^1.4.0",
"@comunica/bus-rdf-join": "^1.4.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.4.0",
"@comunica/bus-rdf-serialize": "^1.4.0",
"@comunica/bus-rdf-source-identifier": "^1.4.0",
"@comunica/bus-sparql-parse": "^1.4.0",
"@comunica/bus-sparql-serialize": "^1.4.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.4.0",
"@comunica/runner": "^1.4.0",
"@comunica/runner-cli": "^1.4.0"
}
},
"@comunica/actor-query-operation-ask": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-1.4.0.tgz",
"integrity": "sha512-VwVU6vkWhAGymUNW02qw60JHYUIkN269EjrFwNRMaA8f9ZJUmivRvTjzov7FhF8AcZ63VcU3ldOYKNq5hMQX6Q=="
},
"@comunica/actor-query-operation-bgp-empty": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-empty/-/actor-query-operation-bgp-empty-1.4.0.tgz",
"integrity": "sha512-mzJI2VuqIfq+kIK/XbfcHy2yVFrwLlzUqrRtEkK7WwejmxmPUUuaqWTDkQRnr6fskYR9d5ehsL4cf9DJ3L+JdA==",
"requires": {
"asynciterator": "^2.0.0"
}
},
"@comunica/actor-query-operation-bgp-left-deep-smallest": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-left-deep-smallest/-/actor-query-operation-bgp-left-deep-smallest-1.4.0.tgz",
"integrity": "sha512-86qSumSxOTJGTENkE6OCnlJn7WRIwoXXyPf21IKYzdx2DihCmB/qkohHOnVJ4pVIHJ1xad+WNbg5QyeiLyXivQ==",
"requires": {
"asynciterator-promiseproxy": "^2.0.0",
"lodash.uniq": "^4.5.0",
"rdf-string": "^1.1.1",
"rdf-terms": "^1.1.0"
}
},
"@comunica/actor-query-operation-bgp-single": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-single/-/actor-query-operation-bgp-single-1.4.0.tgz",
"integrity": "sha512-YCx+TpPMQbZ+xCdVKWusEp6VGFZ3wbtUWrSnm1F3klNqIMSjSzp8U4chkW5tDc3eml9ehbuzJIsYk2f4lFGEWw=="
},
"@comunica/actor-query-operation-construct": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-1.4.0.tgz",
"integrity": "sha512-n+j5ytfx/uFECInVEki+dmfV7BHGeGD5L5m5QUJKIl7FZy4iR+JbLdbAeomQ+TvHMv2k7M5QtYpbTy3OwI/7Rw==",
"requires": {
"@rdfjs/data-model": "^1.1.0",
"asynciterator": "^2.0.0",
"rdf-terms": "^1.1.0"
}
},
"@comunica/actor-query-operation-describe-subject": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-1.4.0.tgz",
"integrity": "sha512-ewl2bqjp5Hr+lZOBsWJUfAdb/v484C4m7HQSkDivaEfsD6zBDp5LsMY8a7uhLvwJ1D5cIlaSuQDGBsNHOrDjxw==",
"requires": {
"@comunica/actor-query-operation-union": "^1.4.0",
"@rdfjs/data-model": "^1.1.0",
"asynciterator-union": "^2.1.1"
}
},
"@comunica/actor-query-operation-distinct-hash": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-1.4.0.tgz",
"integrity": "sha512-1qp9rO8XseD4a4jAlyxAW0IXyDt/84GnBfh9iJvEPdlqtYhtS6YH/qHdHRbGCwMOzSPitE6jLI/p3gbXEiQtcA==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.4.0",
"json-stable-stringify": "^1.0.1"
}
},
"@comunica/actor-query-operation-filter-direct": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-direct/-/actor-query-operation-filter-direct-1.4.0.tgz",
"integrity": "sha512-mVvebUO1Vz/uzVZ+r8amATXxeC3Xpv+34BWexVCIvY123pL5yvJGIF8ZDb9xQpkA8Hr91BWaxGFbyjbQPrvpbQ==",
"requires": {
"rdf-string": "^1.1.1"
}
},
"@comunica/actor-query-operation-from-quad": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-1.4.0.tgz",
"integrity": "sha512-/DQScoh8qTbMsssY1q7eimg1/SHRuc0M1PGIY3R0q6uEzv63sO3Mkbc9tPmWfEJBFh++GH5z6QQzSHAz/L7vhw==",
"requires": {
"lodash.find": "^4.6.0",
"sparqlalgebrajs": "^1.1.0"
}
},
"@comunica/actor-query-operation-join": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-1.4.0.tgz",
"integrity": "sha512-THYLBcY9TccXUHRnibBoce0pM8MCNQnBUTY8Xv15ATqioVRSYVFgDPzhwLh4jcwNrrawoZDeaGJNFM6HfI1k4A=="
},
"@comunica/actor-query-operation-leftjoin-nestedloop": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-nestedloop/-/actor-query-operation-leftjoin-nestedloop-1.4.0.tgz",
"integrity": "sha512-cXuIRQ7T7CNEH8uW8ougFPowxGzdCXFFvv2kfHi0gME32nDBuh1DCD6s8bFVbx7hicPMm5I1eFN4r4/mZZHbcQ=="
},
"@comunica/actor-query-operation-minus": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-1.4.0.tgz",
"integrity": "sha512-C1g/VIBX2jFt+QEmGZjFWtowlIBbZOSJ+NCVcoDY4vrtOHB6fzMVt3dB6zt+C93VIs/V+crIrf7u8kf++uVXhw==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.4.0",
"asynciterator-promiseproxy": "^2.0.0"
}
},
"@comunica/actor-query-operation-orderby-direct": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-direct/-/actor-query-operation-orderby-direct-1.4.0.tgz",
"integrity": "sha512-F+fkK3xs1AECwzKCNdeIPq2XBTT59F36k3eWLHnI3K13FMhUDG2KhSWDBaW/wGYGH8MIwpHS26IVer7xhNQ1vw==",
"requires": {
"rdf-string": "^1.1.1"
}
},
"@comunica/actor-query-operation-path-alt": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-1.4.0.tgz",
"integrity": "sha512-qCkwHt5/ETV/hnpvhq+AUgtqY0mAEJ7DXrH55ilK+36A5PsHVRRj78Jahx7thoNimGe2229MT4Z73zHvkw4WaQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.0",
"asynciterator-union": "^2.1.1",
"lodash.uniq": "^4.5.0"
}
},
"@comunica/actor-query-operation-path-inv": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-1.4.0.tgz",
"integrity": "sha512-nfC3wS1z2PnOppB3tSj8BD5gP9o8p1zkDa+g5E6kZjOEZ8Mt0fxSP7AVGG45AowrprlTBQpMMgA9zOVetMCPfA==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.0"
}
},
"@comunica/actor-query-operation-path-link": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-1.4.0.tgz",
"integrity": "sha512-kyKTtgxXLebUCsh17Tl1qAOCRQxVa87Vroe6ygDNRmHgN8EAImgJhWzcLvE4pZG+7uO3ZokyEUqa1DmxfjyW/w==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.0"
}
},
"@comunica/actor-query-operation-path-nps": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-1.4.0.tgz",
"integrity": "sha512-u9InC3GW5KNgqM+2YAI17ZP1q37WPSTzkY0RtsfHPj4IGLxMWBbuoFeDHaPY7g0YEFVczRs5CUq6XrHs6ODz6g==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.0"
}
},
"@comunica/actor-query-operation-path-one-or-more": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-1.4.0.tgz",
"integrity": "sha512-9rQunWymnToTmCh5XZwXoQReEHt3DTo9vhoKR6USPe++AJZCDs1YEjieO+hDOZZpXfuSJSAgQgDCwep5Hf47yw==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.0",
"asynciterator": "^2.0.0",
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.2.0"
}
},
"@comunica/actor-query-operation-path-seq": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-1.4.0.tgz",
"integrity": "sha512-Y/amSw6knb4mJ/dmymVHiyPaXVXcfXwWCwUJp85K/eq8fEgd1wfsdZ9T0H8E3XrH1Bk8aFtf8pUL9IRsqT9ydA==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.0",
"rdf-string": "^1.2.0"
}
},
"@comunica/actor-query-operation-path-zero-or-more": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-1.4.0.tgz",
"integrity": "sha512-YdvDFKkgkVzX7QHvWxrDwlWPh4sk8vkuSZazS1mrxMOIrXu+NmJhTSp2U+98hgRP7WTpjTi68+uWQ9OT2Nf1cA==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.0",
"rdf-string": "^1.2.0"
}
},
"@comunica/actor-query-operation-path-zero-or-one": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-1.4.0.tgz",
"integrity": "sha512-2+2cMLRi/iD+zx/DZK+EVq/iJdHfe0grkVH6CS55DnEg90LrbWmz3ZNsdqZfX0i07q1543E6NIwsH33jcQE0OQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.0",
"asynciterator": "^2.0.0",
"rdf-string": "^1.2.0"
}
},
"@comunica/actor-query-operation-project": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-1.4.0.tgz",
"integrity": "sha512-vJz08bUitzJePT0Ainv3AofLny3oxh7hLPYMheskp4F2ri7M9D2ciV4d3dpTHd1NlnPaKCGuwHnKVwlWUa7Ptw==",
"requires": {
"rdf-string": "^1.1.1"
}
},
"@comunica/actor-query-operation-quadpattern": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-1.4.0.tgz",
"integrity": "sha512-QpACTxQiuThnBSRkvjO5Jpb1zccVhJWDnpQiLlrcp924s3wlu+A+Wy93c/kr3z9ISlUqk1REakTLhBw27Hd9bw==",
"requires": {
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.1.1",
"rdf-terms": "^1.1.0"
}
},
"@comunica/actor-query-operation-reduced-hash": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-1.4.0.tgz",
"integrity": "sha512-HgbA+H3ai3kVWtmXW2p3Fs9+/oXDfHybQRYmTAoD+LzhltH2tLshfiDpQehUV+ao2VE/2RErX9oUjOooxMjcEw==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.4.0",
"lru-cache": "^4.1.3"
}
},
"@comunica/actor-query-operation-service": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-1.4.0.tgz",
"integrity": "sha512-0hU/HYVInM8ahe6BuhnOkivK8FtFcTNrbbDH9hgItF+wRJT7C7KhgYCG9QLdtiw80r9nS7WbfHg6/O00LvrzEQ==",
"requires": {
"asynciterator": "^2.0.0"
}
},
"@comunica/actor-query-operation-slice": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-1.4.0.tgz",
"integrity": "sha512-nyFJ5JdTY2YTIR+w2zfxnNQR/tc0tyri7dAqYHCRY0WQORbKeq3bXc//6/4WaihtQKRO+7FtQq/s3ZRhBKkozw=="
},
"@comunica/actor-query-operation-sparql-endpoint": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-1.4.0.tgz",
"integrity": "sha512-Bucq7bSDNfu29KOq6mOAw7F1tO9M48KidCwIkqIqw50KFNZI6CjUcWwqIJk1WTCAFDH7v4UOSojJaqza7XSP2g==",
"requires": {
"arrayify-stream": "^1.0.0",
"asynciterator": "^2.0.0",
"fetch-sparql-endpoint": "^1.3.3",
"rdf-string": "^1.1.1",
"rdf-terms": "^1.1.0",
"sparqlalgebrajs": "^1.1.0"
}
},
"@comunica/actor-query-operation-union": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-1.4.0.tgz",
"integrity": "sha512-9KuQKkRqE3xR46Fp8rntxGUL3wQiGb8fPXC5afKIcn8Kklh+EW+hDiQ2oyQNWKZkoDbI9Kt5AddDA+llMdNc8w==",
"requires": {
"asynciterator-union": "^2.1.1",
"lodash.union": "^4.6.0"
}
},
"@comunica/actor-query-operation-values": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-1.4.0.tgz",
"integrity": "sha512-MBj6i2KwOO4OgSUxNDKq8fyerjSk58ZDMBSuUO+ZHAWqZqXoREzoMaqldHwFzFP92D40uOC4+QYPLlnzWXc+mQ==",
"requires": {
"asynciterator": "^2.0.0",
"rdf-string": "^1.1.1"
}
},
"@comunica/actor-rdf-dereference-http-parse": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-http-parse/-/actor-rdf-dereference-http-parse-1.4.0.tgz",
"integrity": "sha512-p5vaab7VZPQkY+/xj9uIs9GZlpsvx8LB8Wqy7ti+62P7xHHv9PXkTFKBvR8x6Hm7O9YezGGIIFZRTBSFDU4qsw==",
"requires": {
"node-web-streams": "^0.2.2"
}
},
"@comunica/actor-rdf-dereference-paged-next": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-paged-next/-/actor-rdf-dereference-paged-next-1.4.0.tgz",
"integrity": "sha512-C95jNLxApslLSk37YAkFEBLmN5U/EAIUXRLhuI//UDs98hfOWiPSV+jqshGhNS+zh6jSlqDrFi7Y1q5NOSW1JQ==",
"requires": {
"asynciterator": "^2.0.0",
"lru-cache": "^4.1.1"
}
},
"@comunica/actor-rdf-join-nestedloop": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-nestedloop/-/actor-rdf-join-nestedloop-1.4.0.tgz",
"integrity": "sha512-AFH/hNdoRVyxuyMlgxgAIIjlnUSR4zN7l1Gnx+/k0uDlNCEnMOAJ1M8pMubVyqHc5TENMWAniDLj5xFAdRfrIA==",
"requires": {
"asyncjoin": "^0.3.0"
}
},
"@comunica/actor-rdf-metadata-extract-hydra-controls": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-controls/-/actor-rdf-metadata-extract-hydra-controls-1.4.0.tgz",
"integrity": "sha512-haLNX+21KyrTTioMDrbDhG6SMfyUUYXLXoE8oZUwiGJOSzkkv2vcLmyaLEr+mgmalQ+LVLV/9ozmoWQxpjwA7w==",
"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.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-count/-/actor-rdf-metadata-extract-hydra-count-1.4.0.tgz",
"integrity": "sha512-R1rvQBdzYApuikxdJj02rw+cAPzu9nXqJ8n+mTh7E8uXW1hFy9p+cDJBfTFOT4Ux/dNwxalTMz4y7WHdgRXlKQ=="
},
"@comunica/actor-rdf-metadata-primary-topic": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-primary-topic/-/actor-rdf-metadata-primary-topic-1.4.0.tgz",
"integrity": "sha512-yUdJBKwL53M1adz22y4gxGm2PtIudD2X1Jis9tfIrJV2p+qWLZUVmtpJYEmSvJjdoRoYe4LwGDZ209P2mUZTiQ=="
},
"@comunica/actor-rdf-metadata-triple-predicate": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-triple-predicate/-/actor-rdf-metadata-triple-predicate-1.4.0.tgz",
"integrity": "sha512-myi1b1Rz/5T22CBbklybJdqFTwUH4UJmPCP+YSUQ3JgJLnvBocRQW2PSNe7CgivWUyM/VGqoXD22SlaVaeIRZw=="
},
"@comunica/actor-rdf-parse-jsonld": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-jsonld/-/actor-rdf-parse-jsonld-1.4.0.tgz",
"integrity": "sha512-WUPYlAf8iZ3t/eod9MeH3VtMMCrbzNYVvSbU1zOhGsA58jdJ8XXRccpA80QErMC8SSxRAB894gnHx9Wtd1k7nA==",
"requires": {
"@rdfjs/data-model": "^1.1.0",
"jsonld": "^1.0.2",
"rdf-terms": "^1.2.0",
"stream-to-string": "^1.1.0"
}
},
"@comunica/actor-rdf-parse-n3": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-n3/-/actor-rdf-parse-n3-1.4.0.tgz",
"integrity": "sha512-povEbKl5RMRJty54bokJGlVwNeCYwJ7uHSKVUDMiAnjRBEVt8OcrJvOWbUjlfMXihXqxc9gDRMFATg0KRzPAoQ==",
"requires": {
"n3": "1.0.0-beta.2"
}
},
"@comunica/actor-rdf-parse-rdfxml": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-rdfxml/-/actor-rdf-parse-rdfxml-1.4.0.tgz",
"integrity": "sha512-GGntmYYFSDJMRddEhUycvJpbWZtyn9k9H1azZQkegX90Pu64/957pUKLo4gOT9HTbLphYBW6Ukd93H8aC95pdA==",
"requires": {
"rdfxml-streaming-parser": "^1.0.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-federated": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-federated/-/actor-rdf-resolve-quad-pattern-federated-1.4.0.tgz",
"integrity": "sha512-w5uM84zgxRCKVyCIzi+41xJQcjdjAFcbrkz9ucLRMhjst3l7XZXeeRqKUsiHwRqH/TNX7pGkb66u8EXTO2I4tw==",
"requires": {
"@rdfjs/data-model": "^1.1.0",
"asynciterator": "^2.0.0",
"asynciterator-promiseproxy": "^2.0.0",
"asynciterator-union": "^2.1.1",
"lodash.omit": "^4.5.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-file": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-file/-/actor-rdf-resolve-quad-pattern-file-1.4.0.tgz",
"integrity": "sha512-QjTmCSckYomRKnsiNEkAZhVLyTEMsUet9ohZD5fUogBlLYfgIAsutM4HRZt1+UpWy/BT17SCDvOb76+e59Ko9Q==",
"requires": {
"asynciterator": "^2.0.0",
"n3": "1.0.0-beta.2",
"rdf-string": "^1.1.1"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-qpf": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-qpf/-/actor-rdf-resolve-quad-pattern-qpf-1.4.0.tgz",
"integrity": "sha512-IIjl6aua/LC/o2HQA8MJuYdmQW31WFIVM/KBHxF5AsZctEcG/olGvFLhnylTGyITaDJQZ/lggQccmxizXrMFZQ==",
"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-rdfjs-source": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source/-/actor-rdf-resolve-quad-pattern-rdfjs-source-1.4.0.tgz",
"integrity": "sha512-t/fE6VZ/DYu+Ky0cCXZHm+td/JrzS7GdYIxndeL0DWMZsAsdrMn0UogIeMP/dHWYI5JdV5k9kxSgg7XMRQxchg=="
},
"@comunica/actor-rdf-resolve-quad-pattern-sparql-json": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-sparql-json/-/actor-rdf-resolve-quad-pattern-sparql-json-1.4.0.tgz",
"integrity": "sha512-ogwZ0Lm9pRXJo+v+IPE9j6GFIbdYDsWMfkHkEevW9M86tjqiiPqxQpG4CZ1Bii666S49EV5ysHhEyQ6umzFSdA==",
"requires": {
"@rdfjs/data-model": "^1.1.0",
"asynciterator": "^2.0.0",
"asynciterator-promiseproxy": "^2.0.0",
"node-web-streams": "^0.2.2",
"rdf-terms": "^1.1.0",
"sparqlalgebrajs": "^1.1.0",
"sparqljson-parse": "^1.4.0"
}
},
"@comunica/actor-rdf-serialize-jsonld": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-jsonld/-/actor-rdf-serialize-jsonld-1.4.0.tgz",
"integrity": "sha512-6peJZEldsxv1m52iPOb7bVu/4AqCNhu2+Amn7Cq7sJJDBoKwCncPC7fmh8Nvs+mEauO8ohvWriCsYzpZ8aCtgw==",
"requires": {
"arrayify-stream": "^1.0.0",
"jsonld": "^1.0.2",
"streamify-array": "^1.0.0"
}
},
"@comunica/actor-rdf-serialize-n3": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-n3/-/actor-rdf-serialize-n3-1.4.0.tgz",
"integrity": "sha512-JVMyD6wKKqmHaq6AeXaBzIvPV+x0xMpN7bdN8L8lm+Za1eKba/pdZMpH+NVDTmaSe4wVNJFl9ieXlmZhsg/5ow==",
"requires": {
"n3": "1.0.0-beta.2",
"rdf-string": "^1.1.1"
}
},
"@comunica/actor-rdf-source-identifier-file-content-type": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-source-identifier-file-content-type/-/actor-rdf-source-identifier-file-content-type-1.4.0.tgz",
"integrity": "sha512-OCMsb2iN6qtHHEXoovO50g1hWNQID9KFGa8a2/dHl74nWb+gDIgS71mEtj23kCJDkak3VQw9Hz2Z0T7221LmkA=="
},
"@comunica/actor-rdf-source-identifier-hypermedia-qpf": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-source-identifier-hypermedia-qpf/-/actor-rdf-source-identifier-hypermedia-qpf-1.4.0.tgz",
"integrity": "sha512-0ta8K55Fpmo40pHWZzSnZmboaCQRxMhPTS02TfbUdRft8WZARvO0FqtEX/sKCuJdshJIUh4Ao8l8bIXSM24yWA==",
"requires": {
"stream-to-string": "^1.1.0"
}
},
"@comunica/actor-rdf-source-identifier-sparql": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-source-identifier-sparql/-/actor-rdf-source-identifier-sparql-1.4.0.tgz",
"integrity": "sha512-3KTZrfGsmZI+hGOzzHRohuboKVAXkOGgVO6rgKW2XV9mtTeOrfxD4mGH9A/OD6cdsTJDtVk//UsuUkhEnyc/cg=="
},
"@comunica/actor-sparql-parse-algebra": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-algebra/-/actor-sparql-parse-algebra-1.4.0.tgz",
"integrity": "sha512-YftHCOs7m44V8LC40B6sM6oYsrN2UdrciXwybwyaHPbqHFQiTrjV/kzqde9a0BNOqNJ/FdW1eBkogc2F98m10w==",
"requires": {
"sparqlalgebrajs": "^1.1.0"
}
},
"@comunica/actor-sparql-parse-graphql": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-graphql/-/actor-sparql-parse-graphql-1.4.0.tgz",
"integrity": "sha512-w6HRKFKe7bvGhpjjaSPpdRNeTa0Lidg+gsx768dmJaXj5tuoA3fbR7QK/PQBXtzKeiHZ4bGuCdIamRVza2WGqw==",
"requires": {
"graphql-to-sparql": "^1.3.2"
}
},
"@comunica/actor-sparql-serialize-json": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-json/-/actor-sparql-serialize-json-1.4.0.tgz",
"integrity": "sha512-j0ZXPU/s6SrDDojxHIZtCr+h59Kgf7ULxupNLIpq2NEe6Dp/MeHXBzl/0ZH+Cb5vc6iH2jTFnHqw4rfjUc97qg==",
"requires": {
"rdf-string": "^1.1.1"
}
},
"@comunica/actor-sparql-serialize-rdf": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-rdf/-/actor-sparql-serialize-rdf-1.4.0.tgz",
"integrity": "sha512-ejaIuseBvSREA5+Pv/bzIuVj/hNorjRoG26f5vvx5Dp5ZebTIEyKxPwui0cYZUwSJRXN2d0EXgR7AsxlCqbp4Q=="
},
"@comunica/actor-sparql-serialize-simple": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-simple/-/actor-sparql-serialize-simple-1.4.0.tgz",
"integrity": "sha512-xGNMKwJH4uzIzZQE6jNCBvrP6PBYwwW0YShVe/m7wkSEWKJkCbhpdbSSyzphxDj5UsIZ/vse8m0Io3gFvFq/4Q=="
},
"@comunica/actor-sparql-serialize-sparql-json": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-json/-/actor-sparql-serialize-sparql-json-1.4.0.tgz",
"integrity": "sha512-WHhwjThOQixQ0mdV6mgMmGWeH13GFJCE0JE3OtLEwfYsE6ghCk42QXzUd9KYg6W4KVv1GVZ5GKelVMBug7JAoA=="
},
"@comunica/actor-sparql-serialize-sparql-xml": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-xml/-/actor-sparql-serialize-sparql-xml-1.4.0.tgz",
"integrity": "sha512-5Ci916IxI2j6PeL0ToBmRHs9WRRa4vx1yRVEb0Y+on0nnIPcL86V7D+aDL2uY7EKdXIpBywwZseAT8zbDBLL1Q==",
"requires": {
"xml": "^1.0.1"
}
},
"@comunica/actor-sparql-serialize-stats": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-stats/-/actor-sparql-serialize-stats-1.4.0.tgz",
"integrity": "sha512-SoUtXz7rTNoMoMxK6dQv6JvER3yIF8agEh5XQFjbpfA31jnJCmZBEqNlJYaym2aaudWowsXfhc7/OiDfQJKdXA=="
},
"@comunica/actor-sparql-serialize-table": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-table/-/actor-sparql-serialize-table-1.4.0.tgz",
"integrity": "sha512-LEaO2i+z3yYiWcUSSdOuqVr18kSzEMxRZJf0NCr5PSrLOLkTdXJHkRL9Jd8yjjyaJk7qC2NrhGRTdOv2daFllA==",
"requires": {
"rdf-terms": "^1.1.0"
}
},
"@comunica/actor-sparql-serialize-tree": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-tree/-/actor-sparql-serialize-tree-1.4.0.tgz",
"integrity": "sha512-Uk0wG+6c9bVmRPTw+eRsJZnegQOTj7onaaHSpdO2/+j2I4Jdi0m9W6j11k9GTrjpkqUktWxZADoCZ6HspGdNhA==",
"requires": {
"sparqljson-to-tree": "^1.2.3"
}
},
"@comunica/bus-context-preprocess": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-context-preprocess/-/bus-context-preprocess-1.4.0.tgz",
"integrity": "sha512-5fNGyLXhCZSD6xf7V5AUWWGu3Vhj1Ga/TNZu6nCCLhFlxWzQvqnCBOGlAiVrWqLlzMp4HSJbtwLo6FUz6Zkzwg=="
},
"@comunica/bus-http": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-http/-/bus-http-1.4.0.tgz",
"integrity": "sha512-paeLBt/4ArNvj/348cuUm1VYG494WcQhiXTTD69GD6ienxizAbisYSWhmSDNOPtS/atLBcifx8uoyREOLrs0sw=="
},
"@comunica/bus-init": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-init/-/bus-init-1.4.0.tgz",
"integrity": "sha512-NPjWh6x5w+EqMVC7Wy5hj2pRLEsRuxy+9IThBRrQhJCnrWxA6+iz06N+7Kcyfp5796ueCM60i5j4DgcCIQDk5Q=="
},
"@comunica/bus-query-operation": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-query-operation/-/bus-query-operation-1.4.0.tgz",
"integrity": "sha512-W+27SQ7FCk8zCNVODnTBBo4aV5HCUCGGh/Mw6pfQJKH2MJkjpNPxMK39C6m+a6Us/SAV2fDZMuWwK9j6svzdjA==",
"requires": {
"asynciterator": "^2.0.0",
"immutable": "^3.8.2"
}
},
"@comunica/bus-rdf-dereference": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-dereference/-/bus-rdf-dereference-1.4.0.tgz",
"integrity": "sha512-JnpiqJNuENjmDW3PWM86un/rzAJrHHXZfyrsz6gUnOR7UJolGgZgEm9vLfRBYrz4sF7ezrtl0UPF+VvJ7xdBeg=="
},
"@comunica/bus-rdf-dereference-paged": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-dereference-paged/-/bus-rdf-dereference-paged-1.4.0.tgz",
"integrity": "sha512-tsDujGS8bKCyJBG96hSOyYaePx5x5IIdDRGCQHgSEoUDgwe0QaksSF5g2S1odJhqyLZ8F/YDhf4qIwZ/CJWWog=="
},
"@comunica/bus-rdf-join": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-join/-/bus-rdf-join-1.4.0.tgz",
"integrity": "sha512-X+LRBEuP6MZnyuFtaScimhed/jhTokAi+WCoZXWX4K0Z85lpCfxfJoOyFB2OvhxfpRkGr6TpgmXXqm31sy3Eog==",
"requires": {
"lodash.intersection": "^4.4.0",
"lodash.union": "^4.6.0"
}
},
"@comunica/bus-rdf-metadata": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-metadata/-/bus-rdf-metadata-1.4.0.tgz",
"integrity": "sha512-kbfS/H7QUIpvJyJWUnT5dgMZLIbNlCICeybnRoSbNW2kLKlrwWww/pYKigkgn22J4t32Wf+WYuIjX8X/K5sG8Q=="
},
"@comunica/bus-rdf-metadata-extract": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-metadata-extract/-/bus-rdf-metadata-extract-1.4.0.tgz",
"integrity": "sha512-dzXE6LTwpSFlBFtagHRX7+xLs6DoaDi74BTw5YCH3tjfWJUirRNFPXq1L3mwoEifuBSrsMKK6uQKw7fn5YB+0A=="
},
"@comunica/bus-rdf-parse": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-parse/-/bus-rdf-parse-1.4.0.tgz",
"integrity": "sha512-kbE5UuXyVZjSrfo34CJLeGx1P21ck5Tm5BlFixbBO/sTCmU7Zrnb3aSCyzu2mVZP0V1BShGuy4Cmbj3+jffRZw==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.4.0"
}
},
"@comunica/bus-rdf-resolve-quad-pattern": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-resolve-quad-pattern/-/bus-rdf-resolve-quad-pattern-1.4.0.tgz",
"integrity": "sha512-U8ogFOqT1aXKq7QBrG+XoQbv8FWzCE5RslDJorxQ3t7WJr6Ry6gymlujdKJ9fzu5pEG26FinFiIKB2zQFD2uOA==",
"requires": {
"asynciterator": "^2.0.0",
"asyncreiterable": "^1.1.0"
}
},
"@comunica/bus-rdf-serialize": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-serialize/-/bus-rdf-serialize-1.4.0.tgz",
"integrity": "sha512-eEkdnh5clCI+AC8aFdRTOASUCGf0o1RryqRZfOT6hHWGGAUeTt+K1c3QSaltBPsubqj3v6NBMWrCj1/7Nhozfg==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.4.0"
}
},
"@comunica/bus-rdf-source-identifier": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-source-identifier/-/bus-rdf-source-identifier-1.4.0.tgz",
"integrity": "sha512-BNBlCPX55G3F1Bd1+U536t7apEKCMpGcw+fgxKHvNXxrO5FdmkGr4933eVEeAJ5eR1PO5T7mEFMmTkmLAFRpuQ=="
},
"@comunica/bus-sparql-parse": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-sparql-parse/-/bus-sparql-parse-1.4.0.tgz",
"integrity": "sha512-IzyTYlf6FkkpTsvQWzu8e8WDGVgjfI90V8YWH+DEgn1PZsSIdD9u9wQBlIoWeZTA3w2CqbNwTnLtuDErxew6hA=="
},
"@comunica/bus-sparql-serialize": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-sparql-serialize/-/bus-sparql-serialize-1.4.0.tgz",
"integrity": "sha512-DSZDmDSua9Rb262DvU5esgvK+7VbSsqvIr2jT1QcwyWldUwcXCelq1H2aQXQelZM4ec4E7/tMu16k+cHh0zxbw==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.4.0"
}
},
"@comunica/core": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-1.4.0.tgz",
"integrity": "sha512-P5lyRHiHbNkpUYsL4q/FOYZiTE+f01Yikz2bJ8UCw8Nch+Y5C93ujOz2/iMmXY8ywn83q8bcLSvDtY1LLfzCIw==",
"requires": {
"immutable": "^3.8.2",
"lodash.assign": "^4.2.0"
}
},
"@comunica/logger-pretty": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/logger-pretty/-/logger-pretty-1.4.0.tgz",
"integrity": "sha512-8y7clI4JlaBMaD6WZGmLAhm4ms+Bq5mBnxzAXE6zjcU5yYAlRbBtxn9TbxJ1TqmYqPaS3tfI3m5VOX5fwOz0TQ=="
},
"@comunica/logger-void": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/logger-void/-/logger-void-1.4.0.tgz",
"integrity": "sha512-D1KWm0oKVIlUNBuwkQt4FOUUMoc6E8Qgd742hDI3GXDxW/sxgn59tPoqg1gdc5fE2/dJ0vPa1tnu+js+kYwQEQ=="
},
"@comunica/mediator-combine-pipeline": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/mediator-combine-pipeline/-/mediator-combine-pipeline-1.4.0.tgz",
"integrity": "sha512-JScniGlCDFE05QhZ0IuY14W3qe6B0P1ucrbLzM/FsJVuWAfqADvA8MP8kB8BCIjunwnLXwxXhiOacSt6aIv9Vg==",
"requires": {
"lodash.map": "^4.6.0"
}
},
"@comunica/mediator-combine-union": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/mediator-combine-union/-/mediator-combine-union-1.4.0.tgz",
"integrity": "sha512-kQKV/a7zjJ8chDCUo7e+1zn0EHb2udwKvK7iIJ2umSPg53wRs2BTj8JU0e464ZEz0uPI1VsDhCvCa/MCGMyH3w==",
"requires": {
"lodash.defaults": "^4.2.0",
"lodash.map": "^4.6.0"
}
},
"@comunica/mediator-number": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@comunica/mediator-number/-/mediator-number-1.4.1.tgz",
"integrity": "sha512-w1SbVhs/HTqBwYQnatk3JsgriUYtRptaxz3DJOTX1R01Kfje+lWdPkRxm+AhbO35hD3Q3SfUkTOLoOsiVVIjKQ==",
"requires": {
"lodash.map": "^4.6.0"
}
},
"@comunica/mediator-race": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/mediator-race/-/mediator-race-1.4.0.tgz",
"integrity": "sha512-C6ZuPNXJnwPqz61fk1c4dwvXZANkqN2sPC0ifgUMhlJWr/QvJkE8aI6/1EVZFHx5BQ5zOn54kYEum/DgJMCtkA=="
},
"@comunica/runner": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/runner/-/runner-1.4.0.tgz",
"integrity": "sha512-oEnm1jGxhcqytxcIOJLLsfrrP/5gyeV0e2p+a8BH0ktzpogSydjuih7JxF4ztt8tA7KlpWis+ohKOQNFz/aG+w==",
"requires": {
"componentsjs": "^3.1.0",
"lodash.assign": "^4.2.0",
"lodash.defaults": "^4.2.0"
}
},
"@comunica/runner-cli": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/runner-cli/-/runner-cli-1.4.0.tgz",
"integrity": "sha512-eX9SF8pdCE7VbT3QB1HZAh+y7tuUDZE41Vwx/eGGKiutbgtfAAGS8Us9NNXbXr0ATUUMPk29FVTfNcPKTu0lUQ==",
"requires": {
"@comunica/runner": "^1.4.0"
}
},
"@rdfjs/data-model": {
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/@rdfjs/data-model/-/data-model-1.1.0.tgz",
"integrity": "sha512-vK7TlSFBJQihqMoMgXK/VtcRV+rCQSOLB9VGAfv4Pr6BzUbBcR0CeM/RpkD4bHGX3816eaaURH1CNgN7togWdw=="
},
"@solid/jose": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/@solid/jose/-/jose-0.1.8.tgz",
"integrity": "sha512-JuP3z2Yuyolv7P0w7MPhjWltWbVzV0vHBFw+ZhxG2v2WOPdbGT+CvUMhCMdMG/csavceV+IpwMXMybMd8nC4sA==",
"requires": {
"@trust/json-document": "^0.1.4",
"@trust/webcrypto": "^0.9.2",
"base64url": "^3.0.0",
"text-encoding": "^0.6.4"
}
},
"@solid/oidc-rp": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/@solid/oidc-rp/-/oidc-rp-0.8.0.tgz",
"integrity": "sha512-AAHd+J1IiASDmqDQkU8ou8Gxmc7+VfpcgGFW1rCul/obCsNzSemwvEslxjstK7Yy725HtucoAbZN2BGKujeQAg==",
"requires": {
"@solid/jose": "0.1.8",
"@trust/json-document": "^0.1.4",
"@trust/webcrypto": "0.9.2",
"base64url": "^3.0.0",
"node-fetch": "^2.1.2",
"standard-http-error": "^2.0.1",
"text-encoding": "^0.6.4",
"whatwg-url": "^6.4.1"
},
"dependencies": {
"node-fetch": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.2.0.tgz",
"integrity": "sha512-OayFWziIxiHY8bCUyLX6sTpDH8Jsbp4FfYd1j1f7vZyfgkcOnAyM4oQR16f8a0s7Gl/viMGRey8eScYk4V4EZA=="
}
}
},
"@trust/json-document": {
"version": "0.1.4",
"resolved": "https://registry.npmjs.org/@trust/json-document/-/json-document-0.1.4.tgz",
"integrity": "sha1-sgI7HhRbp2hb0fNux7aRKJQAc+k="
},
"@trust/keyto": {
"version": "0.3.4",
"resolved": "https://registry.npmjs.org/@trust/keyto/-/keyto-0.3.4.tgz",
"integrity": "sha512-OAqKvuSEPIu2zCnIHzBthvGnV8nKmpv7cBlRMngLzJZzZI9CanyuSfnEI1xC4sH4TwqA0XJR7Mb0oX4bwymXIw==",
"requires": {
"asn1.js": "^4.9.1",
"base64url": "^3.0.0",
"elliptic": "^6.4.0"
}
},
"@trust/webcrypto": {
"version": "0.9.2",
"resolved": "https://registry.npmjs.org/@trust/webcrypto/-/webcrypto-0.9.2.tgz",
"integrity": "sha512-5iMAVcGYKhqLJGjefB1nzuQSqUJTru0nG4CytpBT/GGp1Piz/MVnj2jORdYf4JBYzggCIa8WZUr2rchP2Ngn/w==",
"requires": {
"@trust/keyto": "^0.3.4",
"base64url": "^3.0.0",
"elliptic": "^6.4.0",
"node-rsa": "^0.4.0",
"text-encoding": "^0.6.1"
}
},
"@webassemblyjs/ast": {
"version": "1.7.8",
"resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.7.8.tgz",
"integrity": "sha512-dOrtdtEyB8sInpl75yLPNksY4sRl0j/+t6aHyB/YA+ab9hV3Fo7FmG12FHzP+2MvWVAJtDb+6eXR5EZbZJ+uVg==",
"dev": true,
"requires": {
"@webassemblyjs/helper-module-context": "1.7.8",
"@webassemblyjs/helper-wasm-bytecode": "1.7.8",
"@webassemblyjs/wast-parser": "1.7.8"
}
},
"@webassemblyjs/floating-point-hex-parser": {
"version": "1.7.8",
"resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.7.8.tgz",
"integrity": "sha512-kn2zNKGsbql5i56VAgRYkpG+VazqHhQQZQycT2uXAazrAEDs23gy+Odkh5VblybjnwX2/BITkDtNmSO76hdIvQ==",
"dev": true
},
"@webassemblyjs/helper-api-error": {
"version": "1.7.8",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.7.8.tgz",
"integrity": "sha512-xUwxDXsd1dUKArJEP5wWM5zxgCSwZApSOJyP1XO7M8rNUChUDblcLQ4FpzTpWG2YeylMwMl1MlP5Ztryiz1x4g==",
"dev": true
},
"@webassemblyjs/helper-buffer": {
"version": "1.7.8",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.7.8.tgz",
"integrity": "sha512-WXiIMnuvuwlhWvVOm8xEXU9DnHaa3AgAU0ZPfvY8vO1cSsmYb2WbGbHnMLgs43vXnA7XAob9b56zuZaMkxpCBg==",
"dev": true
},
"@webassemblyjs/helper-code-frame": {
"version": "1.7.8",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.7.8.tgz",
"integrity": "sha512-TLQxyD9qGOIdX5LPQOPo0Ernd88U5rHkFb8WAjeMIeA0sPjCHeVPaGqUGGIXjUcblUkjuDAc07bruCcNHUrHDA==",
"dev": true,
"requires": {
"@webassemblyjs/wast-printer": "1.7.8"
}
},
"@webassemblyjs/helper-fsm": {
"version": "1.7.8",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.7.8.tgz",
"integrity": "sha512-TjK0CnD8hAPkV5mbSp5aWl6SO1+H3WFcjWtixWoy8EMA99YnNzYhpc/WSYWhf7yrhpzkq5tZB0tvLK3Svr3IXA==",
"dev": true
},
"@webassemblyjs/helper-module-context": {
"version": "1.7.8",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.7.8.tgz",
"integrity": "sha512-uCutAKR7Nm0VsFixcvnB4HhAyHouNbj0Dx1p7eRjFjXGGZ+N7ftTaG1ZbWCasAEbtwGj54LP8+lkBZdTCPmLGg==",
"dev": true
},
"@webassemblyjs/helper-wasm-bytecode": {
"version": "1.7.8",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.7.8.tgz",
"integrity": "sha512-AdCCE3BMW6V34WYaKUmPgVHa88t2Z14P4/0LjLwuGkI0X6pf7nzp0CehzVVk51cKm2ymVXjl9dCG+gR1yhITIQ==",
"dev": true
},
"@webassemblyjs/helper-wasm-section": {
"version": "1.7.8",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.7.8.tgz",
"integrity": "sha512-BkBhYQuzyl4hgTGOKo87Vdw6f9nj8HhI7WYpI0MCC5qFa5ahrAPOGgyETVdnRbv+Rjukl9MxxfDmVcVC435lDg==",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.7.8",