This repository was archived by the owner on Dec 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
6157 lines (6157 loc) · 238 KB
/
Copy pathpackage-lock.json
File metadata and controls
6157 lines (6157 loc) · 238 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": "web-sdk",
"version": "0.0.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/code-frame": {
"version": "7.5.5",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz",
"integrity": "sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==",
"dev": true,
"requires": {
"@babel/highlight": "^7.0.0"
}
},
"@babel/highlight": {
"version": "7.5.0",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz",
"integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==",
"dev": true,
"requires": {
"chalk": "^2.0.0",
"esutils": "^2.0.2",
"js-tokens": "^4.0.0"
},
"dependencies": {
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
"dev": true
},
"supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"requires": {
"has-flag": "^3.0.0"
}
}
}
},
"@comunica/actor-abstract-bindings-hash": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.18.1.tgz",
"integrity": "sha512-MlbUzTc05NUBaKqD7WzAusARPRWiAjyHaBiXKE3YQT0QOCdmCvcDQ26lvyXSJiQHb+tnHfMxDclC1Id3QC3nJQ==",
"dev": true,
"requires": {
"canonicalize": "^1.0.1",
"hash.js": "^1.1.7",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-abstract-mediatyped": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.18.1.tgz",
"integrity": "sha512-pjAf0agOpADEVBKp11XhFGH33FML4LTxO08JJmr6Qf6FlbMAhU3KFBrK34nYZ/5QNdhZwE2i8eFmjNC/2CbOKA==",
"dev": true
},
"@comunica/actor-abstract-path": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.18.1.tgz",
"integrity": "sha512-WGRRvpdkGFytDZUdLZrd/r81migly3OE+qcFzFmuk7Qucqr1a7Kq/WbcejqtdSgnvCfBGQTug0gpDW9bf8q6qQ==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-http-memento": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.18.1.tgz",
"integrity": "sha512-QfhTsenZj4No6BfGKNe+gjA07wtLcTKLua8MaaprPxK6aN/xwdodOyz0Fj/bTZ1On4ixsozbFKNPGFMaB9vNVQ==",
"dev": true,
"requires": {
"@types/parse-link-header": "^1.0.0",
"cross-fetch": "^3.0.5",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-native": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.18.1.tgz",
"integrity": "sha512-nQ7dlB3GkP46h28XVyOi43Q4fuc1pUaYWFz6YQeTOgyJMnm/fgNvu9ECsFdG4rYVo3377VVxpvCylGx936S+wQ==",
"dev": true,
"requires": {
"@types/parse-link-header": "^1.0.0",
"cross-fetch": "^3.0.5",
"follow-redirects": "^1.5.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-proxy": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-1.18.1.tgz",
"integrity": "sha512-waZ8XeXA+A734fIqx8K0MW+9R3Meb+CyRzAKsVf9OQxDlRoCSD3jovpoLMz9L3Cc+4Qb4RuTn/ddw1vFy1pW0Q==",
"dev": true
},
"@comunica/actor-init-sparql": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.18.1.tgz",
"integrity": "sha512-5MYRw4/bgXxo9WKw6xlbUBHMjyNAEyaq9XT2O+WlkX67vORqzC/HE5PFdr65Qg9nSdSby6hspnsu6D2xJ1aHuQ==",
"dev": true,
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.18.1",
"@comunica/actor-abstract-mediatyped": "^1.18.1",
"@comunica/actor-http-memento": "^1.18.1",
"@comunica/actor-http-native": "^1.18.1",
"@comunica/actor-http-proxy": "^1.18.1",
"@comunica/actor-optimize-query-operation-join-bgp": "^1.18.1",
"@comunica/actor-query-operation-ask": "^1.18.1",
"@comunica/actor-query-operation-bgp-empty": "^1.18.1",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.18.1",
"@comunica/actor-query-operation-bgp-single": "^1.18.1",
"@comunica/actor-query-operation-construct": "^1.18.1",
"@comunica/actor-query-operation-describe-subject": "^1.18.1",
"@comunica/actor-query-operation-distinct-hash": "^1.18.1",
"@comunica/actor-query-operation-extend": "^1.18.1",
"@comunica/actor-query-operation-filter-sparqlee": "^1.18.1",
"@comunica/actor-query-operation-from-quad": "^1.18.1",
"@comunica/actor-query-operation-group": "^1.18.1",
"@comunica/actor-query-operation-join": "^1.18.1",
"@comunica/actor-query-operation-leftjoin-left-deep": "^1.18.1",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.18.1",
"@comunica/actor-query-operation-minus": "^1.18.1",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.18.1",
"@comunica/actor-query-operation-path-alt": "^1.18.1",
"@comunica/actor-query-operation-path-inv": "^1.18.1",
"@comunica/actor-query-operation-path-link": "^1.18.1",
"@comunica/actor-query-operation-path-nps": "^1.18.1",
"@comunica/actor-query-operation-path-one-or-more": "^1.18.1",
"@comunica/actor-query-operation-path-seq": "^1.18.1",
"@comunica/actor-query-operation-path-zero-or-more": "^1.18.1",
"@comunica/actor-query-operation-path-zero-or-one": "^1.18.1",
"@comunica/actor-query-operation-project": "^1.18.1",
"@comunica/actor-query-operation-quadpattern": "^1.18.1",
"@comunica/actor-query-operation-reduced-hash": "^1.18.1",
"@comunica/actor-query-operation-service": "^1.18.1",
"@comunica/actor-query-operation-slice": "^1.18.1",
"@comunica/actor-query-operation-sparql-endpoint": "^1.18.1",
"@comunica/actor-query-operation-union": "^1.18.1",
"@comunica/actor-query-operation-values": "^1.18.1",
"@comunica/actor-rdf-dereference-http-parse": "^1.18.1",
"@comunica/actor-rdf-join-multi-smallest": "^1.18.1",
"@comunica/actor-rdf-join-nestedloop": "^1.18.1",
"@comunica/actor-rdf-join-symmetrichash": "^1.18.1",
"@comunica/actor-rdf-metadata-all": "^1.18.1",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.18.1",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.18.1",
"@comunica/actor-rdf-metadata-extract-sparql-service": "^1.18.1",
"@comunica/actor-rdf-metadata-primary-topic": "^1.18.1",
"@comunica/actor-rdf-parse-html": "^1.18.1",
"@comunica/actor-rdf-parse-html-microdata": "^1.18.1",
"@comunica/actor-rdf-parse-html-rdfa": "^1.18.1",
"@comunica/actor-rdf-parse-html-script": "^1.18.1",
"@comunica/actor-rdf-parse-jsonld": "^1.18.1",
"@comunica/actor-rdf-parse-n3": "^1.18.1",
"@comunica/actor-rdf-parse-rdfxml": "^1.18.1",
"@comunica/actor-rdf-parse-xml-rdfa": "^1.18.1",
"@comunica/actor-rdf-resolve-hypermedia-links-next": "^1.18.1",
"@comunica/actor-rdf-resolve-hypermedia-none": "^1.18.1",
"@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.18.1",
"@comunica/actor-rdf-resolve-hypermedia-sparql": "^1.18.1",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.18.1",
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.18.1",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.18.1",
"@comunica/actor-rdf-serialize-jsonld": "^1.18.1",
"@comunica/actor-rdf-serialize-n3": "^1.18.1",
"@comunica/actor-sparql-parse-algebra": "^1.18.1",
"@comunica/actor-sparql-parse-graphql": "^1.18.1",
"@comunica/actor-sparql-serialize-json": "^1.18.1",
"@comunica/actor-sparql-serialize-rdf": "^1.18.1",
"@comunica/actor-sparql-serialize-simple": "^1.18.1",
"@comunica/actor-sparql-serialize-sparql-csv": "^1.18.1",
"@comunica/actor-sparql-serialize-sparql-json": "^1.18.1",
"@comunica/actor-sparql-serialize-sparql-tsv": "^1.18.1",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.18.1",
"@comunica/actor-sparql-serialize-stats": "^1.18.1",
"@comunica/actor-sparql-serialize-table": "^1.18.1",
"@comunica/actor-sparql-serialize-tree": "^1.18.1",
"@comunica/bus-context-preprocess": "^1.18.1",
"@comunica/bus-http": "^1.18.1",
"@comunica/bus-http-invalidate": "^1.18.1",
"@comunica/bus-init": "^1.18.1",
"@comunica/bus-optimize-query-operation": "^1.18.1",
"@comunica/bus-query-operation": "^1.18.1",
"@comunica/bus-rdf-dereference": "^1.18.1",
"@comunica/bus-rdf-dereference-paged": "^1.18.1",
"@comunica/bus-rdf-join": "^1.18.1",
"@comunica/bus-rdf-metadata": "^1.18.1",
"@comunica/bus-rdf-metadata-extract": "^1.18.1",
"@comunica/bus-rdf-parse": "^1.18.1",
"@comunica/bus-rdf-parse-html": "^1.18.1",
"@comunica/bus-rdf-resolve-hypermedia": "^1.18.1",
"@comunica/bus-rdf-resolve-hypermedia-links": "^1.18.1",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.18.1",
"@comunica/bus-rdf-serialize": "^1.18.1",
"@comunica/bus-sparql-parse": "^1.18.1",
"@comunica/bus-sparql-serialize": "^1.18.1",
"@comunica/core": "^1.18.1",
"@comunica/logger-pretty": "^1.18.1",
"@comunica/logger-void": "^1.18.1",
"@comunica/mediator-all": "^1.18.1",
"@comunica/mediator-combine-pipeline": "^1.18.1",
"@comunica/mediator-combine-union": "^1.18.1",
"@comunica/mediator-number": "^1.18.1",
"@comunica/mediator-race": "^1.18.1",
"@comunica/runner": "^1.18.1",
"@comunica/runner-cli": "^1.18.1",
"@types/minimist": "^1.2.0",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"minimist": "^1.2.0",
"negotiate": "^1.0.1",
"rdf-quad": "^1.4.0",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0",
"streamify-string": "^1.0.1"
}
},
"@comunica/actor-init-sparql-rdfjs": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql-rdfjs/-/actor-init-sparql-rdfjs-1.18.1.tgz",
"integrity": "sha512-AelBSYfYltkvuARPd79zikmLKBmJk3WLhxmWH1Bdlb7kp7VLeT8t+8XB5O0uHr/B+D3LJLHrz7/4a2iJUrFp1g==",
"dev": true,
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.18.1",
"@comunica/actor-init-sparql": "^1.18.1",
"@comunica/actor-query-operation-ask": "^1.18.1",
"@comunica/actor-query-operation-bgp-empty": "^1.18.1",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.18.1",
"@comunica/actor-query-operation-bgp-single": "^1.18.1",
"@comunica/actor-query-operation-construct": "^1.18.1",
"@comunica/actor-query-operation-describe-subject": "^1.18.1",
"@comunica/actor-query-operation-distinct-hash": "^1.18.1",
"@comunica/actor-query-operation-extend": "^1.18.1",
"@comunica/actor-query-operation-filter-sparqlee": "^1.18.1",
"@comunica/actor-query-operation-from-quad": "^1.18.1",
"@comunica/actor-query-operation-join": "^1.18.1",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.18.1",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.18.1",
"@comunica/actor-query-operation-path-alt": "^1.18.1",
"@comunica/actor-query-operation-path-inv": "^1.18.1",
"@comunica/actor-query-operation-path-link": "^1.18.1",
"@comunica/actor-query-operation-path-nps": "^1.18.1",
"@comunica/actor-query-operation-path-one-or-more": "^1.18.1",
"@comunica/actor-query-operation-path-seq": "^1.18.1",
"@comunica/actor-query-operation-path-zero-or-more": "^1.18.1",
"@comunica/actor-query-operation-path-zero-or-one": "^1.18.1",
"@comunica/actor-query-operation-project": "^1.18.1",
"@comunica/actor-query-operation-quadpattern": "^1.18.1",
"@comunica/actor-query-operation-service": "^1.18.1",
"@comunica/actor-query-operation-slice": "^1.18.1",
"@comunica/actor-query-operation-union": "^1.18.1",
"@comunica/actor-query-operation-values": "^1.18.1",
"@comunica/actor-rdf-join-nestedloop": "^1.18.1",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.18.1",
"@comunica/actor-rdf-serialize-jsonld": "^1.18.1",
"@comunica/actor-rdf-serialize-n3": "^1.18.1",
"@comunica/actor-sparql-parse-algebra": "^1.18.1",
"@comunica/actor-sparql-serialize-json": "^1.18.1",
"@comunica/actor-sparql-serialize-rdf": "^1.18.1",
"@comunica/actor-sparql-serialize-simple": "^1.18.1",
"@comunica/actor-sparql-serialize-sparql-json": "^1.18.1",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.18.1",
"@comunica/bus-context-preprocess": "^1.18.1",
"@comunica/bus-init": "^1.18.1",
"@comunica/bus-query-operation": "^1.18.1",
"@comunica/bus-rdf-join": "^1.18.1",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.18.1",
"@comunica/bus-rdf-serialize": "^1.18.1",
"@comunica/bus-sparql-parse": "^1.18.1",
"@comunica/bus-sparql-serialize": "^1.18.1",
"@comunica/core": "^1.18.1",
"@comunica/mediator-combine-pipeline": "^1.18.1",
"@comunica/mediator-combine-union": "^1.18.1",
"@comunica/mediator-number": "^1.18.1",
"@comunica/mediator-race": "^1.18.1",
"@comunica/runner": "^1.18.1",
"@comunica/runner-cli": "^1.18.1"
}
},
"@comunica/actor-optimize-query-operation-join-bgp": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-1.18.1.tgz",
"integrity": "sha512-4W9zkiUdENs0oy9natFr7OFHeneNz5XxPfWnBcKFAvx99anMvrwPp0zTtbu2pEmZaavu+xS96cmYB7+f1d4gTQ==",
"dev": true,
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-ask": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-1.18.1.tgz",
"integrity": "sha512-B0fliw0Lk9qMRrTLYeGsT+hpKNbygivvLF/jZ0sUby5yF4HkVT3hZuuz2zdKjIwFKmqkXDPuHA+K2M0rqXMlGQ==",
"dev": true,
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-bgp-empty": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-empty/-/actor-query-operation-bgp-empty-1.18.1.tgz",
"integrity": "sha512-QeG7TvHs7e+zYMOSDXRkFV+FhZAUSYAwVkN/BA2H5RD539QOneOE3ucPU+iui3b20fJE1FC3BpRpvJFpRg0++A==",
"dev": true,
"requires": {
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-bgp-left-deep-smallest": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-left-deep-smallest/-/actor-query-operation-bgp-left-deep-smallest-1.18.1.tgz",
"integrity": "sha512-4A2giRgzsQUBnxaMBe7ksGxxnrGnoKcqxw67nOQCbeGA28Tyro16tWnll0dKkP9eQNb2ssy521ecOL+I5WBAtA==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-bgp-single": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-single/-/actor-query-operation-bgp-single-1.18.1.tgz",
"integrity": "sha512-XUkjrPoBKxnoNwAdWoUo5RgsdLi7pgYKfu1VD3pQl2lg9tYBNYlxOXTaOpeJeAqqVmtWuJlTt4QX8kDhD9iMjg==",
"dev": true,
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-construct": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-1.18.1.tgz",
"integrity": "sha512-onpgJcq2zeCixTe0UCqkNr3vSCNPNUl1VCgCwT+E68J87/ShTa+Pr6E4icHJTwPNgkBDiRMbweF89upzS7LcyQ==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-describe-subject": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-1.18.1.tgz",
"integrity": "sha512-v5lMT9BEwq1wP8JvVHJcs0p1WY5/V7zqy01oiASYdJklc5N0Vj94m+44hb9f0V2khtKAJmDqSpEaGph18wiCUg==",
"dev": true,
"requires": {
"@comunica/actor-query-operation-union": "^1.18.1",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-distinct-hash": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-1.18.1.tgz",
"integrity": "sha512-JIqgeIv808BuUTmu9Dx2PD+dL3N2cX2s3dMTZrkYmxtZfb09qbj1W+VbEhsflYFN7DndfiMKl6+2hOEa4xA+JA==",
"dev": true,
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.18.1",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-extend": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-1.18.1.tgz",
"integrity": "sha512-vkkQAeOpTm49TEcCqAg3MIa8m+kxBHXuxU/UvYm+y5+eyH97jvNiYK6BtarCgZcSVXQ3PYKS5sW/b4nVL5ydMg==",
"dev": true,
"requires": {
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"@comunica/actor-query-operation-filter-sparqlee": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-1.18.1.tgz",
"integrity": "sha512-Ku2nEWbnzQ2d1bG8qS7iYJT4N4qRkMP63A5LWDWs6veYP+bvMhVn2bP8Wahg88Q/KvKBa6WQOWKkc8RmvyqHbw==",
"dev": true,
"requires": {
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"@comunica/actor-query-operation-from-quad": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-1.18.1.tgz",
"integrity": "sha512-380vmQCMVcsS3+qby7lVkgp3iBhmZelGm+kRNXrBkJPD9dR4zB3/AjgNEVpEOJxxtR/5po9V41899Yud/M/PiA==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-group": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-1.18.1.tgz",
"integrity": "sha512-cLWvlbAVww0SfNX2pT8BUJcosKS1zcb2Y655ymGiYyxfVksiDPoApvghMzSxgZpfSnED4bWwlJJ1kkqDhPSpWA==",
"dev": true,
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.18.1",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"@comunica/actor-query-operation-join": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-1.18.1.tgz",
"integrity": "sha512-41+trHjLvLc1RrrapconECLEWggZAhURFVXD/L3HWatmRTq71WlV7JdsSFMrZkDpHNNgRvUna1AvjCuaGlvowQ==",
"dev": true,
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-leftjoin-left-deep": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-left-deep/-/actor-query-operation-leftjoin-left-deep-1.18.1.tgz",
"integrity": "sha512-qcGFFeuzgDJEOR1Tcei2oLXS+dm5R6gikcHWpAEVgapP2Ia2AySW2lKHcV62xPVnVkwXd0OcLw3JDPHXYmKTwg==",
"dev": true,
"requires": {
"@comunica/bus-rdf-join": "^1.18.1",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-leftjoin-nestedloop": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-nestedloop/-/actor-query-operation-leftjoin-nestedloop-1.18.1.tgz",
"integrity": "sha512-e67UxQXodEVK0LZDSyKJg+0v2tcsbAEHjCywlHRzRdKPls4KuxhvT0Mj2vt5SHQ01rR5evNvaYA4BNB+n2BH4g==",
"dev": true,
"requires": {
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"@comunica/actor-query-operation-minus": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-1.18.1.tgz",
"integrity": "sha512-icRsegxaRjXk6fd4eXRmGH7qUtzB5snld2LxoD4yFu/kSbOKupPJJZQjMcR/KkNNuHR+o+lo8B+PS5hJ7HUPYw==",
"dev": true,
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.18.1",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-orderby-sparqlee": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-1.18.1.tgz",
"integrity": "sha512-Qk2PQYQ0RkZ2K4SIRYoz5+fwG7exXV/wY06eAXIXxmlD0fviTF6bYlUr3h238VV0QhYMjsRrdcSPmT2MnVl5kQ==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"@comunica/actor-query-operation-path-alt": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-1.18.1.tgz",
"integrity": "sha512-BBIQ5oYr/1mLmZXxevLbRvjzLHbrUyZlFG22jx/8fk51ikAynyAGkV4EHi0TJs7+Zy0RuFwfVccOnscL7bWURQ==",
"dev": true,
"requires": {
"@comunica/actor-abstract-path": "^1.18.1",
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-inv": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-1.18.1.tgz",
"integrity": "sha512-Ezdl8bcjOkv2t8rjG0MU/CeJYcxQR7mUmMN8bvLebHQlUp95OgZ34yiwMCVBLWkn7xycD1Rzqq4Nk33zs8P3Rw==",
"dev": true,
"requires": {
"@comunica/actor-abstract-path": "^1.18.1"
}
},
"@comunica/actor-query-operation-path-link": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-1.18.1.tgz",
"integrity": "sha512-yTQwxyBt0xuq0QEhJdPB6GFyoyUkRC7C76oXtdw1ocJV48NPBfHVeQ6AjQR6S6mcWA6LvUQd1oUj5pwe4AU+zw==",
"dev": true,
"requires": {
"@comunica/actor-abstract-path": "^1.18.1",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-nps": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-1.18.1.tgz",
"integrity": "sha512-52qzXYVRR7y4DeR5MNzoN9ahpvTICSx7U9pQGczX5be52bc0keyQsmUf3ReOApuK2Ru700GmAiu5sXYW7+5JOw==",
"dev": true,
"requires": {
"@comunica/actor-abstract-path": "^1.18.1",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-one-or-more": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-1.18.1.tgz",
"integrity": "sha512-CFekd04zUrjuALf+zEkGiRD0+z1R0uFIX2b0PxQ8bkXWfBf4AcsgaUU3TKZwTt5LsXcCvUQ4Opm6miYV7Yr25Q==",
"dev": true,
"requires": {
"@comunica/actor-abstract-path": "^1.18.1",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-seq": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-1.18.1.tgz",
"integrity": "sha512-NKKM970D65XWyzw6am5B/WQKeNg7p3BHZHCAlokwyicJK4kHwEivT8/5TkUdZk3pGpmKCN4dGTHwKzTmNFoifw==",
"dev": true,
"requires": {
"@comunica/actor-abstract-path": "^1.18.1",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-zero-or-more": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-1.18.1.tgz",
"integrity": "sha512-PrSJ39sSUELTDz5gOIfueJNqaiNHJTx5Ou5QsVs1VPNduvgmMUPu93+0SUGPo3qPC3UEkN/tu7XVo5aq9DaH8Q==",
"dev": true,
"requires": {
"@comunica/actor-abstract-path": "^1.18.1",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-zero-or-one": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-1.18.1.tgz",
"integrity": "sha512-+oqEZtNn9XC4WSJkA18zouH4Wl5NhMujFEBDNG3Ga3FuZC87TmIGi93AUBaYOMGexocoajhNJLM4N3RyRuCQHw==",
"dev": true,
"requires": {
"@comunica/actor-abstract-path": "^1.18.1",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-project": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-1.18.1.tgz",
"integrity": "sha512-FW6rtWaaAPtwB3Z4PlnBtaumqNOCEoecBriDdZ49tZHWiEL7sadBkbAPhDr01z0DEazaWKiBzyk+rBqN+XXWOw==",
"dev": true,
"requires": {
"@comunica/data-factory": "^1.17.0",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-quadpattern": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-1.18.1.tgz",
"integrity": "sha512-qk1Bcwd4QkEOXl0yf6QnBxtOl9Q3K70lcoUDjknPO9ArBZrXADvVaRqhTck/aoEIkAziPKCtwR8Va9txEx42zw==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-reduced-hash": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-1.18.1.tgz",
"integrity": "sha512-epk4IP2XTf6V97o2XNH1wmEOac8JCR6eb+HyvPhhmzeu+YixmgQ3AX4s8KmRLZUKc+zfBf6+tKErQvXXQCfYhA==",
"dev": true,
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.18.1",
"@types/lru-cache": "^5.1.0",
"lru-cache": "^6.0.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-service": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-1.18.1.tgz",
"integrity": "sha512-IvolDGGrc2qJXk5XlBBVtKe1rF5s5zhIXU5bNd3RlqpNr1vtLjPylrgQ7a/gvlt4BzaD5GwV5zprnIXWoK+ptQ==",
"dev": true,
"requires": {
"@comunica/bus-rdf-resolve-quad-pattern": "^1.18.1",
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-slice": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-1.18.1.tgz",
"integrity": "sha512-GjdJ+PUAByWI0InogOqh22IKJ3qV7lVB1TwCzwSMeQdY+67TU0dx7V2PtEGSvWEgw8OId0GBQ0e+isi8I6vT1w==",
"dev": true,
"requires": {
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-sparql-endpoint": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-1.18.1.tgz",
"integrity": "sha512-YcLSSTmou73kLOlM5P+Lug31sQf3X3T7WtADy8ZF99GLxTh3Sx1anluN0q6Ngn7P472K/G8Ab0fX1xj9fg5gdg==",
"dev": true,
"requires": {
"@comunica/bus-rdf-resolve-quad-pattern": "^1.18.1",
"@comunica/utils-datasource": "^1.18.1",
"@types/rdf-js": "*",
"arrayify-stream": "^1.0.0",
"asynciterator": "^3.0.3",
"fetch-sparql-endpoint": "^1.7.0",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-union": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-1.18.1.tgz",
"integrity": "sha512-IA+QsPDsPdVjFKNPd5sKcaEwqa1KT3WlONiUWpvpy8kUzDW8MnVHvg9ffVJ8DX1nqiijOJBj7aJr6w5Ejb2iAg==",
"dev": true,
"requires": {
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-values": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-1.18.1.tgz",
"integrity": "sha512-BzjqvYNi6pqHZFDKBZTjeVtoCBDX/c8Jf/1L3taOUgjT7M7ZpO3RXebMlLzXd8a0UgqPGLlW2VEwto4PUi38LQ==",
"dev": true,
"requires": {
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-rdf-dereference-http-parse": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-http-parse/-/actor-rdf-dereference-http-parse-1.18.1.tgz",
"integrity": "sha512-Pu8sGAcmuJicFK09piXpvDtRvLV8A7FCwhrgSv1vjZPhiorSrav1ihVQaVAVmthp8mJepXh1ZmOWJVn7+cwQGA==",
"dev": true,
"requires": {
"cross-fetch": "^3.0.5",
"relative-to-absolute-iri": "^1.0.5"
}
},
"@comunica/actor-rdf-join-multi-smallest": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-multi-smallest/-/actor-rdf-join-multi-smallest-1.18.1.tgz",
"integrity": "sha512-80Od3BHbwSdqpTF3Fj13FSvvc8k/76jeAO90FI1iRuE9ppKjTEtg/4CqOyoORKs8gHiQIywSiH4BsnSYMZEIxQ==",
"dev": true,
"requires": {
"@comunica/bus-query-operation": "^1.18.1",
"@comunica/mediatortype-iterations": "^1.18.1"
}
},
"@comunica/actor-rdf-join-nestedloop": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-nestedloop/-/actor-rdf-join-nestedloop-1.18.1.tgz",
"integrity": "sha512-EmLKcIM1ZYwzOXZFEZ2TQRKf1ERmBPkiNuZf+ZFEFhtFO7PrBMVjmvfs426vE0d40rNnxZdMxCMb9BQQp+87ag==",
"dev": true,
"requires": {
"asyncjoin": "^1.0.1"
}
},
"@comunica/actor-rdf-join-symmetrichash": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-symmetrichash/-/actor-rdf-join-symmetrichash-1.18.1.tgz",
"integrity": "sha512-HPXGmzqsc2SDtfmJ76fREdejb0rbk7KsDDWHBTLDvqi/JR8BD1xzhf0e6NmQf5oZYyPlNNOnpsTWruFeuE7Ung==",
"dev": true,
"requires": {
"asyncjoin": "^1.0.1"
}
},
"@comunica/actor-rdf-metadata-all": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-all/-/actor-rdf-metadata-all-1.18.1.tgz",
"integrity": "sha512-XLdUMWnq7rnnb+wqqnCVmrscwohJvB8cfQsw9Px8aQFON3cIcn8jqeaKsTE3HAtJGP0JwHhYdGVpoBwMkS3vVg==",
"dev": true,
"requires": {
"@types/rdf-js": "*"
}
},
"@comunica/actor-rdf-metadata-extract-hydra-controls": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-controls/-/actor-rdf-metadata-extract-hydra-controls-1.18.1.tgz",
"integrity": "sha512-kw2UIbdKVenu1wYxFlxANjkfsAO8cDFANtJWUyg2WTBrNv5l+hO88w1YHBuhiweBB4yQQ0GyI6HlEyjWNt5UFA==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
"@types/uritemplate": "^0.3.4",
"uritemplate": "0.3.4"
}
},
"@comunica/actor-rdf-metadata-extract-hydra-count": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-count/-/actor-rdf-metadata-extract-hydra-count-1.18.1.tgz",
"integrity": "sha512-tobQNXfl+tgRcyfYjPmyCSSj3m5cAUQGIoJMVkRD6UxqGUpsIKJ73X1fUwtitDqfA8tXDcNF0dtAqxQcS5E4TA==",
"dev": true
},
"@comunica/actor-rdf-metadata-extract-sparql-service": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-sparql-service/-/actor-rdf-metadata-extract-sparql-service-1.18.1.tgz",
"integrity": "sha512-ZspKJqpd/1dTRv9IQOpBn6rb+BF7T6ErWkyZBN6tfLDVbSCtDQLBr9guVVCxPeEvxIfx+jCJi1sZ1tqauPqGlQ==",
"dev": true,
"requires": {
"relative-to-absolute-iri": "^1.0.5"
}
},
"@comunica/actor-rdf-metadata-primary-topic": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-primary-topic/-/actor-rdf-metadata-primary-topic-1.18.1.tgz",
"integrity": "sha512-16UMt95xL+IvYBAPd+9JeABrWeDdYHbm53QeNnQfspXhv27aMZvrn+l13hp2dozuS2MYe9PCmfIQIFzo4z+AxA==",
"dev": true,
"requires": {
"@types/rdf-js": "*"
}
},
"@comunica/actor-rdf-parse-html": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html/-/actor-rdf-parse-html-1.18.1.tgz",
"integrity": "sha512-Wx5c/4bN7ohJjsp397JeX8YTDZXMp3VWEFilIjl4/CtAoGV4BzYlHPFo3ZCuRjRpn2EPyJF0Itxedio0b30u3A==",
"dev": true,
"requires": {
"@comunica/bus-rdf-parse-html": "^1.18.1",
"@types/rdf-js": "*",
"htmlparser2": "^5.0.0"
}
},
"@comunica/actor-rdf-parse-html-microdata": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-microdata/-/actor-rdf-parse-html-microdata-1.18.1.tgz",
"integrity": "sha512-ErW0ngwOnEXbGr2fskQYBvau1ZsvB3IbQimAcNAx9m+pIeoDF51+qjpTTZpcckgbTN9wUsNfGCwxk9jbKH2nTQ==",
"dev": true,
"requires": {
"microdata-rdf-streaming-parser": "^1.1.0"
}
},
"@comunica/actor-rdf-parse-html-rdfa": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-rdfa/-/actor-rdf-parse-html-rdfa-1.18.1.tgz",
"integrity": "sha512-c1ae+6F+ohTIAscItsVI/+dKY5tKx7sJwKrrznwgXoPlkFxk7aI9W03Du8X1FsT+spNlk3+CIA/lUPrZ53Lhhw==",
"dev": true,
"requires": {
"rdfa-streaming-parser": "^1.4.0"
}
},
"@comunica/actor-rdf-parse-html-script": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-script/-/actor-rdf-parse-html-script-1.18.1.tgz",
"integrity": "sha512-KI3h3Qb+/IibzFJjLWYVFn43pM0oyRaDovm9VzyGass4wbxmMUVm69lgOLTEcsmOVmTPNcvNI4dYa03g/zjwjA==",
"dev": true,
"requires": {
"@comunica/bus-rdf-parse-html": "^1.18.1",
"@types/rdf-js": "*",
"relative-to-absolute-iri": "^1.0.5"
}
},
"@comunica/actor-rdf-parse-jsonld": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-jsonld/-/actor-rdf-parse-jsonld-1.18.1.tgz",
"integrity": "sha512-3X3REVIqRTgjzWUsfVgJQsyZ75J/SSl7mHfFchNncxRdm14hq67RApO0gztdSLj4t4Kv1HtciEm/zs+nEuKmNw==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
"jsonld-context-parser": "^2.1.1",
"jsonld-streaming-parser": "^2.1.1",
"stream-to-string": "^1.2.0"
}
},
"@comunica/actor-rdf-parse-n3": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-n3/-/actor-rdf-parse-n3-1.18.1.tgz",
"integrity": "sha512-5GQ+PaabjXSgu3mR8tN2ZWyy+pSaq6rIyHDNKAbh3AkG70j6tQWxfa4OZIk2+ImDEjtPVofYsJZnY5VSZhZEwg==",
"dev": true,
"requires": {
"@types/n3": "^1.4.4",
"n3": "^1.6.3"
}
},
"@comunica/actor-rdf-parse-rdfxml": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-rdfxml/-/actor-rdf-parse-rdfxml-1.18.1.tgz",
"integrity": "sha512-qCn8UovKW6xNCoYgR13MBPi8mOOSorRxPLpSOt7eVFEADFMkjzVJAbyExN+8EzHgrJj2DIwQixD2kYnGaEkz+Q==",
"dev": true,
"requires": {
"rdfxml-streaming-parser": "^1.4.0"
}
},
"@comunica/actor-rdf-parse-xml-rdfa": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-xml-rdfa/-/actor-rdf-parse-xml-rdfa-1.18.1.tgz",
"integrity": "sha512-99g5zw57ZbxSKiv0daZiEWhu70Efs0dqKQsf4hIHl+1mZJ7gjYdXrA1gSb2h/bnvezZKyiqjkc9VxzD+J7dv0A==",
"dev": true,
"requires": {
"rdfa-streaming-parser": "^1.3.0"
}
},
"@comunica/actor-rdf-resolve-hypermedia-links-next": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-links-next/-/actor-rdf-resolve-hypermedia-links-next-1.18.1.tgz",
"integrity": "sha512-PV7OGjCe5PDXO1xkJq96z6KHuLQF7+XB48MitkYcK80b5fNyzVK/RKUEwe9m99asZXg2GqTGtLmbzbUQ9XdYrg==",
"dev": true
},
"@comunica/actor-rdf-resolve-hypermedia-none": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-none/-/actor-rdf-resolve-hypermedia-none-1.18.1.tgz",
"integrity": "sha512-8lZLGyZGLF1XjhXwmOlGMD9xsFfc69YD1gh2elUeSTRF2F9xMFc0ynBqMQZ12CaNPK2k2/dRljMhLsvkGHK/Sg==",
"dev": true,
"requires": {
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.18.1",
"@types/rdf-js": "*",
"rdf-store-stream": "^1.0.1"
}
},
"@comunica/actor-rdf-resolve-hypermedia-qpf": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-qpf/-/actor-rdf-resolve-hypermedia-qpf-1.18.1.tgz",
"integrity": "sha512-tAK6qh91gohbOUF6/NyNrL2qFl3wV0PtoryJRfGGRO4GYEHK358hkSh0bfwjq/MXeQIyzogllk2xyPPv69fT6g==",
"dev": true,
"requires": {
"@comunica/bus-rdf-dereference": "^1.18.1",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2"
}
},
"@comunica/actor-rdf-resolve-hypermedia-sparql": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-sparql/-/actor-rdf-resolve-hypermedia-sparql-1.18.1.tgz",
"integrity": "sha512-ifLBrxcBw3Pw5Y+wxdswnnvblquKdGH24evsXiZuhkbBCR7Lazubqdty7q25P4nZ6yQIzQpFBbwVa+J5zVwwfw==",
"dev": true,
"requires": {
"@comunica/actor-rdf-resolve-quad-pattern-sparql-json": "^1.18.1",
"@comunica/bus-query-operation": "^1.18.1",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.18.1",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-federated": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-federated/-/actor-rdf-resolve-quad-pattern-federated-1.18.1.tgz",
"integrity": "sha512-rKCVHcRs1ZIVDDg68i+6bSoYkJXsBMXyUX22TLmx7AUWgNk/LuhRbSKoujXkiemnqPycK/eJhT+MfP95nbBDGg==",
"dev": true,
"requires": {
"@comunica/data-factory": "^1.17.0",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-hypermedia/-/actor-rdf-resolve-quad-pattern-hypermedia-1.18.1.tgz",
"integrity": "sha512-tCkzY0wRy1NFp+d9jE0G4fPNvRq5VPOexU8WFXWeY1AILApOJ5SDi4FdsM9dfq+Iey6Bx+diw8WmuHF+zHFlag==",
"dev": true,
"requires": {
"@comunica/bus-rdf-metadata": "^1.18.1",
"@comunica/bus-rdf-metadata-extract": "^1.18.1",
"@comunica/utils-datasource": "^1.18.1",
"@types/lru-cache": "^5.1.0",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"lru-cache": "^6.0.0",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source/-/actor-rdf-resolve-quad-pattern-rdfjs-source-1.18.1.tgz",
"integrity": "sha512-XvSRjeBuq0TsdjzmAq+9g9QlVB8fS8XBmBOgu60NSoDR3h1SDQK1A2T6B8CHvX9CtX0o8Xcx9MH5rbrw+FUhug==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-sparql-json": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-sparql-json/-/actor-rdf-resolve-quad-pattern-sparql-json-1.18.1.tgz",
"integrity": "sha512-wXtKCutF9dedgMSLk4R0ionaio9ZSg6yCN7nEdrcF9pFbOnW5ItrdNH59aDpJT6MDFXTglcgyKoee6y/fDTDfw==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0",
"sparqljson-parse": "^1.6.0"
}
},
"@comunica/actor-rdf-serialize-jsonld": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-jsonld/-/actor-rdf-serialize-jsonld-1.18.1.tgz",
"integrity": "sha512-kKzg0a0oEy8ESg9Thv9sVg0gEdGILPv6tXB4eJToPlSb9W03xSfUS7wA12/59xAncCmnhDyfRgpAzXWHAlcxlg==",
"dev": true,
"requires": {
"jsonld-streaming-serializer": "^1.2.0"
}
},
"@comunica/actor-rdf-serialize-n3": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-n3/-/actor-rdf-serialize-n3-1.18.1.tgz",
"integrity": "sha512-0DelCUSdjWnd6i21yCfQ6b8e2HX/fkupXh534xByjZTiOj8LlRr+memE7LM2IOUx8GgGMn6fK0cZi+edT10q/g==",
"dev": true,
"requires": {
"@types/n3": "^1.4.4",
"@types/rdf-js": "*",
"n3": "^1.6.3",
"rdf-string": "^1.5.0"
}
},
"@comunica/actor-sparql-parse-algebra": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-algebra/-/actor-sparql-parse-algebra-1.18.1.tgz",
"integrity": "sha512-us7rpHgqj+bfZ2Ac9ObqcRUi4rKEeH30pk7ZcPeDuQLzcha8dCr8QetqUL3vl94TpYuG9KhkBLRJuTGjIPjvkw==",
"dev": true,
"requires": {
"@types/sparqljs": "^3.0.0",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0",
"sparqljs": "^3.1.1"
}
},
"@comunica/actor-sparql-parse-graphql": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-graphql/-/actor-sparql-parse-graphql-1.18.1.tgz",
"integrity": "sha512-CxXzNbSixjLPOJFKK7tjz+KRizX4/LAdVP2yx3JUx67FYmXO4UCz5D+8s1MQTbk+QrQvV2lmAzAz60Iw58Rp2w==",
"dev": true,
"requires": {
"graphql-to-sparql": "^2.2.0"
}
},
"@comunica/actor-sparql-serialize-json": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-json/-/actor-sparql-serialize-json-1.18.1.tgz",
"integrity": "sha512-C30LwcuGoomvrFQHzxnSn4NhWyy+98+yvVtzidIYzoOlZFF2mNiTLb6IRYM5cXKk8cy7i82fuOamr8EJEzVEMA==",
"dev": true,
"requires": {
"@types/rdf-js": "*",
"rdf-string": "^1.5.0"
}
},
"@comunica/actor-sparql-serialize-rdf": {
"version": "1.18.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-rdf/-/actor-sparql-serialize-rdf-1.18.1.tgz",
"integrity": "sha512-3UU7ozaXovG8Wn35MPcOg7lPsqFw2CdR45HOkxCJ/9jLHGeVajMRFJdQNbexQwnYgAq++BanpPMzU8VD4uUUQA==",
"dev": true
},
"@comunica/actor-sparql-serialize-simple": {
"version": "1.18.1",