This repository has been archived by the owner on Mar 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package-lock.json
13094 lines (13094 loc) · 479 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": "dechat_es1b",
"version": "1.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/code-frame": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz",
"integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==",
"requires": {
"@babel/highlight": "^7.0.0"
}
},
"@babel/core": {
"version": "7.3.4",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.3.4.tgz",
"integrity": "sha512-jRsuseXBo9pN197KnDwhhaaBzyZr2oIcLHHTt2oDdQrej5Qp57dCCJafWx5ivU8/alEYDpssYqv1MUqcxwQlrA==",
"requires": {
"@babel/code-frame": "^7.0.0",
"@babel/generator": "^7.3.4",
"@babel/helpers": "^7.2.0",
"@babel/parser": "^7.3.4",
"@babel/template": "^7.2.2",
"@babel/traverse": "^7.3.4",
"@babel/types": "^7.3.4",
"convert-source-map": "^1.1.0",
"debug": "^4.1.0",
"json5": "^2.1.0",
"lodash": "^4.17.11",
"resolve": "^1.3.2",
"semver": "^5.4.1",
"source-map": "^0.5.0"
},
"dependencies": {
"@babel/generator": {
"version": "7.3.4",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.3.4.tgz",
"integrity": "sha512-8EXhHRFqlVVWXPezBW5keTiQi/rJMQTg/Y9uVCEZ0CAF3PKtCCaVRnp64Ii1ujhkoDhhF1fVsImoN4yJ2uz4Wg==",
"requires": {
"@babel/types": "^7.3.4",
"jsesc": "^2.5.1",
"lodash": "^4.17.11",
"source-map": "^0.5.0",
"trim-right": "^1.0.1"
}
},
"@babel/parser": {
"version": "7.3.4",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.3.4.tgz",
"integrity": "sha512-tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ=="
},
"@babel/traverse": {
"version": "7.3.4",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.3.4.tgz",
"integrity": "sha512-TvTHKp6471OYEcE/91uWmhR6PrrYywQntCHSaZ8CM8Vmp+pjAusal4nGB2WCCQd0rvI7nOMKn9GnbcvTUz3/ZQ==",
"requires": {
"@babel/code-frame": "^7.0.0",
"@babel/generator": "^7.3.4",
"@babel/helper-function-name": "^7.1.0",
"@babel/helper-split-export-declaration": "^7.0.0",
"@babel/parser": "^7.3.4",
"@babel/types": "^7.3.4",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.11"
}
},
"@babel/types": {
"version": "7.3.4",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.3.4.tgz",
"integrity": "sha512-WEkp8MsLftM7O/ty580wAmZzN1nDmCACc5+jFzUt+GUFNNIi3LdRlueYz0YIlmJhlZx1QYDMZL5vdWCL0fNjFQ==",
"requires": {
"esutils": "^2.0.2",
"lodash": "^4.17.11",
"to-fast-properties": "^2.0.0"
}
},
"debug": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
"integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
"requires": {
"ms": "^2.1.1"
}
},
"json5": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz",
"integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==",
"requires": {
"minimist": "^1.2.0"
}
},
"ms": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
"integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="
}
}
},
"@babel/generator": {
"version": "7.3.3",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.3.3.tgz",
"integrity": "sha512-aEADYwRRZjJyMnKN7llGIlircxTCofm3dtV5pmY6ob18MSIuipHpA2yZWkPlycwu5HJcx/pADS3zssd8eY7/6A==",
"requires": {
"@babel/types": "^7.3.3",
"jsesc": "^2.5.1",
"lodash": "^4.17.11",
"source-map": "^0.5.0",
"trim-right": "^1.0.1"
}
},
"@babel/helper-function-name": {
"version": "7.1.0",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz",
"integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==",
"requires": {
"@babel/helper-get-function-arity": "^7.0.0",
"@babel/template": "^7.1.0",
"@babel/types": "^7.0.0"
}
},
"@babel/helper-get-function-arity": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz",
"integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==",
"requires": {
"@babel/types": "^7.0.0"
}
},
"@babel/helper-plugin-utils": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz",
"integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==",
"dev": true
},
"@babel/helper-split-export-declaration": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz",
"integrity": "sha512-MXkOJqva62dfC0w85mEf/LucPPS/1+04nmmRMPEBUB++hiiThQ2zPtX/mEWQ3mtzCEjIJvPY8nuwxXtQeQwUag==",
"requires": {
"@babel/types": "^7.0.0"
}
},
"@babel/helpers": {
"version": "7.3.1",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.3.1.tgz",
"integrity": "sha512-Q82R3jKsVpUV99mgX50gOPCWwco9Ec5Iln/8Vyu4osNIOQgSrd9RFrQeUvmvddFNoLwMyOUWU+5ckioEKpDoGA==",
"requires": {
"@babel/template": "^7.1.2",
"@babel/traverse": "^7.1.5",
"@babel/types": "^7.3.0"
}
},
"@babel/highlight": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz",
"integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==",
"requires": {
"chalk": "^2.0.0",
"esutils": "^2.0.2",
"js-tokens": "^4.0.0"
}
},
"@babel/parser": {
"version": "7.3.3",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.3.3.tgz",
"integrity": "sha512-xsH1CJoln2r74hR+y7cg2B5JCPaTh+Hd+EbBRk9nWGSNspuo6krjhX0Om6RnRQuIvFq8wVXCLKH3kwKDYhanSg=="
},
"@babel/plugin-syntax-object-rest-spread": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz",
"integrity": "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==",
"dev": true,
"requires": {
"@babel/helper-plugin-utils": "^7.0.0"
}
},
"@babel/polyfill": {
"version": "7.2.5",
"resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.2.5.tgz",
"integrity": "sha512-8Y/t3MWThtMLYr0YNC/Q76tqN1w30+b0uQMeFUYauG2UGTR19zyUtFrAzT23zNtBxPp+LbE5E/nwV/q/r3y6ug==",
"dev": true,
"requires": {
"core-js": "^2.5.7",
"regenerator-runtime": "^0.12.0"
}
},
"@babel/register": {
"version": "7.0.0",
"resolved": "https://registry.npmjs.org/@babel/register/-/register-7.0.0.tgz",
"integrity": "sha512-f/+CRmaCe7rVEvcvPvxeA8j5aJhHC3aJie7YuqcMDhUOuyWLA7J/aNrTaHIzoWPEhpHA54mec4Mm8fv8KBlv3g==",
"requires": {
"core-js": "^2.5.7",
"find-cache-dir": "^1.0.0",
"home-or-tmp": "^3.0.0",
"lodash": "^4.17.10",
"mkdirp": "^0.5.1",
"pirates": "^4.0.0",
"source-map-support": "^0.5.9"
},
"dependencies": {
"find-cache-dir": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz",
"integrity": "sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=",
"requires": {
"commondir": "^1.0.1",
"make-dir": "^1.0.0",
"pkg-dir": "^2.0.0"
}
}
}
},
"@babel/runtime": {
"version": "7.3.1",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.3.1.tgz",
"integrity": "sha512-7jGW8ppV0ant637pIqAcFfQDDH1orEPGJb8aXfUozuCU3QqX7rX4DA8iwrbPrR1hcH0FTTHz47yQnk+bl5xHQA==",
"requires": {
"regenerator-runtime": "^0.12.0"
}
},
"@babel/template": {
"version": "7.2.2",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.2.2.tgz",
"integrity": "sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g==",
"requires": {
"@babel/code-frame": "^7.0.0",
"@babel/parser": "^7.2.2",
"@babel/types": "^7.2.2"
}
},
"@babel/traverse": {
"version": "7.2.3",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.2.3.tgz",
"integrity": "sha512-Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw==",
"requires": {
"@babel/code-frame": "^7.0.0",
"@babel/generator": "^7.2.2",
"@babel/helper-function-name": "^7.1.0",
"@babel/helper-split-export-declaration": "^7.0.0",
"@babel/parser": "^7.2.3",
"@babel/types": "^7.2.2",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.10"
},
"dependencies": {
"debug": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
"integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
"requires": {
"ms": "^2.1.1"
}
},
"ms": {
"version": "2.1.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz",
"integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="
}
}
},
"@babel/types": {
"version": "7.3.3",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.3.3.tgz",
"integrity": "sha512-2tACZ80Wg09UnPg5uGAOUvvInaqLk3l/IAhQzlxLQOIXacr6bMsra5SH6AWw/hIDRCSbCdHP2KzSOD+cT7TzMQ==",
"requires": {
"esutils": "^2.0.2",
"lodash": "^4.17.11",
"to-fast-properties": "^2.0.0"
}
},
"@cnakazawa/watch": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.3.tgz",
"integrity": "sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==",
"dev": true,
"requires": {
"exec-sh": "^0.3.2",
"minimist": "^1.2.0"
}
},
"@comunica/actor-abstract-bindings-hash": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.6.3.tgz",
"integrity": "sha512-6WE9bCgrhx0JJVp8Sxjwh3y+bFaFS/3vJ3T8YJZ+5uf7SqvdmA8WOUMbs+6QHgduEGk8KlQuREYiprO7yycwwA=="
},
"@comunica/actor-abstract-mediatyped": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.6.3.tgz",
"integrity": "sha512-hvnN43UFuJh26tzgQbW5XDhPyykrV/p3DGqsyiuaajzQ7e/0bQb1ZK+7cBRQKPw7obKizzopyx2h5bGroxrQ1Q==",
"requires": {
"lodash.mapvalues": "^4.6.0"
}
},
"@comunica/actor-abstract-path": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.6.4.tgz",
"integrity": "sha512-7NTrYKtBzT96mGpbdbm2xSaEwEXJYyvUSf1qIS5S9qUWIY0tP2YFBkm7MsbU0hEvAD1mzI43kj6DGjahHlB56g==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.5.0"
}
},
"@comunica/actor-context-preprocess-rdf-source-identifier": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-rdf-source-identifier/-/actor-context-preprocess-rdf-source-identifier-1.6.3.tgz",
"integrity": "sha512-F18t1N9J77d3YwKf9ejxdEK1NJlUOeVwjsaHXjMilIfeB7kwVn3UxXW+UFBi69JG4ORd6gOV/YeYiQfxqPTCKw==",
"requires": {
"asyncreiterable": "^1.1.1"
}
},
"@comunica/actor-http-memento": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.6.3.tgz",
"integrity": "sha512-tAVDvp6BuohdERfXEvhn5CSSNKsuw1toPl0cGZATqmCpKNQpDWUUDsUYP215TNR39sUyyKwueDxtVgn1o/bV+g==",
"requires": {
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-native": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.6.3.tgz",
"integrity": "sha512-DwkuNw42zqheXn2puH9RiSlAlHmo/uGXkyTAO9+7XkuDj3WSObW4omfZFjdeT/76FPomzDS/uOMJUrOjc+1Gng==",
"requires": {
"follow-redirects": "^1.5.1",
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-solid-auth-fetch": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-solid-auth-fetch/-/actor-http-solid-auth-fetch-1.0.0.tgz",
"integrity": "sha512-UXpz1IZsL9HqO6JkSIU60+Nh5DGFsHa5KdQf4sISSd+YUQkTfNYukb09IWalOPvE0sFbFr5sKV7RAKenZF++ZA==",
"requires": {
"solid-auth-client": "^2.2.14"
}
},
"@comunica/actor-init-sparql": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.6.4.tgz",
"integrity": "sha512-cxI2OxrlHrMbqI1cQLyyWdpOxovgY5Z0YhWiTvGAmJY/vHEDH3Vw2KnDCIatjcLYUw87J/CvkIE/cPpoSaKUNw==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.6.3",
"@comunica/actor-abstract-mediatyped": "^1.6.3",
"@comunica/actor-context-preprocess-rdf-source-identifier": "^1.6.3",
"@comunica/actor-http-memento": "^1.6.3",
"@comunica/actor-http-native": "^1.6.3",
"@comunica/actor-optimize-query-operation-join-bgp": "^1.6.4",
"@comunica/actor-query-operation-ask": "^1.6.3",
"@comunica/actor-query-operation-bgp-empty": "^1.6.3",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.6.3",
"@comunica/actor-query-operation-bgp-single": "^1.6.3",
"@comunica/actor-query-operation-construct": "^1.6.3",
"@comunica/actor-query-operation-describe-subject": "^1.6.3",
"@comunica/actor-query-operation-distinct-hash": "^1.6.3",
"@comunica/actor-query-operation-extend": "^1.6.3",
"@comunica/actor-query-operation-filter-sparqlee": "^1.6.3",
"@comunica/actor-query-operation-from-quad": "^1.6.4",
"@comunica/actor-query-operation-join": "^1.6.3",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.6.3",
"@comunica/actor-query-operation-minus": "^1.6.3",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.6.3",
"@comunica/actor-query-operation-path-alt": "^1.6.4",
"@comunica/actor-query-operation-path-inv": "^1.6.4",
"@comunica/actor-query-operation-path-link": "^1.6.4",
"@comunica/actor-query-operation-path-nps": "^1.6.4",
"@comunica/actor-query-operation-path-one-or-more": "^1.6.4",
"@comunica/actor-query-operation-path-seq": "^1.6.4",
"@comunica/actor-query-operation-path-zero-or-more": "^1.6.4",
"@comunica/actor-query-operation-path-zero-or-one": "^1.6.4",
"@comunica/actor-query-operation-project": "^1.6.3",
"@comunica/actor-query-operation-quadpattern": "^1.6.3",
"@comunica/actor-query-operation-reduced-hash": "^1.6.3",
"@comunica/actor-query-operation-service": "^1.6.3",
"@comunica/actor-query-operation-slice": "^1.6.3",
"@comunica/actor-query-operation-sparql-endpoint": "^1.6.4",
"@comunica/actor-query-operation-union": "^1.6.3",
"@comunica/actor-query-operation-values": "^1.6.3",
"@comunica/actor-rdf-dereference-http-parse": "^1.6.3",
"@comunica/actor-rdf-dereference-paged-next": "^1.6.3",
"@comunica/actor-rdf-join-nestedloop": "^1.6.3",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.6.3",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.6.3",
"@comunica/actor-rdf-metadata-primary-topic": "^1.6.3",
"@comunica/actor-rdf-metadata-triple-predicate": "^1.6.3",
"@comunica/actor-rdf-parse-jsonld": "^1.6.3",
"@comunica/actor-rdf-parse-n3": "^1.6.3",
"@comunica/actor-rdf-parse-rdfxml": "^1.6.3",
"@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.6.3",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.6.3",
"@comunica/actor-rdf-resolve-quad-pattern-file": "^1.6.3",
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.6.3",
"@comunica/actor-rdf-resolve-quad-pattern-sparql-json": "^1.6.4",
"@comunica/actor-rdf-serialize-jsonld": "^1.6.3",
"@comunica/actor-rdf-serialize-n3": "^1.6.3",
"@comunica/actor-rdf-source-identifier-file-content-type": "^1.6.3",
"@comunica/actor-rdf-source-identifier-hypermedia-qpf": "^1.6.3",
"@comunica/actor-rdf-source-identifier-sparql": "^1.6.3",
"@comunica/actor-sparql-parse-algebra": "^1.6.4",
"@comunica/actor-sparql-parse-graphql": "^1.6.3",
"@comunica/actor-sparql-serialize-json": "^1.6.3",
"@comunica/actor-sparql-serialize-rdf": "^1.6.3",
"@comunica/actor-sparql-serialize-simple": "^1.6.3",
"@comunica/actor-sparql-serialize-sparql-json": "^1.6.3",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.6.3",
"@comunica/actor-sparql-serialize-stats": "^1.6.3",
"@comunica/actor-sparql-serialize-table": "^1.6.3",
"@comunica/actor-sparql-serialize-tree": "^1.6.3",
"@comunica/bus-context-preprocess": "^1.6.3",
"@comunica/bus-http": "^1.6.3",
"@comunica/bus-http-invalidate": "^1.6.3",
"@comunica/bus-init": "^1.6.3",
"@comunica/bus-optimize-query-operation": "^1.6.4",
"@comunica/bus-query-operation": "^1.6.3",
"@comunica/bus-rdf-dereference": "^1.6.3",
"@comunica/bus-rdf-dereference-paged": "^1.6.3",
"@comunica/bus-rdf-join": "^1.6.3",
"@comunica/bus-rdf-metadata": "^1.6.3",
"@comunica/bus-rdf-metadata-extract": "^1.6.3",
"@comunica/bus-rdf-parse": "^1.6.3",
"@comunica/bus-rdf-resolve-hypermedia": "^1.6.3",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.6.3",
"@comunica/bus-rdf-serialize": "^1.6.3",
"@comunica/bus-rdf-source-identifier": "^1.6.3",
"@comunica/bus-sparql-parse": "^1.6.3",
"@comunica/bus-sparql-serialize": "^1.6.3",
"@comunica/core": "^1.6.3",
"@comunica/logger-pretty": "^1.6.3",
"@comunica/logger-void": "^1.6.3",
"@comunica/mediator-all": "^1.6.3",
"@comunica/mediator-combine-pipeline": "^1.6.3",
"@comunica/mediator-combine-union": "^1.6.3",
"@comunica/mediator-number": "^1.6.3",
"@comunica/mediator-race": "^1.6.3",
"@comunica/runner": "^1.6.3",
"@comunica/runner-cli": "^1.6.3",
"asyncreiterable": "^1.1.1",
"minimist": "^1.2.0",
"negotiate": "^1.0.1",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0",
"streamify-string": "^1.0.1"
}
},
"@comunica/actor-optimize-query-operation-join-bgp": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-1.6.4.tgz",
"integrity": "sha512-bVfzMkUaYo8TVH3LkBHGbtip50cIy2MrRB/36jMjSElWGniouy1dcFn/SD96pk1KubbJ8M0uEKatZXMy9Xduzw==",
"requires": {
"sparqlalgebrajs": "^1.5.0"
}
},
"@comunica/actor-query-operation-ask": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-1.6.3.tgz",
"integrity": "sha512-wS4Qv9d+Yf9rYWPJ9+nQm7zqmXZP3mie4Oe4ImMGYb10mB8rkPT8VUZJZYCN8ZpEcG08Vo8iABSt4R+pdYcepQ=="
},
"@comunica/actor-query-operation-bgp-empty": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-empty/-/actor-query-operation-bgp-empty-1.6.3.tgz",
"integrity": "sha512-lW3FB8cYmR3eJtz+hGzpRUmo2p0zfh0i9Zec9snFJzYg4xRxED9wjCopkNh6KRil/V5v+dLXtXUNku+dpQXOkA==",
"requires": {
"asynciterator": "^2.0.1"
}
},
"@comunica/actor-query-operation-bgp-left-deep-smallest": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-left-deep-smallest/-/actor-query-operation-bgp-left-deep-smallest-1.6.3.tgz",
"integrity": "sha512-HqYUGVBJ3MLzDg6TKGDHNNRwgqXJBg2D2RyJY3+Foo+WTU36+xm/nftPShoFwoBlf5tfLkh/EkHgiE9s3weNng==",
"requires": {
"asynciterator-promiseproxy": "^2.0.0",
"lodash.uniq": "^4.5.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-query-operation-bgp-single": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-single/-/actor-query-operation-bgp-single-1.6.3.tgz",
"integrity": "sha512-tP/zX6b9mwt23CrKriFYmfsuJEn0/LIWa5wropWYF4LEO2HpU3BV3it1eZsZbqegDnyf6W6fjS9Z3ViaURmN/w=="
},
"@comunica/actor-query-operation-construct": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-1.6.3.tgz",
"integrity": "sha512-z5diSmvBxhPnEgQrIZG7zhWlmyRC8rbzWC9994jL1r+ku2mn56pctzUSNlCC7IjLhw8DXWCeIFWJ0y2uRIok3w==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-query-operation-describe-subject": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-1.6.3.tgz",
"integrity": "sha512-WW11HozmtGzQFZpWnFmwQT3vjjv67Ta2RUedhYZdEAwKOFaQi6RM78TncwhMhhSo8EVeDhjbt/5HH+aoMwneVQ==",
"requires": {
"@comunica/actor-query-operation-union": "^1.6.3",
"@rdfjs/data-model": "^1.1.1",
"asynciterator-union": "^2.1.1"
}
},
"@comunica/actor-query-operation-distinct-hash": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-1.6.3.tgz",
"integrity": "sha512-LAxzNCiqfm0wceUYshguDy3zW8YKRqR0Sg6vqabx7QHir2jDSe9AEVpab5othLw3n/enTxLy6bBj3FuClmfT3g==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.6.3",
"json-stable-stringify": "^1.0.1"
}
},
"@comunica/actor-query-operation-extend": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-1.6.3.tgz",
"integrity": "sha512-afaesmlGUR3SPsIY+GrUJMek9jSCx5U82CIIsvMzovFafwaJ/6S+luzif+vzBPb+Iaq8z8BRaukjJiNcICuwNQ==",
"requires": {
"sparqlee": "0.1.0"
}
},
"@comunica/actor-query-operation-filter-sparqlee": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-1.6.3.tgz",
"integrity": "sha512-JkBk+ZnBTglFerezUU/VKsh9GSL3h+8ASHewy47NHzIYWGipC485FuGSta0HUZIuTT3c8Rc3no1ucNw+jr+mQA==",
"requires": {
"sparqlee": "0.1.0"
}
},
"@comunica/actor-query-operation-from-quad": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-1.6.4.tgz",
"integrity": "sha512-vMHhxVrojfGpV1EiT6jRYks7UuSFOVc+JkC7Hzdf1EexQhFSrJ3s/kipDT8cptznwMes7O9GLfYswytcoMUuzg==",
"requires": {
"lodash.find": "^4.6.0",
"sparqlalgebrajs": "^1.5.0"
}
},
"@comunica/actor-query-operation-join": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-1.6.3.tgz",
"integrity": "sha512-swLBCAPLXD7L1g9/2Upzv2CgXEATW/tNBHfbgi9OdCptXC0QFe/HEplQdFTF1PmNM+vDvsoFYkP+fp02HjCgtg=="
},
"@comunica/actor-query-operation-leftjoin-nestedloop": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-nestedloop/-/actor-query-operation-leftjoin-nestedloop-1.6.3.tgz",
"integrity": "sha512-FGb1Kq7n56+akCdx4xntKfxNy1EEwSFxgj+bChCCksN0F7RTGXFpjx1oLY1t6xhFs0WUxVBq16G5q6srUe3Y5w==",
"requires": {
"sparqlee": "0.1.0"
}
},
"@comunica/actor-query-operation-minus": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-1.6.3.tgz",
"integrity": "sha512-/x831BA2Px4w1BP847jeAh1gHGZ+Efu9VjD36u9q5ve3/zf6W/lpwvpTn5RiafvdZ6r99ZNqodkfNhbd4nVk7A==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.6.3",
"asynciterator-promiseproxy": "^2.0.0"
}
},
"@comunica/actor-query-operation-orderby-sparqlee": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-1.6.3.tgz",
"integrity": "sha512-Jp5w7YSbdcazy7vwB1ueL89wmjDSyGRUK55lnOL6MztY97uVD6g/LMddw1snY5gzOO7SQ2g4vir2iExc/gbT2g==",
"requires": {
"rdf-string": "^1.3.1",
"sparqlee": "0.1.0"
}
},
"@comunica/actor-query-operation-path-alt": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-1.6.4.tgz",
"integrity": "sha512-ItoZH9jFS0lwyPu2WoUJZsZTvJdFVCMbYuea+EXIEz0J86iyFmBmS0mBxurioMGGS/zZg7HkQUnn6FgGqqmCoQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.4",
"asynciterator-union": "^2.1.1",
"lodash.uniq": "^4.5.0",
"sparqlalgebrajs": "^1.5.0"
}
},
"@comunica/actor-query-operation-path-inv": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-1.6.4.tgz",
"integrity": "sha512-SrcjhwfRcsVsfNPyTa+GXyKcfOMS1PW2xaZ987Yx+TTaeDupLsshdxJNY6yJTA0bYqNYHQEf6XDKrRBae6kHog==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.4"
}
},
"@comunica/actor-query-operation-path-link": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-1.6.4.tgz",
"integrity": "sha512-UXUOQ4b9ligA3OWKLpUnJQ4Qk6R2B1Q5nBb/SU3bUyqqkhApdc2E6ZGovYGPtK6p83f9aI65cG3fq5X+G3v81g==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.4",
"sparqlalgebrajs": "^1.5.0"
}
},
"@comunica/actor-query-operation-path-nps": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-1.6.4.tgz",
"integrity": "sha512-RDbmhXsAtUFYX0KD8hqK/nGgINo1i73tp6AWKS9MTK8Gejlk4cilj/E9tTb0JqudjgnumKbq9Np0Vc2FlrviYQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.4",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.5.0"
}
},
"@comunica/actor-query-operation-path-one-or-more": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-1.6.4.tgz",
"integrity": "sha512-L+vdS19clu2GuvUNxNE8Gq5mVD5vs7N8EGoSvA2PHmM+F1sWuvtcIgW5mwQdAhX6tSed7DDWcapl1omg/Iur+Q==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.4",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.5.0"
}
},
"@comunica/actor-query-operation-path-seq": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-1.6.4.tgz",
"integrity": "sha512-lJ4X2+es9L0kAxch7oht8p3Iwb7RqWd58Ww19laxZdpzIKO4VXOOuL6nIvpdMmjhcwlMZWBhYU1xJIxYe8AZFA==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.4",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.5.0"
}
},
"@comunica/actor-query-operation-path-zero-or-more": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-1.6.4.tgz",
"integrity": "sha512-ubrA/pwDNSxZDPJc7nwx3z3fgyI4XWt5l/ErQ5PT8D+s5BEEdCOkzaNa8bYkfSxxUWIoEjrXJfafCkWBgjCVVQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.4",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.5.0"
}
},
"@comunica/actor-query-operation-path-zero-or-one": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-1.6.4.tgz",
"integrity": "sha512-atsVZcpgn/oNTZnUkOjkn3PlhRpQWrqPuQzqpBG2tv3ZZobekQj8yNbKi4TBlizVl9mxU7ehHEzgDdQrS/6x8w==",
"requires": {
"@comunica/actor-abstract-path": "^1.6.4",
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-query-operation-project": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-1.6.3.tgz",
"integrity": "sha512-+ytTKXSxW/diB7a0+pxwuaXD/xLN9yAmEKn9H4+NNITv3vVt5N6mfFE2QVPTaaFncK3jlE+XpK0CD33/fmKvew==",
"requires": {
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-query-operation-quadpattern": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-1.6.3.tgz",
"integrity": "sha512-+DgVTi84dDnliGY4e7sBpZE+tgOJ2WLWqiFZW3EGzgNOQPopaKycSnimlAgmmerREkxigwG+0r+hJT/xEvUfJw==",
"requires": {
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-query-operation-reduced-hash": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-1.6.3.tgz",
"integrity": "sha512-qmGZquJ+Fta5Z4IeYvteLs9I7UHxvT6vqqup9EBRnetTH4u+ktxfkbVSx9LhjXW//O78y3LHE7TMc28Sw4NjhQ==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.6.3",
"lru-cache": "^5.1.1"
}
},
"@comunica/actor-query-operation-service": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-1.6.3.tgz",
"integrity": "sha512-FYwFeToBPuYDft4jn5iOgbEvFqIPVNwEIjV8WpKFpeYIaqV8s+2mbe5b8rGBACLMoCnSi0xjyYwDCxRxFu0d6g==",
"requires": {
"asynciterator": "^2.0.1"
}
},
"@comunica/actor-query-operation-slice": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-1.6.3.tgz",
"integrity": "sha512-IzU/kP7wwk97tLzDSShCoee7HwKNix6S0v0ugq8vnLKHX8jIEr32b8Nyl/KtT5BBDanQcuTICTo/qfG05gIJLQ=="
},
"@comunica/actor-query-operation-sparql-endpoint": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-1.6.4.tgz",
"integrity": "sha512-fAv76+6fmmuktPFsNtA+UG9YD/pyw8rRCePzls4qqby4S6QOk+llZIID6S9sdxkE3Z14OhsHHX9edJUH9/dwZQ==",
"requires": {
"@comunica/utils-datasource": "^1.6.3",
"arrayify-stream": "^1.0.0",
"asynciterator": "^2.0.1",
"fetch-sparql-endpoint": "^1.4.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0",
"sparqlalgebrajs": "^1.5.0"
}
},
"@comunica/actor-query-operation-union": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-1.6.3.tgz",
"integrity": "sha512-T3Of1PkV/lCPcq1Kkzz4Kcf3OuY3xUJAhwlOHcVzeTtgNbW19vZVkPDpZWLdnV1QVHLaJHDR2/YFPotIBLjtUA==",
"requires": {
"asynciterator-union": "^2.1.1",
"lodash.union": "^4.6.0"
}
},
"@comunica/actor-query-operation-values": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-1.6.3.tgz",
"integrity": "sha512-S8yZOZd1vV/qaVoZbX8ecZOeOSciHzU6JUgFO9Kl+vtTdwIzXnowG2ibzP6WWsDcwLprcPwoP+B+jPdY+VMz/A==",
"requires": {
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-rdf-dereference-http-parse": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-http-parse/-/actor-rdf-dereference-http-parse-1.6.3.tgz",
"integrity": "sha512-p874wrDaLbKLdCd0upUWdO1/XvpFsv8HN0Tsf5bpoUv6Z32av4HKFPrtGd5Q/i5pzmCi0YOEz5r3Jb2/fcKexg=="
},
"@comunica/actor-rdf-dereference-paged-next": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-paged-next/-/actor-rdf-dereference-paged-next-1.6.3.tgz",
"integrity": "sha512-8VWZUSYDBCuwAgo31yjjqlwBtG5hANktgtLYouk+TGeFUtfh6VDLWQ+Pb2aXkmQZ9r2Kk+OygqsPUHPCPiKAFA==",
"requires": {
"asynciterator": "^2.0.1",
"lru-cache": "^5.1.1"
}
},
"@comunica/actor-rdf-join-nestedloop": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-nestedloop/-/actor-rdf-join-nestedloop-1.6.3.tgz",
"integrity": "sha512-kkKvAaEDhmV4U1D/7ZRRtXa6DZCnpkSmJ82umxv5fM61JjYjoIituZ9UHi0AhGf5KHMgmv8/l76PAeNxlYi/KA==",
"requires": {
"asyncjoin": "^0.3.0"
}
},
"@comunica/actor-rdf-metadata-extract-hydra-controls": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-controls/-/actor-rdf-metadata-extract-hydra-controls-1.6.3.tgz",
"integrity": "sha512-YmHs/Aj0r4L201Zk0STizqUr9BupLC/f7YbcVsvsqiOjfUaGsNPpRX3PeR8Zjzmv5T/UJ9herK1Zq5CPyJkw0A==",
"requires": {
"lodash.assign": "^4.2.0",
"lodash.flatten": "^4.4.0",
"lodash.mapvalues": "^4.6.0",
"lodash.values": "^4.3.0",
"uritemplate": "0.3.4"
}
},
"@comunica/actor-rdf-metadata-extract-hydra-count": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-count/-/actor-rdf-metadata-extract-hydra-count-1.6.3.tgz",
"integrity": "sha512-VOulE7NSersKScr0HKtOHTwHHDT8W0bD6tm33WqU1K4ECjOlfEVZjnrvkp4vmqTMM4IB39Pa7J1YONbvwCx0xA=="
},
"@comunica/actor-rdf-metadata-primary-topic": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-primary-topic/-/actor-rdf-metadata-primary-topic-1.6.3.tgz",
"integrity": "sha512-bVqIPdXMHgOkrHP+lXjoQL2y/5NqjYcHOvG7lhW1deTACA91qA/shanJBUENzkog5rYtgXawVdRsnBVGPW27yw=="
},
"@comunica/actor-rdf-metadata-triple-predicate": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-triple-predicate/-/actor-rdf-metadata-triple-predicate-1.6.3.tgz",
"integrity": "sha512-bAwzq1v+O5vTCcMur8HSAkZVNBCpXChOEFYTujgrgFmxM8Tsk7L/qIfHPzlTEl+1HBVO09uwFc8XT2tnUlIMFw=="
},
"@comunica/actor-rdf-parse-jsonld": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-jsonld/-/actor-rdf-parse-jsonld-1.6.3.tgz",
"integrity": "sha512-CUMPK9ddEpGKRq8CoG8E/5jPZzRAAOXcBPQimsYydLU8rZSE7XD+7Q39cLBrtykTMxM8EoKyUmoeOw1XCGtD7Q==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"jsonld": "^1.5.0",
"rdf-terms": "^1.4.0",
"stream-to-string": "^1.1.0"
}
},
"@comunica/actor-rdf-parse-n3": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-n3/-/actor-rdf-parse-n3-1.6.3.tgz",
"integrity": "sha512-23P7oMtHg7QaKFzqckELR9mX68xv8X9ARPLGjakTItTgUkeOFWnSd7qncwO9PrVOtoiW5NP+BHJhCGMbefqNvA==",
"requires": {
"n3": "^1.0.0"
}
},
"@comunica/actor-rdf-parse-rdfxml": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-rdfxml/-/actor-rdf-parse-rdfxml-1.6.3.tgz",
"integrity": "sha512-vJC/sgcqhSR4HAQgZHz8sHK74/B2VNI3HaD41l7KFaSrKS+nv2s0dUM96BQd3Q3F/+LRPDOMN+yrlTeCQzQZlA==",
"requires": {
"rdfxml-streaming-parser": "^1.1.0"
}
},
"@comunica/actor-rdf-resolve-hypermedia-qpf": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-qpf/-/actor-rdf-resolve-hypermedia-qpf-1.6.3.tgz",
"integrity": "sha512-35HdHaGqjXcFpi4ljnISJHGfEqcdsPmIrSLIYdyq5ZwGe9LTPKJBN+WfmiXJKvceqimuR36u5K7mex/pmOriqQ==",
"requires": {
"@rdfjs/data-model": "^1.1.0",
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.2.0",
"rdf-terms": "^1.2.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-federated": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-federated/-/actor-rdf-resolve-quad-pattern-federated-1.6.3.tgz",
"integrity": "sha512-FCCdBX7EEHGqW/emx6NTkHSlu8q2JICoPuD4iacjL2n/8kB9ZVhA00+08M11RjcaLXsnA/GOUTPgeYO0Kqosgg==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.0.0",
"asynciterator-union": "^2.1.1",
"lodash.omit": "^4.5.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-file": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-file/-/actor-rdf-resolve-quad-pattern-file-1.6.3.tgz",
"integrity": "sha512-f8nv360dn03ZfCyAP6vXsotLP3Repn8ru2bDa5dmML79ZRHQfyOqlKLr7tBAuaGcMGxCf55W3UOwEd2nC/pVUw==",
"requires": {
"asynciterator": "^2.0.1",
"lru-cache": "^5.1.1",
"n3": "^1.0.0",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-hypermedia/-/actor-rdf-resolve-quad-pattern-hypermedia-1.6.3.tgz",
"integrity": "sha512-4eK5D3oaaHo7TwuYHX0R7kM5jVTcd1udA55I3enbvbCP6Pl4/qqYCuIVzdFcsyjXljh4Q3NrqpgbYxhj30c3MQ==",
"requires": {
"@comunica/utils-datasource": "^1.6.3",
"@rdfjs/data-model": "^1.1.1",
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source/-/actor-rdf-resolve-quad-pattern-rdfjs-source-1.6.3.tgz",
"integrity": "sha512-alGFWCks1XDm9h18taVPouX9Xrkdu/l5mP01yEQL6kdvx6qATnc0vuC/Epb/a9XuKarRc2DZO/Y1UktbJUby3Q=="
},
"@comunica/actor-rdf-resolve-quad-pattern-sparql-json": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-sparql-json/-/actor-rdf-resolve-quad-pattern-sparql-json-1.6.4.tgz",
"integrity": "sha512-GlMEO4yV2GNWJ5vImRc90INgfqHpOh39HlAelmLRDg7aLYSyglK16Dxp6uqv8FMKhi2ngJ9VYJhki5RGZv0nEg==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.0.0",
"rdf-terms": "^1.4.0",
"sparqlalgebrajs": "^1.5.0",
"sparqljson-parse": "^1.5.0"
}
},
"@comunica/actor-rdf-serialize-jsonld": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-jsonld/-/actor-rdf-serialize-jsonld-1.6.3.tgz",
"integrity": "sha512-fUbQos4HQrYqT71Ka5fVD77bVFAydXXtyxqRi4KxxdakWRg6ggtld1PaW4/FG2p2eVMAlp3bJduLAEmRcLk9kQ==",
"requires": {
"arrayify-stream": "^1.0.0",
"jsonld": "^1.5.0",
"streamify-array": "^1.0.0"
}
},
"@comunica/actor-rdf-serialize-n3": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-n3/-/actor-rdf-serialize-n3-1.6.3.tgz",
"integrity": "sha512-00FYtVrltwlhLNAEyevPvy3JigeOOGllPvgu1JqZe30DMjFR9lN4XujxXAEQfEyyYPrIyE077S1xJGJw2PXz7g==",
"requires": {
"n3": "^1.0.0",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-rdf-source-identifier-file-content-type": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-source-identifier-file-content-type/-/actor-rdf-source-identifier-file-content-type-1.6.3.tgz",
"integrity": "sha512-fTOYNM37TY1s2EeJOXa/cM9MpXCflBx3/0JZDGAHpzxwfdz4mB7HaaiSVoL31J25NSw489+IC8k5cPSBAQpxCw=="
},
"@comunica/actor-rdf-source-identifier-hypermedia-qpf": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-source-identifier-hypermedia-qpf/-/actor-rdf-source-identifier-hypermedia-qpf-1.6.3.tgz",
"integrity": "sha512-39S/9NENqVuzxW5eiOPTF2JYIlyQ7egSt93fE9eIisU5Fq7b6R9+HNOOFS0KlNmsFvUkq6qOqaf0Xsb8S1jIDw==",
"requires": {
"stream-to-string": "^1.1.0"
}
},
"@comunica/actor-rdf-source-identifier-sparql": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-source-identifier-sparql/-/actor-rdf-source-identifier-sparql-1.6.3.tgz",
"integrity": "sha512-rNsYwLJu6MFTREZQxy3ndxDhBJgGaXsLrKhI7zk5/COupWOQ4JUlmHf0Z7I1hus66r1wkNhpkHziAgPWoIZi9g=="
},
"@comunica/actor-sparql-parse-algebra": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-algebra/-/actor-sparql-parse-algebra-1.6.4.tgz",
"integrity": "sha512-cFtRYbKIe5DVJObkwzuCTybMUVhiEY+64vxnHFeL00JnzuTVQa8QD5IR/7FStebwxA5RUNru8daWwMo+QXtTUQ==",
"requires": {
"sparqlalgebrajs": "^1.5.0"
}
},
"@comunica/actor-sparql-parse-graphql": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-graphql/-/actor-sparql-parse-graphql-1.6.3.tgz",
"integrity": "sha512-ZPmoO3KSGqGPyicun7N6fTpFa7LVwdWGjNwgciKcMlZTDYjCMglGwvbjjXjTayFFyhp3ULWI7idJ+ZL5j57VXQ==",
"requires": {
"graphql-to-sparql": "^1.5.0"
}
},
"@comunica/actor-sparql-serialize-json": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-json/-/actor-sparql-serialize-json-1.6.3.tgz",
"integrity": "sha512-9jCcAXDOR03rIjUjglV443lWBq1LiMadj/Fv6JVmy8yOV/9A0wbA234/aq/5OUL654InZg6ELIAEN76E7upQJQ==",
"requires": {
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-sparql-serialize-rdf": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-rdf/-/actor-sparql-serialize-rdf-1.6.3.tgz",
"integrity": "sha512-y6moSoutIz0RbLlnVcAHeJzi8Ibd2JUI4jeiKYOUOGAR14Y8d1Wo3/czn0nNLqbjKhX13fOJIEuzhPakKMvJNg=="
},
"@comunica/actor-sparql-serialize-simple": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-simple/-/actor-sparql-serialize-simple-1.6.3.tgz",
"integrity": "sha512-7b4BLDjNRpc3b/zlIBAPtpAFPPhyCxvWjFe9Zsj5Sai1aRLJUuIBR6sVf95Q+D2dK3m+GN9Ba1uz6X1EECZ78A=="
},
"@comunica/actor-sparql-serialize-sparql-json": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-json/-/actor-sparql-serialize-sparql-json-1.6.3.tgz",
"integrity": "sha512-io0YT+UiyFEELQk56YL3mYAoXhrLkujE/qDlyNId+MUdRy/u8i9zNoYPRDrdCoFatYXo049EpndVUnNMdleqqg=="
},
"@comunica/actor-sparql-serialize-sparql-xml": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-xml/-/actor-sparql-serialize-sparql-xml-1.6.3.tgz",
"integrity": "sha512-9CJ3oUrb082qO8qPVLCZfrbLm0TFZbjwyFmFuEOX9YUXUQSJTAqdMS0uTh0tvXRU/0q2FIM2oX3ytJ5fM+k/eA==",
"requires": {
"xml": "^1.0.1"
}
},
"@comunica/actor-sparql-serialize-stats": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-stats/-/actor-sparql-serialize-stats-1.6.3.tgz",
"integrity": "sha512-MVOtVF7xIG9KaudEOjZVWLMF7Ya+53V37soNaoc6X1pnlYxaq14mo21uXVfyhpsar1I1OGfxS+GwSXgh7jEOjQ=="
},
"@comunica/actor-sparql-serialize-table": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-table/-/actor-sparql-serialize-table-1.6.3.tgz",
"integrity": "sha512-WmG8uGXo9Eu8qCB+qvMBynpSR2OrwgaLxCLAToPkRxGIEY4tvzVCszcWlGLNdxXvXM/nyq76B5BTf4LquyIduQ==",
"requires": {
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-sparql-serialize-tree": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-tree/-/actor-sparql-serialize-tree-1.6.3.tgz",
"integrity": "sha512-xAHzr9m99Emv4F3nn0ONGE65cd5xFsy23TH+MmUKa44+spjtZzGOMPX1cQ1vcegwJYprBiqQroZ50zKOuaUU/w==",
"requires": {
"sparqljson-to-tree": "^1.3.0"
}
},
"@comunica/bus-context-preprocess": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/bus-context-preprocess/-/bus-context-preprocess-1.6.3.tgz",
"integrity": "sha512-zAg6jaiKmKzrwGW74v8deJsqBaLNJQ9mdwHj1CZ6BtfBOivWuwvwp4O8qOZw0iSTjMWUinJbkXz/RHKjcBVsiw=="
},
"@comunica/bus-http": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/bus-http/-/bus-http-1.6.3.tgz",
"integrity": "sha512-FcEyyw5UFc7zIFcuc4nZynzdNo37STs7C/fFPqKQ86Hd6EjLMPqrV7IHJNb0oEm5tQt+eOuWjhBW8KAWb7GpEQ==",
"requires": {
"is-stream": "^1.1.0",
"node-web-streams": "^0.2.2"
}
},
"@comunica/bus-http-invalidate": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/bus-http-invalidate/-/bus-http-invalidate-1.6.3.tgz",
"integrity": "sha512-Y7b7O4EI988xwn+hFWd4WOb75LpE2UuPZuXhomOcRG2e+/JUVkVwJZYFTHtnlfj3h4N+c3zMWhGRDdHpbMP6LA=="
},
"@comunica/bus-init": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@comunica/bus-init/-/bus-init-1.6.3.tgz",
"integrity": "sha512-Jtl6uffJuLi2Bz+DyiI06iW0Kz22bwiaIPWuYVb+A5YBCUID4RkKpDZMIGBKzweMQhlNaZvAXVYD1W4YAeHyFg=="
},
"@comunica/bus-optimize-query-operation": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@comunica/bus-optimize-query-operation/-/bus-optimize-query-operation-1.6.4.tgz",
"integrity": "sha512-jVNwac9xP9/tuFSi3zhldVI7FgzIkGA3XVSUvu0BqMcnHow2l7r5N/ifwHoac0WZPYUhxCyeyMXA0xtdx4I5Gw==",
"requires": {
"sparqlalgebrajs": "^1.5.0"
}