This repository has been archived by the owner on May 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package-lock.json
11894 lines (11894 loc) · 455 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": "pod-server",
"version": "0.3.4",
"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==",
"requires": {
"@babel/highlight": "^7.0.0"
}
},
"@babel/core": {
"version": "7.6.2",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.6.2.tgz",
"integrity": "sha512-l8zto/fuoZIbncm+01p8zPSDZu/VuuJhAfA7d/AbzM09WR7iVhavvfNDYCNpo1VvLk6E6xgAoP9P+/EMJHuRkQ==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.5.5",
"@babel/generator": "^7.6.2",
"@babel/helpers": "^7.6.2",
"@babel/parser": "^7.6.2",
"@babel/template": "^7.6.0",
"@babel/traverse": "^7.6.2",
"@babel/types": "^7.6.0",
"convert-source-map": "^1.1.0",
"debug": "^4.1.0",
"json5": "^2.1.0",
"lodash": "^4.17.13",
"resolve": "^1.3.2",
"semver": "^5.4.1",
"source-map": "^0.5.0"
},
"dependencies": {
"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==",
"dev": true,
"requires": {
"minimist": "^1.2.0"
}
},
"minimist": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
"dev": true
},
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
"dev": true
},
"source-map": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
"dev": true
}
}
},
"@babel/generator": {
"version": "7.6.2",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.6.2.tgz",
"integrity": "sha512-j8iHaIW4gGPnViaIHI7e9t/Hl8qLjERI6DcV9kEpAIDJsAOrcnXqRS7t+QbhL76pwbtqP+QCQLL0z1CyVmtjjQ==",
"dev": true,
"requires": {
"@babel/types": "^7.6.0",
"jsesc": "^2.5.1",
"lodash": "^4.17.13",
"source-map": "^0.5.0"
},
"dependencies": {
"jsesc": {
"version": "2.5.2",
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz",
"integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==",
"dev": true
},
"source-map": {
"version": "0.5.7",
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz",
"integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=",
"dev": true
}
}
},
"@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==",
"dev": true,
"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==",
"dev": true,
"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.4.4",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz",
"integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==",
"dev": true,
"requires": {
"@babel/types": "^7.4.4"
}
},
"@babel/helpers": {
"version": "7.6.2",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.6.2.tgz",
"integrity": "sha512-3/bAUL8zZxYs1cdX2ilEE0WobqbCmKWr/889lf2SS0PpDcpEIY8pb1CCyz0pEcX3pEb+MCbks1jIokz2xLtGTA==",
"dev": true,
"requires": {
"@babel/template": "^7.6.0",
"@babel/traverse": "^7.6.2",
"@babel/types": "^7.6.0"
}
},
"@babel/highlight": {
"version": "7.5.0",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz",
"integrity": "sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==",
"requires": {
"chalk": "^2.0.0",
"esutils": "^2.0.2",
"js-tokens": "^4.0.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"requires": {
"color-convert": "^1.9.0"
}
},
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"js-tokens": {
"version": "4.0.0",
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
},
"supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"requires": {
"has-flag": "^3.0.0"
}
}
}
},
"@babel/parser": {
"version": "7.6.2",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.6.2.tgz",
"integrity": "sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg==",
"dev": true
},
"@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.6.0",
"resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.6.0.tgz",
"integrity": "sha512-q5BZJI0n/B10VaQQvln1IlDK3BTBJFbADx7tv+oXDPIDZuTo37H5Adb9jhlXm/fEN4Y7/64qD9mnrJJG7rmaTw==",
"requires": {
"core-js": "^2.6.5",
"regenerator-runtime": "^0.13.2"
}
},
"@babel/runtime": {
"version": "7.6.2",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.6.2.tgz",
"integrity": "sha512-EXxN64agfUqqIGeEjI5dL5z0Sw0ZwWo1mLTi4mQowCZ42O59b7DRpZAnTC6OqdF28wMBMFKNb/4uFGrVaigSpg==",
"requires": {
"regenerator-runtime": "^0.13.2"
}
},
"@babel/template": {
"version": "7.6.0",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.6.0.tgz",
"integrity": "sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.0.0",
"@babel/parser": "^7.6.0",
"@babel/types": "^7.6.0"
}
},
"@babel/traverse": {
"version": "7.6.2",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.6.2.tgz",
"integrity": "sha512-8fRE76xNwNttVEF2TwxJDGBLWthUkHWSldmfuBzVRmEDWOtu4XdINTgN7TDWzuLg4bbeIMLvfMFD9we5YcWkRQ==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.5.5",
"@babel/generator": "^7.6.2",
"@babel/helper-function-name": "^7.1.0",
"@babel/helper-split-export-declaration": "^7.4.4",
"@babel/parser": "^7.6.2",
"@babel/types": "^7.6.0",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.13"
},
"dependencies": {
"globals": {
"version": "11.12.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
"dev": true
}
}
},
"@babel/types": {
"version": "7.6.1",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.6.1.tgz",
"integrity": "sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==",
"dev": true,
"requires": {
"esutils": "^2.0.2",
"lodash": "^4.17.13",
"to-fast-properties": "^2.0.0"
},
"dependencies": {
"to-fast-properties": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
"integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=",
"dev": true
}
}
},
"@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"
},
"dependencies": {
"minimist": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=",
"dev": true
}
}
},
"@comunica/actor-abstract-bindings-hash": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.9.0.tgz",
"integrity": "sha512-79xZlbishqYey9L8luG2lKkj0Z0lFC2NL/xVQwVEWe7edPLpjBtspWDn04XtrhBrL7fiqJWx6wYwXSDmO5y3Ug==",
"requires": {
"json-stable-stringify": "^1.0.1",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-abstract-mediatyped": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.9.0.tgz",
"integrity": "sha512-DoMXxBklBeBEZ9M76V5ODfJ7icENMWWRr0Sh2TxgoKoy4Usm0mU5lLPfCqu7qICEVDAzfuVWcEYQ5wf9SGqTjQ==",
"requires": {
"lodash.mapvalues": "^4.6.0"
}
},
"@comunica/actor-abstract-path": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.9.0.tgz",
"integrity": "sha512-KfAU8HTr72K3TTyXqq7I3Oc0lj7mLW9NBRuhqEiNAn82Ys0LTgZuJ7zYPyW7wtc3fCLkcBM8EfWYwbylp74ing==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.5.2"
}
},
"@comunica/actor-http-memento": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.9.0.tgz",
"integrity": "sha512-RvpQLatdQvxRQgS9M8Jum8vRqfxuymiVqpPWdIMiMxFHE6mlK1hJr59WdxcBSVYHWpoltYsfRVRWoJoGgikR4A==",
"requires": {
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-native": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.9.0.tgz",
"integrity": "sha512-i9Tn15Yceii88mP7Q2aEcMZOIUurcAGn0zNucrUesPe2J1Dt7TPxszE/H3FkJA0YDzpkNhSGED4UKExAYLoTAg==",
"requires": {
"follow-redirects": "^1.5.1",
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-proxy": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-1.9.0.tgz",
"integrity": "sha512-fLBXL5NVuTGH9kc4BfXFwRAwHUDXB07fV1SBRpewobMMextWTXe5UF9vQvdLrlhg+Dy2EJYBS1jKpfjzs8MWIg=="
},
"@comunica/actor-init-sparql": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.9.1.tgz",
"integrity": "sha512-2oKvjitwQQDFPpLbDi2x5flqVf0i09wXAH5JPhXHuxvYFXUq8F5eMsBVQogNmT8oNvWI3snyxaOFgCu+SGmFDA==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.9.0",
"@comunica/actor-abstract-mediatyped": "^1.9.0",
"@comunica/actor-http-memento": "^1.9.0",
"@comunica/actor-http-native": "^1.9.0",
"@comunica/actor-http-proxy": "^1.9.0",
"@comunica/actor-optimize-query-operation-join-bgp": "^1.9.0",
"@comunica/actor-query-operation-ask": "^1.9.0",
"@comunica/actor-query-operation-bgp-empty": "^1.9.0",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.9.0",
"@comunica/actor-query-operation-bgp-single": "^1.9.0",
"@comunica/actor-query-operation-construct": "^1.9.0",
"@comunica/actor-query-operation-describe-subject": "^1.9.0",
"@comunica/actor-query-operation-distinct-hash": "^1.9.0",
"@comunica/actor-query-operation-extend": "^1.9.0",
"@comunica/actor-query-operation-filter-sparqlee": "^1.9.0",
"@comunica/actor-query-operation-from-quad": "^1.9.0",
"@comunica/actor-query-operation-group": "^1.9.0",
"@comunica/actor-query-operation-join": "^1.9.0",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.9.0",
"@comunica/actor-query-operation-minus": "^1.9.0",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.9.0",
"@comunica/actor-query-operation-path-alt": "^1.9.0",
"@comunica/actor-query-operation-path-inv": "^1.9.0",
"@comunica/actor-query-operation-path-link": "^1.9.0",
"@comunica/actor-query-operation-path-nps": "^1.9.0",
"@comunica/actor-query-operation-path-one-or-more": "^1.9.0",
"@comunica/actor-query-operation-path-seq": "^1.9.0",
"@comunica/actor-query-operation-path-zero-or-more": "^1.9.0",
"@comunica/actor-query-operation-path-zero-or-one": "^1.9.0",
"@comunica/actor-query-operation-project": "^1.9.0",
"@comunica/actor-query-operation-quadpattern": "^1.9.0",
"@comunica/actor-query-operation-reduced-hash": "^1.9.0",
"@comunica/actor-query-operation-service": "^1.9.0",
"@comunica/actor-query-operation-slice": "^1.9.0",
"@comunica/actor-query-operation-sparql-endpoint": "^1.9.0",
"@comunica/actor-query-operation-union": "^1.9.0",
"@comunica/actor-query-operation-values": "^1.9.0",
"@comunica/actor-rdf-dereference-http-parse": "^1.9.0",
"@comunica/actor-rdf-join-nestedloop": "^1.9.0",
"@comunica/actor-rdf-metadata-all": "^1.9.0",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.9.0",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.9.0",
"@comunica/actor-rdf-metadata-extract-sparql-service": "^1.9.0",
"@comunica/actor-rdf-metadata-primary-topic": "^1.9.0",
"@comunica/actor-rdf-parse-html": "^1.9.0",
"@comunica/actor-rdf-parse-html-rdfa": "^1.9.0",
"@comunica/actor-rdf-parse-html-script": "^1.9.0",
"@comunica/actor-rdf-parse-jsonld": "^1.9.0",
"@comunica/actor-rdf-parse-n3": "^1.9.0",
"@comunica/actor-rdf-parse-rdfxml": "^1.9.0",
"@comunica/actor-rdf-parse-xml-rdfa": "^1.9.0",
"@comunica/actor-rdf-resolve-hypermedia-links-next": "^1.9.0",
"@comunica/actor-rdf-resolve-hypermedia-none": "^1.9.1",
"@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.9.1",
"@comunica/actor-rdf-resolve-hypermedia-sparql": "^1.9.0",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.9.0",
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.9.0",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.9.0",
"@comunica/actor-rdf-serialize-jsonld": "^1.9.0",
"@comunica/actor-rdf-serialize-n3": "^1.9.0",
"@comunica/actor-sparql-parse-algebra": "^1.9.0",
"@comunica/actor-sparql-parse-graphql": "^1.9.0",
"@comunica/actor-sparql-serialize-json": "^1.9.0",
"@comunica/actor-sparql-serialize-rdf": "^1.9.0",
"@comunica/actor-sparql-serialize-simple": "^1.9.0",
"@comunica/actor-sparql-serialize-sparql-json": "^1.9.0",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.9.0",
"@comunica/actor-sparql-serialize-stats": "^1.9.0",
"@comunica/actor-sparql-serialize-table": "^1.9.0",
"@comunica/actor-sparql-serialize-tree": "^1.9.0",
"@comunica/bus-context-preprocess": "^1.9.0",
"@comunica/bus-http": "^1.9.0",
"@comunica/bus-http-invalidate": "^1.9.0",
"@comunica/bus-init": "^1.9.0",
"@comunica/bus-optimize-query-operation": "^1.9.0",
"@comunica/bus-query-operation": "^1.9.0",
"@comunica/bus-rdf-dereference": "^1.9.0",
"@comunica/bus-rdf-dereference-paged": "^1.9.0",
"@comunica/bus-rdf-join": "^1.9.0",
"@comunica/bus-rdf-metadata": "^1.9.0",
"@comunica/bus-rdf-metadata-extract": "^1.9.0",
"@comunica/bus-rdf-parse": "^1.9.0",
"@comunica/bus-rdf-parse-html": "^1.9.0",
"@comunica/bus-rdf-resolve-hypermedia": "^1.9.0",
"@comunica/bus-rdf-resolve-hypermedia-links": "^1.9.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.9.0",
"@comunica/bus-rdf-serialize": "^1.9.0",
"@comunica/bus-sparql-parse": "^1.9.0",
"@comunica/bus-sparql-serialize": "^1.9.0",
"@comunica/core": "^1.9.0",
"@comunica/logger-pretty": "^1.9.0",
"@comunica/logger-void": "^1.9.0",
"@comunica/mediator-all": "^1.9.0",
"@comunica/mediator-combine-pipeline": "^1.9.0",
"@comunica/mediator-combine-union": "^1.9.0",
"@comunica/mediator-number": "^1.9.0",
"@comunica/mediator-race": "^1.9.0",
"@comunica/runner": "^1.9.0",
"@comunica/runner-cli": "^1.9.0",
"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"
},
"dependencies": {
"minimist": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz",
"integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ="
}
}
},
"@comunica/actor-init-sparql-rdfjs": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql-rdfjs/-/actor-init-sparql-rdfjs-1.9.1.tgz",
"integrity": "sha512-nkeLT+UVGClYk2REN90kwGM87AQrMyh/aJvB05SlxBl6ZpRn2l9AY98mO/rq61EaESTqaNQ2kuUkeVgGlesMnw==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.9.0",
"@comunica/actor-init-sparql": "^1.9.1",
"@comunica/actor-query-operation-ask": "^1.9.0",
"@comunica/actor-query-operation-bgp-empty": "^1.9.0",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.9.0",
"@comunica/actor-query-operation-bgp-single": "^1.9.0",
"@comunica/actor-query-operation-construct": "^1.9.0",
"@comunica/actor-query-operation-describe-subject": "^1.9.0",
"@comunica/actor-query-operation-distinct-hash": "^1.9.0",
"@comunica/actor-query-operation-extend": "^1.9.0",
"@comunica/actor-query-operation-filter-sparqlee": "^1.9.0",
"@comunica/actor-query-operation-from-quad": "^1.9.0",
"@comunica/actor-query-operation-join": "^1.9.0",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.9.0",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.9.0",
"@comunica/actor-query-operation-path-alt": "^1.9.0",
"@comunica/actor-query-operation-path-inv": "^1.9.0",
"@comunica/actor-query-operation-path-link": "^1.9.0",
"@comunica/actor-query-operation-path-nps": "^1.9.0",
"@comunica/actor-query-operation-path-one-or-more": "^1.9.0",
"@comunica/actor-query-operation-path-seq": "^1.9.0",
"@comunica/actor-query-operation-path-zero-or-more": "^1.9.0",
"@comunica/actor-query-operation-path-zero-or-one": "^1.9.0",
"@comunica/actor-query-operation-project": "^1.9.0",
"@comunica/actor-query-operation-quadpattern": "^1.9.0",
"@comunica/actor-query-operation-service": "^1.9.0",
"@comunica/actor-query-operation-slice": "^1.9.0",
"@comunica/actor-query-operation-union": "^1.9.0",
"@comunica/actor-query-operation-values": "^1.9.0",
"@comunica/actor-rdf-join-nestedloop": "^1.9.0",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.9.0",
"@comunica/actor-rdf-serialize-jsonld": "^1.9.0",
"@comunica/actor-rdf-serialize-n3": "^1.9.0",
"@comunica/actor-sparql-parse-algebra": "^1.9.0",
"@comunica/actor-sparql-serialize-json": "^1.9.0",
"@comunica/actor-sparql-serialize-rdf": "^1.9.0",
"@comunica/actor-sparql-serialize-simple": "^1.9.0",
"@comunica/actor-sparql-serialize-sparql-json": "^1.9.0",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.9.0",
"@comunica/bus-context-preprocess": "^1.9.0",
"@comunica/bus-init": "^1.9.0",
"@comunica/bus-query-operation": "^1.9.0",
"@comunica/bus-rdf-join": "^1.9.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.9.0",
"@comunica/bus-rdf-serialize": "^1.9.0",
"@comunica/bus-sparql-parse": "^1.9.0",
"@comunica/bus-sparql-serialize": "^1.9.0",
"@comunica/core": "^1.9.0",
"@comunica/mediator-combine-pipeline": "^1.9.0",
"@comunica/mediator-combine-union": "^1.9.0",
"@comunica/mediator-number": "^1.9.0",
"@comunica/mediator-race": "^1.9.0",
"@comunica/runner": "^1.9.0",
"@comunica/runner-cli": "^1.9.0"
}
},
"@comunica/actor-optimize-query-operation-join-bgp": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-1.9.0.tgz",
"integrity": "sha512-c6uUh84U8cXromyvoW7HQwIQyFdcJeiMm4Xbj7Ma6HVaIbkOJLPMvIHd8c91wjdBXpO6+ywR5AdlGTQCXS4HCQ==",
"requires": {
"sparqlalgebrajs": "^1.5.2"
}
},
"@comunica/actor-query-operation-ask": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-1.9.0.tgz",
"integrity": "sha512-eBZUF4Rc2crXaRjt5uFB5Nqjv5rTNKkqtq2HML+n/O7aHKiRFhkIsgcwcwOPc8m9K2EA7JLlXR1TE+8JJ0ObnQ=="
},
"@comunica/actor-query-operation-bgp-empty": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-empty/-/actor-query-operation-bgp-empty-1.9.0.tgz",
"integrity": "sha512-WIIKemACv2qs5VzixnyDMyssOGnY+ZblSibus0JnAJBB0g/7kToKDAGlhaj81ytytyRKNQsX0r4NxhASRepPuw==",
"requires": {
"asynciterator": "^2.0.1"
}
},
"@comunica/actor-query-operation-bgp-left-deep-smallest": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-left-deep-smallest/-/actor-query-operation-bgp-left-deep-smallest-1.9.0.tgz",
"integrity": "sha512-lBb5Dh9mvXG/XfuAnaT7LutmUfxRr4OxDw6K8u7U6xCBsgujiHo6aHgAfCdnfz4/vrdbYhtcelPqpqZncQGurw==",
"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.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-single/-/actor-query-operation-bgp-single-1.9.0.tgz",
"integrity": "sha512-NGv+1Xh0Id229mqXLcfShXLc7Ffi5zkbqdcEmSwVFpwCIekPWtIAGSz+RONB5SRzn6MeUXW3spuiiT0ex5JRfg=="
},
"@comunica/actor-query-operation-construct": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-1.9.0.tgz",
"integrity": "sha512-a3LHa5FI3vn4iQw12OHjp0Ej/TMp6/PRi60M2BxMFdrKsH72TqKbDM99lUQW0vLZhxHLs5k7lKZvkqb7aH3y0Q==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-query-operation-describe-subject": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-1.9.0.tgz",
"integrity": "sha512-jKmS0N3NKatXhs+hTkjQ5QaHduEjtfLNjujvz7GHzjiwjYDNGmADX7Rnt7cOGUNm/xeW++inml5TvXDE4UcFrQ==",
"requires": {
"@comunica/actor-query-operation-union": "^1.9.0",
"@rdfjs/data-model": "^1.1.1",
"asynciterator-union": "^2.1.1"
}
},
"@comunica/actor-query-operation-distinct-hash": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-1.9.0.tgz",
"integrity": "sha512-UBKRIjnIEHNVuD48jBNmeaTzqW2rWEFSlXA+jyhNlNQ1kwhHnNBXlNkxGel4UpYo32nqxrWbGph8MBFsj4ynpQ==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.9.0",
"json-stable-stringify": "^1.0.1"
}
},
"@comunica/actor-query-operation-extend": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-1.9.0.tgz",
"integrity": "sha512-Mwtm2OurWogUcDCYDBhYT863HFoEfnTqI0xjKdf9x8SCLbJZIWFQuUUS+cdvFqC3IALi3oyBfIcJpt56E2JqIQ==",
"requires": {
"sparqlee": "^1.1.0"
}
},
"@comunica/actor-query-operation-filter-sparqlee": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-1.9.0.tgz",
"integrity": "sha512-+7ZtnbKlAo8oIb4qziN/L364LzAUq86tyhM3uli8HOLu3omlV1EJki3hgyUmu1MQVHi0FsbrFphprz3j7maqZw==",
"requires": {
"sparqlee": "^1.1.0"
}
},
"@comunica/actor-query-operation-from-quad": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-1.9.0.tgz",
"integrity": "sha512-d8jzbY5siKbSaq4/6rIJ6RqoN7XAKFm2kb3swRjhGFPlCpzSklWvhsQV9Ja2iUSyNPnWu9lgBgjJVZMKzlkdQQ==",
"requires": {
"lodash.find": "^4.6.0",
"sparqlalgebrajs": "^1.5.2"
}
},
"@comunica/actor-query-operation-group": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-1.9.0.tgz",
"integrity": "sha512-S8ejgi84OhMV3pBYbdzAzG0hs7U3W/VOZU/ZMJjyCDBjQWdPW5GZcJuj9vwF0j832iPtYeH+4nxzWgmaSP6BZQ==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.9.0",
"rdf-string": "^1.3.1",
"sparqlee": "^1.1.0"
}
},
"@comunica/actor-query-operation-join": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-1.9.0.tgz",
"integrity": "sha512-BHk9kgSluxqB4RczSSljHRgFahEJCoXCLIqCO1PXDwZEyygeDwA5JCaS/b612Yr9r0JvGNO3FqXMuheZyrBeOg=="
},
"@comunica/actor-query-operation-leftjoin-nestedloop": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-nestedloop/-/actor-query-operation-leftjoin-nestedloop-1.9.0.tgz",
"integrity": "sha512-wm6IrKO23bd3hKfTQiTjvFWLGTW1Z7BaaQuG8RjGTlKQ4jUvduBBLn9zw/+gORlT0GN18fFI7mZI0+93/RaNRg==",
"requires": {
"sparqlee": "^1.1.0"
}
},
"@comunica/actor-query-operation-minus": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-1.9.0.tgz",
"integrity": "sha512-hFs2GFj4Dumz0u8DFoijlK/VSabptfdiNrCJmE4/x2FUd1fMcULqvibo4xb6BG+QRlhWs1V15xPILPXQe/bN/w==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.9.0",
"asynciterator-promiseproxy": "^2.0.0"
}
},
"@comunica/actor-query-operation-orderby-sparqlee": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-1.9.0.tgz",
"integrity": "sha512-c/otx9P1JHY/7USMaTZyWi0+LrrEaYVlHAfl/98+GVnCDsdO6ZK+3TfLXnT98jrhy+QzqwIK1GhH+TKodq2nNw==",
"requires": {
"rdf-string": "^1.3.1",
"sparqlee": "^1.1.0"
}
},
"@comunica/actor-query-operation-path-alt": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-1.9.0.tgz",
"integrity": "sha512-2CVs30AWdULQZQPENW5Y9QicHh50h6dqh0ZqK0crWsd4aNsNkfRHC/RIEf66iI/tRsiru2ypmlWKnqzM+5kSRw==",
"requires": {
"@comunica/actor-abstract-path": "^1.9.0",
"asynciterator-union": "^2.1.1",
"lodash.uniq": "^4.5.0",
"sparqlalgebrajs": "^1.5.2"
}
},
"@comunica/actor-query-operation-path-inv": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-1.9.0.tgz",
"integrity": "sha512-HkBolqGz2oKjL3jJRHy6PcqH5DFpi5i47kV1AjhZvRE42haDGJ6JnW/htkgdlyvZohqT2b2k/5G9E14/FY9JYQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.9.0"
}
},
"@comunica/actor-query-operation-path-link": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-1.9.0.tgz",
"integrity": "sha512-G9bzVYVRdpkD2fwoY26tbqjIUYh/xP5r3tKVyYnBbNx9t0QfQCsdBJdFR7r1MqUPPeJrPBK4TC/BR0rmH9hf8g==",
"requires": {
"@comunica/actor-abstract-path": "^1.9.0",
"sparqlalgebrajs": "^1.5.2"
}
},
"@comunica/actor-query-operation-path-nps": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-1.9.0.tgz",
"integrity": "sha512-+uY11682b+xbbMm9DaI9rpL9DHNBCA8DpPxnu5nl4EooNInRkTJkhuUfGXyvdQkXOJDPbwkw9mXuk2NjSoIvVQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.9.0",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.5.2"
}
},
"@comunica/actor-query-operation-path-one-or-more": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-1.9.0.tgz",
"integrity": "sha512-/eSb8liUuTICvmL/lOqdIexWIFAlMtnIPSgMIDpnvd8DX5VeDNJwui5CHqKvRf/yORFugyyKALto00R5S7Sgxw==",
"requires": {
"@comunica/actor-abstract-path": "^1.9.0",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.5.2"
}
},
"@comunica/actor-query-operation-path-seq": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-1.9.0.tgz",
"integrity": "sha512-vaTT8i1Q7T4k7fzZmJbrJYCdbg7F20ROP8rOMpypc1v/iyZ5MyNqn1xVsIkBROZ0Cb/sKEl779Xam9LpkVJSeA==",
"requires": {
"@comunica/actor-abstract-path": "^1.9.0",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.5.2"
}
},
"@comunica/actor-query-operation-path-zero-or-more": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-1.9.0.tgz",
"integrity": "sha512-shaiIjaRhnX3MuKlaQQg4VbNb+nuVZNojrvREDeXTw+GrwWvg+NC0pnX70Sx3cGze8n75MxixysBSkLc2oUAqg==",
"requires": {
"@comunica/actor-abstract-path": "^1.9.0",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.5.2"
}
},
"@comunica/actor-query-operation-path-zero-or-one": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-1.9.0.tgz",
"integrity": "sha512-HhYXC51+XSfw0Rj7pNqoCaBq1sP+ehaPd+8U+TUgO8N4HUsgC4nEf/S5UbuQcletL3OBdwgBCAA4yU7iQa0tKQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.9.0",
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-query-operation-project": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-1.9.0.tgz",
"integrity": "sha512-hEfXKLApZT2R5T33tY8aFoVytEXFAi0h3gyrSpO090SMAHH2TJ0HOimCPlf3G0Md9Kw0PfQObQEjx0SicWPlpg==",
"requires": {
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-query-operation-quadpattern": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-1.9.0.tgz",
"integrity": "sha512-CcEF3thqNViwLhh6xOgSHJWze5XG4gTi42sxKn/sA9I4+a5azN7PtngQ40uTmG0z2cwe0YMN5tOslfiOWlIYdw==",
"requires": {
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-query-operation-reduced-hash": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-1.9.0.tgz",
"integrity": "sha512-AVSMedS416Hrwc2YPzepObN+RBkcZJA6VMxYAZw41l4tcie6A3wYVlzJ3Cky+L46rkhFaPqalQtkXMauJayoZQ==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.9.0",
"lru-cache": "^5.1.1"
},
"dependencies": {
"lru-cache": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
"requires": {
"yallist": "^3.0.2"
}
},
"yallist": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz",
"integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A=="
}
}
},
"@comunica/actor-query-operation-service": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-1.9.0.tgz",
"integrity": "sha512-b9MSTWBxWoLV5X0sH4+l5pjlr+EbHz92AJS6iEE6KgdUZRCmwwaxsf9or/eNuy25gnOwa5gA05qic8gUyfxKrQ==",
"requires": {
"asynciterator": "^2.0.1"
}
},
"@comunica/actor-query-operation-slice": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-1.9.0.tgz",
"integrity": "sha512-tMp+Sw7sX+D+LMGdmwpFpR0es/Vwy9HCFZ0Y8hxEuIAcUtHCdjqr1FROVuVphJY5aMJxvprE3bEswzucWoMunQ=="
},
"@comunica/actor-query-operation-sparql-endpoint": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-1.9.0.tgz",
"integrity": "sha512-ciCgxiO8A9LMGl5ZyXMTPgSMeo2TVFSRtdo1SwXMhl+xZnvGqzZVLUu18xXv1aH8tMmE0VBI2wkbIm/iMeb0hQ==",
"requires": {
"@comunica/utils-datasource": "^1.9.0",
"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.2"
}
},
"@comunica/actor-query-operation-union": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-1.9.0.tgz",
"integrity": "sha512-tDhctcdtK/N2SLxs436WwCW0BJbq4XwQD9wX/GKDrs3XTS4XGee1lfztA9K2vcx9i6WQTw+nhJMRS74qGZAy1w==",
"requires": {
"asynciterator-union": "^2.1.1",
"lodash.union": "^4.6.0"
}
},
"@comunica/actor-query-operation-values": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-1.9.0.tgz",
"integrity": "sha512-lbk7jhM9TW7/QofzFHMjARD6TlngE9HqIRDDVrhPUDY3Xe4Oo+51DDhIRZ3rDJflsAMIQkRMOjTW5FExN8vfjA==",
"requires": {
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-rdf-dereference-http-parse": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-http-parse/-/actor-rdf-dereference-http-parse-1.9.0.tgz",
"integrity": "sha512-P2L5napaeV9bjYNoBmcnlpaiugcwm6OZDhA26lpZebOktau+DWuJ/BFyqDHKqU0cm/eLtyLHqNIbp6oR9Wl6PQ==",
"requires": {
"relative-to-absolute-iri": "^1.0.5"
}
},
"@comunica/actor-rdf-join-nestedloop": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-nestedloop/-/actor-rdf-join-nestedloop-1.9.0.tgz",
"integrity": "sha512-h1aBJT0wQQCrfeFilg/tTyH+kctcAp33TR4U723AFh3vqtMqV8pZFcoGQLlaEGZp6PCMVxkuXro7EgxSk5c2iQ==",
"requires": {
"asyncjoin": "^0.3.0"
}
},
"@comunica/actor-rdf-metadata-all": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-all/-/actor-rdf-metadata-all-1.9.0.tgz",
"integrity": "sha512-i78sM/HILrsgoz+uxU2SXKPtE3t/IJQnI/6NJ7x/muoeJSAihqeifXvdDwZaOuMIbKWBmdr+TOEAmao13LZVFQ=="
},
"@comunica/actor-rdf-metadata-extract-hydra-controls": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-controls/-/actor-rdf-metadata-extract-hydra-controls-1.9.0.tgz",
"integrity": "sha512-QBUgrtQFKMDDV8gNs/s9rv9vf94nPUfsg3ExEDm2nW6z9lkV+WUOIWUSI28f6Okf0e49PB5zLgh1gY4E70bZyg==",
"requires": {
"lodash.assign": "^4.2.0",
"uritemplate": "0.3.4"
}
},
"@comunica/actor-rdf-metadata-extract-hydra-count": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-count/-/actor-rdf-metadata-extract-hydra-count-1.9.0.tgz",
"integrity": "sha512-z2qImbKc/aeGIQBqH21KoRbWm+uHewIQMeQB975ePr/JQrWxY+4WpMW7cL0PkLVDGCM8jjRAx9NHEUvul9XVIQ=="
},
"@comunica/actor-rdf-metadata-extract-sparql-service": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-sparql-service/-/actor-rdf-metadata-extract-sparql-service-1.9.0.tgz",
"integrity": "sha512-kcXgOhbfyf2u/LehDaZEneWBCfClO7FWDy+/QPwj9pABK/VQn/bu/NFKFtDO3YGjXlKZQLN0B/LWAx8YYa0cKA=="
},
"@comunica/actor-rdf-metadata-primary-topic": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-primary-topic/-/actor-rdf-metadata-primary-topic-1.9.0.tgz",
"integrity": "sha512-gGfH5GwFNzn7XYhTZx7OcVFXc7oc0CMPx8ptRfKTe+JVtZt8OpsonqeYaHULfnmA3OKNzKS36xv5kT1vZkH14g=="
},
"@comunica/actor-rdf-parse-html": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html/-/actor-rdf-parse-html-1.9.0.tgz",
"integrity": "sha512-eqPc1pUqYAHD32Xm+13EIxxGOzcKUkH1WZOxGyqqAPi7oSbAyGoTalm5VdaMUOsJcs6MdqQt0lcj5LfAabgTHw==",
"requires": {
"htmlparser2": "^3.10.1"
}
},
"@comunica/actor-rdf-parse-html-rdfa": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-rdfa/-/actor-rdf-parse-html-rdfa-1.9.0.tgz",
"integrity": "sha512-Y5e7U628PxsLH/JK0iy824My7wp97LJEHKxx1zf4iRtNxaihNhyM7lau5xXBNLPANV6PU2XkKSQF/map8WcZ3Q==",
"requires": {
"rdfa-streaming-parser": "^1.1.0"
}
},
"@comunica/actor-rdf-parse-html-script": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-script/-/actor-rdf-parse-html-script-1.9.0.tgz",
"integrity": "sha512-5JNPrfmGaUmxyAwzdDnGQHRjneK2Tki35LFak2NVpVnJwIWcN5rokTiKGFZ/d9y8r1W655chCMSI/MdiR5oqCg=="
},
"@comunica/actor-rdf-parse-jsonld": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-jsonld/-/actor-rdf-parse-jsonld-1.9.0.tgz",
"integrity": "sha512-RhsYo/f4qNSyqKCy4T4+LCbqq4opdOu5mSaZL+zRozcq3+b/a593iGHKM0OObqBsHlau0FeimI1Um2L7SMXssA==",
"requires": {
"jsonld-streaming-parser": "^1.1.0"
}
},
"@comunica/actor-rdf-parse-n3": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-n3/-/actor-rdf-parse-n3-1.9.0.tgz",
"integrity": "sha512-/n8cbU9qpdV7ojR5nBxBfGuP6hsbN8fpZmUimIirjEpMuG2RpONbCAFTUPM+UNCCl6CYqf+DCXsGFcJfQ3NzMw==",
"requires": {
"n3": "^1.0.0"
}
},
"@comunica/actor-rdf-parse-rdfxml": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-rdfxml/-/actor-rdf-parse-rdfxml-1.9.0.tgz",
"integrity": "sha512-UP7fvUg+8AosXFSbYdaPLT0qWx0OAjPthHoWSxN2vBDAz+DOl3nu4alGAktRF0oV5/MJZ3oGKXMm6U05AKiJWQ==",
"requires": {
"rdfxml-streaming-parser": "^1.1.0"
}
},
"@comunica/actor-rdf-parse-xml-rdfa": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-xml-rdfa/-/actor-rdf-parse-xml-rdfa-1.9.0.tgz",
"integrity": "sha512-VWJffNb3z6xzRpcQJ0ty6v0n0ZDZdDn4EMKhGVklFNiQMxb+JN9c6np7VKx5T0UYfN5xgiRR+aIxmoUBz9cDbA==",
"requires": {
"rdfa-streaming-parser": "^1.1.0"
}
},
"@comunica/actor-rdf-resolve-hypermedia-links-next": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-links-next/-/actor-rdf-resolve-hypermedia-links-next-1.9.0.tgz",
"integrity": "sha512-ahhLRXMZL6VMQmS80QwhI5i25hp1IoEzMglsQPdRBbnLV1r1IsurkkMQ6O08tibcdVcsgF6MDJPwMlsbH3l06w=="
},
"@comunica/actor-rdf-resolve-hypermedia-none": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-none/-/actor-rdf-resolve-hypermedia-none-1.9.1.tgz",
"integrity": "sha512-z6sZClhTwHDwrWMiN+cgHyoRSi1wcsc2M6FDVhco3L48EFv6lktvOSC4w810gZEXL3aA5T7SmKAHSPeIcP49RA==",
"requires": {
"rdf-store-stream": "^1.0.0"
}
},
"@comunica/actor-rdf-resolve-hypermedia-qpf": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-qpf/-/actor-rdf-resolve-hypermedia-qpf-1.9.1.tgz",
"integrity": "sha512-cupiDFoiXiD1tfxmSEsAPJY7D9+PP0nmCHaz4mYRbn/KX9WRO52mWHXx30bLbgdJQuxB6A2c5hmNGvzcc5iekw==",
"requires": {
"@rdfjs/data-model": "^1.1.0",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.2.0",
"rdf-terms": "^1.5.1"
}
},
"@comunica/actor-rdf-resolve-hypermedia-sparql": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-hypermedia-sparql/-/actor-rdf-resolve-hypermedia-sparql-1.9.0.tgz",
"integrity": "sha512-cRWXh1dSTEHmtNuR1pi1oI9oiFuMBjA+bdjfu39jGEIfh21UM4kUSTX7dKCIYPZRLnVroKkyERUwNDMmiSH6fg==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.0.0",
"rdf-terms": "^1.4.0",
"sparqlalgebrajs": "^1.5.2",
"sparqljson-parse": "^1.5.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-federated": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-federated/-/actor-rdf-resolve-quad-pattern-federated-1.9.0.tgz",
"integrity": "sha512-tK1CMm6sDo0J2QfYypU0MHRlOVwyXJ2e0IdkPDrrq9vsie/HldFK6w8OfOR75N6agmAiq6pmsbA1I44sSybx3g==",
"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-hypermedia": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-hypermedia/-/actor-rdf-resolve-quad-pattern-hypermedia-1.9.0.tgz",
"integrity": "sha512-ETuKPTDlC8wEfADSuceOPiV0WT2Vrga5JToRHxxQ9J6aiOXYbwrRCnjyVH9DCcZRKHovnvLVnSSKm2Xcg0EnzA==",
"requires": {
"@comunica/utils-datasource": "^1.9.0",
"@rdfjs/data-model": "^1.1.1",
"asynciterator-promiseproxy": "^2.0.0",
"lru-cache": "^5.1.1",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.5.1"
},
"dependencies": {
"lru-cache": {
"version": "5.1.1",
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
"requires": {
"yallist": "^3.0.2"
}
},
"yallist": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz",
"integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A=="
}
}
},
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source/-/actor-rdf-resolve-quad-pattern-rdfjs-source-1.9.0.tgz",
"integrity": "sha512-CZa991Mz41IiNiyfDJOKWBmomayNLOZe96a7KbQbDOZUf7rmIVXhezB7MmlpdHYM1vGFlngs/MV+tKYu8dPQsg=="
},
"@comunica/actor-rdf-serialize-jsonld": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-jsonld/-/actor-rdf-serialize-jsonld-1.9.0.tgz",