forked from pheyvaer/solid-chess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
9862 lines (9862 loc) · 356 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "solid-chess",
"version": "0.1.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@11ty/eleventy": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@11ty/eleventy/-/eleventy-0.6.0.tgz",
"integrity": "sha512-IFac7cQQQEVwrbaTshCy2ibUUty154gyGIZ87gRkEDmsONgztvXBDVo6CTlUH27t+5xfwjiiSWTh5cC1WWOf8g==",
"dev": true,
"requires": {
"browser-sync": "^2.24.7",
"chalk": "^2.4.1",
"debug": "^4.0.1",
"ejs": "^2.6.1",
"fast-glob": "^2.2.2",
"fs-extra": "^7.0.0",
"glob-watcher": "^5.0.1",
"gray-matter": "^4.0.1",
"hamljs": "^0.6.2",
"handlebars": "^4.0.12",
"javascript-stringify": "^1.6.0",
"liquidjs": "^6.0.1",
"lodash": "^4.17.11",
"luxon": "^1.4.1",
"markdown-it": "^8.4.2",
"minimist": "^1.2.0",
"multimatch": "^2.1.0",
"mustache": "^2.3.0",
"normalize-path": "^3.0.0",
"nunjucks": "^3.1.4",
"parse-filepath": "^1.0.2",
"please-upgrade-node": "^3.1.1",
"pretty": "^2.0.0",
"pug": "^2.0.3",
"recursive-copy": "^2.0.9",
"semver": "^5.5.1",
"slugify": "^1.3.1",
"time-require": "^0.1.2",
"valid-url": "^1.0.9"
},
"dependencies": {
"debug": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.0.tgz",
"integrity": "sha512-heNPJUJIqC+xB6ayLAMHaIrmN9HKa7aQO8MGqKpvCA+uJYVcvR6l5kgdrhRuwPFHU7P5/A1w0BjByPHwpfTDKg==",
"dev": true,
"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==",
"dev": true
},
"normalize-path": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
"dev": true
}
}
},
"@babel/runtime": {
"version": "7.1.5",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.1.5.tgz",
"integrity": "sha512-xKnPpXG/pvK1B90JkwwxSGii90rQGKtzcMt2gI5G6+M0REXaq6rOHsGC2ay6/d0Uje7zzvSzjEzfR3ENhFlrfA==",
"requires": {
"regenerator-runtime": "^0.12.0"
}
},
"@comunica/actor-abstract-bindings-hash": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.4.4.tgz",
"integrity": "sha512-SgT7+WAzas/S8OyGs018KRAkCZbCo9Xo1YQTMf2JmL30wLc8iR8vrtlBgd/noyesd9iOFKiroyrR19Zm3/qnpQ=="
},
"@comunica/actor-abstract-mediatyped": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.4.0.tgz",
"integrity": "sha512-30WSiLjDaZ7mkeRzbsoW91UHaWtfgYH54W7qIP9osntfFUQq6KbYGsmlnsDPSva+cmGralAb7g3HMqErBeFHgQ==",
"requires": {
"lodash.mapvalues": "^4.6.0"
}
},
"@comunica/actor-abstract-path": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.4.4.tgz",
"integrity": "sha512-vIzAfD65P7hzEUzQz70ENnwaSIfgMJGVy2ICHi8ONp+TmL2xn+8ewbjlUmJEpSjyv9GMRtWS5203qljYVio/sg==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.3.1"
}
},
"@comunica/actor-context-preprocess-rdf-source-identifier": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-rdf-source-identifier/-/actor-context-preprocess-rdf-source-identifier-1.4.0.tgz",
"integrity": "sha512-NdR1XNjFyYg+e2L+YScKFEl7Y4MdDd/9cd8catsEqxymxLVmQjRVltP7QhAt5TPvake5pQmynpl547SwYeg4Rg==",
"requires": {
"asyncreiterable": "^1.1.0"
}
},
"@comunica/actor-http-memento": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.4.0.tgz",
"integrity": "sha512-MhOlPeAo9U3VRRIMo/giCJo6Mhmc/g8EPCfT0bo5WHvMdO+Mpepm9QSxvhC0CkqOf62mb58pddzCj7SeehOkYQ==",
"requires": {
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-native": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.4.4.tgz",
"integrity": "sha512-Gk8gqd8JBHWzT/M8IOuKdOR9toYmIhim0lx6F4uNDAEIxjvNp2e6pKMpskeHRwJvi4TKNMrv+k/k1AhwhdTYxw==",
"requires": {
"follow-redirects": "^1.5.1",
"isomorphic-fetch": "^2.2.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-init-sparql": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.4.4.tgz",
"integrity": "sha512-BOwZ/Db+nt+tO4aL1H7D0JLpv/6y/uY4SqUxsEj9T02nGm/5EERpxWdoxc2xs/sfymymnoLtrICAryH+NSL3Tw==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.4.4",
"@comunica/actor-abstract-mediatyped": "^1.4.0",
"@comunica/actor-context-preprocess-rdf-source-identifier": "^1.4.0",
"@comunica/actor-http-memento": "^1.4.0",
"@comunica/actor-http-native": "^1.4.4",
"@comunica/actor-query-operation-ask": "^1.4.4",
"@comunica/actor-query-operation-bgp-empty": "^1.4.4",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.4.4",
"@comunica/actor-query-operation-bgp-single": "^1.4.4",
"@comunica/actor-query-operation-construct": "^1.4.4",
"@comunica/actor-query-operation-describe-subject": "^1.4.4",
"@comunica/actor-query-operation-distinct-hash": "^1.4.4",
"@comunica/actor-query-operation-filter-direct": "^1.4.4",
"@comunica/actor-query-operation-from-quad": "^1.4.4",
"@comunica/actor-query-operation-join": "^1.4.4",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.4.4",
"@comunica/actor-query-operation-minus": "^1.4.4",
"@comunica/actor-query-operation-orderby-direct": "^1.4.4",
"@comunica/actor-query-operation-path-alt": "^1.4.4",
"@comunica/actor-query-operation-path-inv": "^1.4.4",
"@comunica/actor-query-operation-path-link": "^1.4.4",
"@comunica/actor-query-operation-path-nps": "^1.4.4",
"@comunica/actor-query-operation-path-one-or-more": "^1.4.4",
"@comunica/actor-query-operation-path-seq": "^1.4.4",
"@comunica/actor-query-operation-path-zero-or-more": "^1.4.4",
"@comunica/actor-query-operation-path-zero-or-one": "^1.4.4",
"@comunica/actor-query-operation-project": "^1.4.4",
"@comunica/actor-query-operation-quadpattern": "^1.4.4",
"@comunica/actor-query-operation-reduced-hash": "^1.4.4",
"@comunica/actor-query-operation-service": "^1.4.4",
"@comunica/actor-query-operation-slice": "^1.4.4",
"@comunica/actor-query-operation-sparql-endpoint": "^1.4.4",
"@comunica/actor-query-operation-union": "^1.4.4",
"@comunica/actor-query-operation-values": "^1.4.4",
"@comunica/actor-rdf-dereference-http-parse": "^1.4.2",
"@comunica/actor-rdf-dereference-paged-next": "^1.4.4",
"@comunica/actor-rdf-join-nestedloop": "^1.4.4",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.4.0",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.4.0",
"@comunica/actor-rdf-metadata-primary-topic": "^1.4.0",
"@comunica/actor-rdf-metadata-triple-predicate": "^1.4.0",
"@comunica/actor-rdf-parse-jsonld": "^1.4.3",
"@comunica/actor-rdf-parse-n3": "^1.4.3",
"@comunica/actor-rdf-parse-rdfxml": "^1.4.3",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.4.4",
"@comunica/actor-rdf-resolve-quad-pattern-file": "^1.4.4",
"@comunica/actor-rdf-resolve-quad-pattern-qpf": "^1.4.4",
"@comunica/actor-rdf-resolve-quad-pattern-sparql-json": "^1.4.4",
"@comunica/actor-rdf-serialize-jsonld": "^1.4.0",
"@comunica/actor-rdf-serialize-n3": "^1.4.3",
"@comunica/actor-rdf-source-identifier-file-content-type": "^1.4.0",
"@comunica/actor-rdf-source-identifier-hypermedia-qpf": "^1.4.0",
"@comunica/actor-rdf-source-identifier-sparql": "^1.4.0",
"@comunica/actor-sparql-parse-algebra": "^1.4.3",
"@comunica/actor-sparql-parse-graphql": "^1.4.3",
"@comunica/actor-sparql-serialize-json": "^1.4.4",
"@comunica/actor-sparql-serialize-rdf": "^1.4.4",
"@comunica/actor-sparql-serialize-simple": "^1.4.4",
"@comunica/actor-sparql-serialize-sparql-json": "^1.4.4",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.4.4",
"@comunica/actor-sparql-serialize-stats": "^1.4.4",
"@comunica/actor-sparql-serialize-table": "^1.4.4",
"@comunica/actor-sparql-serialize-tree": "^1.4.4",
"@comunica/bus-context-preprocess": "^1.4.0",
"@comunica/bus-http": "^1.4.0",
"@comunica/bus-init": "^1.4.0",
"@comunica/bus-query-operation": "^1.4.4",
"@comunica/bus-rdf-dereference": "^1.4.0",
"@comunica/bus-rdf-dereference-paged": "^1.4.0",
"@comunica/bus-rdf-join": "^1.4.4",
"@comunica/bus-rdf-metadata": "^1.4.0",
"@comunica/bus-rdf-metadata-extract": "^1.4.0",
"@comunica/bus-rdf-parse": "^1.4.2",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.4.4",
"@comunica/bus-rdf-serialize": "^1.4.0",
"@comunica/bus-rdf-source-identifier": "^1.4.0",
"@comunica/bus-sparql-parse": "^1.4.0",
"@comunica/bus-sparql-serialize": "^1.4.4",
"@comunica/core": "^1.4.0",
"@comunica/logger-pretty": "^1.4.0",
"@comunica/logger-void": "^1.4.0",
"@comunica/mediator-combine-pipeline": "^1.4.0",
"@comunica/mediator-combine-union": "^1.4.0",
"@comunica/mediator-number": "^1.4.1",
"@comunica/mediator-race": "^1.4.0",
"@comunica/runner": "^1.4.4",
"@comunica/runner-cli": "^1.4.4",
"asyncreiterable": "^1.1.0",
"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-init-sparql-rdfjs": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql-rdfjs/-/actor-init-sparql-rdfjs-1.4.2.tgz",
"integrity": "sha512-nuei5bz9+PErZhRdLvlFH9TNpDdj/ImNcSUmNz1OBJVCpKAKB8gHyIXBEYWyLlYT4Fp4sCxiRZtR8RmdHC5bcA==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.4.0",
"@comunica/actor-context-preprocess-rdf-source-identifier": "^1.4.0",
"@comunica/actor-init-sparql": "^1.4.2",
"@comunica/actor-query-operation-ask": "^1.4.0",
"@comunica/actor-query-operation-bgp-empty": "^1.4.0",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.4.0",
"@comunica/actor-query-operation-bgp-single": "^1.4.0",
"@comunica/actor-query-operation-construct": "^1.4.0",
"@comunica/actor-query-operation-describe-subject": "^1.4.0",
"@comunica/actor-query-operation-distinct-hash": "^1.4.0",
"@comunica/actor-query-operation-filter-direct": "^1.4.0",
"@comunica/actor-query-operation-from-quad": "^1.4.0",
"@comunica/actor-query-operation-join": "^1.4.0",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.4.0",
"@comunica/actor-query-operation-orderby-direct": "^1.4.0",
"@comunica/actor-query-operation-path-alt": "^1.4.0",
"@comunica/actor-query-operation-path-inv": "^1.4.0",
"@comunica/actor-query-operation-path-link": "^1.4.0",
"@comunica/actor-query-operation-path-nps": "^1.4.0",
"@comunica/actor-query-operation-path-one-or-more": "^1.4.0",
"@comunica/actor-query-operation-path-seq": "^1.4.0",
"@comunica/actor-query-operation-path-zero-or-more": "^1.4.0",
"@comunica/actor-query-operation-path-zero-or-one": "^1.4.0",
"@comunica/actor-query-operation-project": "^1.4.0",
"@comunica/actor-query-operation-quadpattern": "^1.4.0",
"@comunica/actor-query-operation-service": "^1.4.0",
"@comunica/actor-query-operation-slice": "^1.4.0",
"@comunica/actor-query-operation-union": "^1.4.0",
"@comunica/actor-query-operation-values": "^1.4.0",
"@comunica/actor-rdf-join-nestedloop": "^1.4.0",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.4.0",
"@comunica/actor-rdf-serialize-jsonld": "^1.4.0",
"@comunica/actor-rdf-serialize-n3": "^1.4.0",
"@comunica/actor-sparql-parse-algebra": "^1.4.0",
"@comunica/actor-sparql-serialize-json": "^1.4.0",
"@comunica/actor-sparql-serialize-rdf": "^1.4.0",
"@comunica/actor-sparql-serialize-simple": "^1.4.0",
"@comunica/actor-sparql-serialize-sparql-json": "^1.4.0",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.4.0",
"@comunica/bus-context-preprocess": "^1.4.0",
"@comunica/bus-init": "^1.4.0",
"@comunica/bus-query-operation": "^1.4.0",
"@comunica/bus-rdf-join": "^1.4.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.4.0",
"@comunica/bus-rdf-serialize": "^1.4.0",
"@comunica/bus-rdf-source-identifier": "^1.4.0",
"@comunica/bus-sparql-parse": "^1.4.0",
"@comunica/bus-sparql-serialize": "^1.4.0",
"@comunica/core": "^1.4.0",
"@comunica/mediator-combine-pipeline": "^1.4.0",
"@comunica/mediator-combine-union": "^1.4.0",
"@comunica/mediator-number": "^1.4.1",
"@comunica/mediator-race": "^1.4.0",
"@comunica/runner": "^1.4.0",
"@comunica/runner-cli": "^1.4.0"
}
},
"@comunica/actor-query-operation-ask": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-1.4.4.tgz",
"integrity": "sha512-SXXik/wfFL8fQaeZ6AtMTi3YOprWsWa9p+bVqf+94fLZV1a0X2EUXUjSbLUm4EgoIW9q23zbqkuBu8hv1VR2NA=="
},
"@comunica/actor-query-operation-bgp-empty": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-empty/-/actor-query-operation-bgp-empty-1.4.4.tgz",
"integrity": "sha512-TcgsQT8RPZkOJrzWme8EnEyACOpLPXaL+20iGxYYkfEO2dprz9nDNobOBCiCVUU4muZPUEkKOK6JDAFTlk26ww==",
"requires": {
"asynciterator": "^2.0.1"
}
},
"@comunica/actor-query-operation-bgp-left-deep-smallest": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-left-deep-smallest/-/actor-query-operation-bgp-left-deep-smallest-1.4.4.tgz",
"integrity": "sha512-vaTekxDxF1zf7FDFnOJbEyzrd+AYBjI27MZFthFgAjQc89mNmxwCn1W0lQxc+MK1KTcoTyA2+g1M5Uz214bpcQ==",
"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.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-single/-/actor-query-operation-bgp-single-1.4.4.tgz",
"integrity": "sha512-3S9S5q/yICpSn4WsqvEPUYx1+Tm/UAx0yzYK+B6nj4Ip/+ZRF67NeZSGPbH1N97m9jBAJIimptAodQocU9D2yA=="
},
"@comunica/actor-query-operation-construct": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-1.4.4.tgz",
"integrity": "sha512-HD32kHIbPgi+ifko0T7tD5dyxHomIXxAD/ud1EJLkKMkl7/4AQXdM7AdcfhUAz57QS3yFRebED2c2hGTzuCDsg==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-query-operation-describe-subject": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-1.4.4.tgz",
"integrity": "sha512-EAGX3KvhuQPpxatQTfuy1FXziTBQe04bcpaETIKqdE9zrxwTsSpp0IjoOtUJZU8VFHx0OOr8GqfD7mrRA6x/rg==",
"requires": {
"@comunica/actor-query-operation-union": "^1.4.4",
"@rdfjs/data-model": "^1.1.1",
"asynciterator-union": "^2.1.1"
}
},
"@comunica/actor-query-operation-distinct-hash": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-1.4.4.tgz",
"integrity": "sha512-CNSlO8OmoQy3zaBokvSlL3tqUmntcII9M7Y4Mzar9DxhSYeOB9k8uEIy5loKWze9u1/DQnOs6C/3YuxlopG1xg==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.4.4",
"json-stable-stringify": "^1.0.1"
}
},
"@comunica/actor-query-operation-filter-direct": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-direct/-/actor-query-operation-filter-direct-1.4.4.tgz",
"integrity": "sha512-FMou+bJbtofrz410YnLrAtheJQ8QjZWnwJG4sXtW2Y9I+dfWKNaV4UF1YCYfcBsSNNSYYvEhJH+3wVjiY/hh8A==",
"requires": {
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-query-operation-from-quad": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-1.4.4.tgz",
"integrity": "sha512-e+rciTyaywA+8VPolBeRPcr7Tw/8wfw2d4Z9BN3d1nB8wt42bzPH5c+du3RWdj07CkVN7BSqDo3hh60GCEFjdA==",
"requires": {
"lodash.find": "^4.6.0",
"sparqlalgebrajs": "^1.3.1"
}
},
"@comunica/actor-query-operation-join": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-1.4.4.tgz",
"integrity": "sha512-xTxusuDuLbE2mSxxmtPUInAkuKwcPgTkCZj7jif/j934qdo7Ar1lIZwQJL0AwgOdmMODn/9Z6/oiIrLMR/xKBA=="
},
"@comunica/actor-query-operation-leftjoin-nestedloop": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-nestedloop/-/actor-query-operation-leftjoin-nestedloop-1.4.4.tgz",
"integrity": "sha512-5xdGt1SR6PxaJaygVWFe9TIOwj+/jPX0MM0K9BjRYiUZCr6TxnRDlbs6VGYACMJr0da9MwBYldbqjj9DHQHSSw=="
},
"@comunica/actor-query-operation-minus": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-1.4.4.tgz",
"integrity": "sha512-eB3bNyKxtPZu73zgg9fuKbtQERHIzUX3Y7RTCmejQ77wZo1SwEsIlEaMoudqX1+nlj31fwtqb/NtYbR6X0Axxg==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.4.4",
"asynciterator-promiseproxy": "^2.0.0"
}
},
"@comunica/actor-query-operation-orderby-direct": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-direct/-/actor-query-operation-orderby-direct-1.4.4.tgz",
"integrity": "sha512-+JvHFK2dtUbBLJxniZInVG1cGc7d4LK0eFHj0Jk69KUiIDjDJAjuMCQjBS2FdWNnS85NQ43a2NFwh3//iTqOvQ==",
"requires": {
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-query-operation-path-alt": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-1.4.4.tgz",
"integrity": "sha512-fzvfXpJyrM0jR1SpEPG3f+BhXFfxI/n5T6fXxGuXlJIO+yG9bcnneALiSMiZkylLsmsVv7nJ58OYHnQQZvlEAA==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.4",
"asynciterator-union": "^2.1.1",
"lodash.uniq": "^4.5.0",
"sparqlalgebrajs": "^1.3.1"
}
},
"@comunica/actor-query-operation-path-inv": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-1.4.4.tgz",
"integrity": "sha512-V1GVWc0sqLVvEynbZcPCqTPwFAuxVPOW4JZztMIYjKTx/pITsEgsoChz3RkuG3167P1j/zfPXEcr6x8Xe9NUTw==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.4"
}
},
"@comunica/actor-query-operation-path-link": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-1.4.4.tgz",
"integrity": "sha512-PxWk9Btd+MIgwva2AE0O3AGh2OtgYIo/uW5JzTBYx7Fz6Zvck7Z19Aqxc2KNZpft9X+alFriSWhuzRYHsko4kQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.4",
"sparqlalgebrajs": "^1.3.1"
}
},
"@comunica/actor-query-operation-path-nps": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-1.4.4.tgz",
"integrity": "sha512-YnaKVcRjiobjtiu92REIakBJ6+SPIRfs2KpfmIUb7lfz1AGtLDxqjuwB3tt56ka3LOumP+xia0wXkyhxKMXcLg==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.4",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.3.1"
}
},
"@comunica/actor-query-operation-path-one-or-more": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-1.4.4.tgz",
"integrity": "sha512-0d+Gj3tqPyqMEt45wMAE7hj5Fq6LsKkvGkljq30N0z8Ujtedy44ujczhEUSIkQKiaELBlURLx+mMSXF+tTXEhA==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.4",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.3.1"
}
},
"@comunica/actor-query-operation-path-seq": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-1.4.4.tgz",
"integrity": "sha512-8W4klGzQy7G1Z/MSGslXZIZpAHrxwt71qizCxtXSoxlLMMWZ9eAhuvg/Qer2qfO/nGmc0psHMBGvaWo/XriAOw==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.4",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.3.1"
}
},
"@comunica/actor-query-operation-path-zero-or-more": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-1.4.4.tgz",
"integrity": "sha512-cBazaR2TDjNEhjvCSErSdYmAPrzV5ottovqBBGh/BZpH850qI9fVxgoE+U/ezdiJJhS59GiVZuX5743o+8GqBg==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.4",
"rdf-string": "^1.3.1",
"sparqlalgebrajs": "^1.3.1"
}
},
"@comunica/actor-query-operation-path-zero-or-one": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-1.4.4.tgz",
"integrity": "sha512-srljARfJjV0GbMKGF58lXUynjHm08xYyHr3V7ba2eDWOt5KQB+Q2tNBdfVa1BcQrrTqXaRJClkjfLeEnJffQbg==",
"requires": {
"@comunica/actor-abstract-path": "^1.4.4",
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-query-operation-project": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-1.4.4.tgz",
"integrity": "sha512-3iDB23M5/cYlyK+Ce1T9HuhKTT2e3iQGyRpnoL83PWa3NrRNy6J/5MYbKD6rB66cL28XSMLPfHghG7A2kpvv3g==",
"requires": {
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-query-operation-quadpattern": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-1.4.4.tgz",
"integrity": "sha512-nUQ3/4mvi0KBl24zhpp0aDCRDfCD15Psl+1MvOnId/9hAWJ46AjRbXkwgynZDa2nArTJDQRzpcAQDnBfwCElGw==",
"requires": {
"asynciterator-promiseproxy": "^2.0.0",
"rdf-string": "^1.3.1",
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-query-operation-reduced-hash": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-1.4.4.tgz",
"integrity": "sha512-8EhfuFBbiCiTgb4eHVSADuCUr93qHld3GZd/CK6X1q7lW7cU5YaFgCBRFb5vhmVInjAJ2IXwt7egTUDePn8j1A==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.4.4",
"lru-cache": "^4.1.3"
}
},
"@comunica/actor-query-operation-service": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-1.4.4.tgz",
"integrity": "sha512-NsEwoFrvHbRtJj+G9ZsmtPxISb+zmCjaLyGFHkpfT4NnqAeASNZWlakckRXm4mNSl3QLKvkF8rRlzVRxG+NGVQ==",
"requires": {
"asynciterator": "^2.0.1"
}
},
"@comunica/actor-query-operation-slice": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-1.4.4.tgz",
"integrity": "sha512-Ta9l2eOqgC1i2hOONWnlaUJ5EtDKEFJPV7G3zC7XCl0V4XBKXyMqpkXy9LXOJbPoMP1VvHdxoLNJ05xOSjHvtQ=="
},
"@comunica/actor-query-operation-sparql-endpoint": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-1.4.4.tgz",
"integrity": "sha512-TXi+WU1558j3PZ72qJ2W81KduXKRnZe7FVLQOUSFRYihLy/FxjN8vF8kNQfdRUSt7rEvJEUFhYreH/cYcyQVwQ==",
"requires": {
"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.3.1"
}
},
"@comunica/actor-query-operation-union": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-1.4.4.tgz",
"integrity": "sha512-tCyYbT/0fKnmV3al2YSdytrfq9pgI5FrIW7nMKyFL5HiHQTmbDRPbCJxVeOq++gtRWVUG64p/RY2or8/OpCUeQ==",
"requires": {
"asynciterator-union": "^2.1.1",
"lodash.union": "^4.6.0"
}
},
"@comunica/actor-query-operation-values": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-1.4.4.tgz",
"integrity": "sha512-xsutv0JdD1Xjxfvnf7KnJnV6DNv2+Gmb5nzy3KnDd5QJ8d/tB27dOR0jiS/K/sVJWlKQPZ8QMbritFh/WrB/Vg==",
"requires": {
"asynciterator": "^2.0.1",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-rdf-dereference-http-parse": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-http-parse/-/actor-rdf-dereference-http-parse-1.4.2.tgz",
"integrity": "sha512-2cKGrBY5cdkqV/puIdiR6625ANsDDrHSyqfOUuC4Ro3H2y65ieknZmC6ZKgQfD6Btg0WctKUMZD4sEFHBi3VFA==",
"requires": {
"node-web-streams": "^0.2.2"
}
},
"@comunica/actor-rdf-dereference-paged-next": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-paged-next/-/actor-rdf-dereference-paged-next-1.4.4.tgz",
"integrity": "sha512-JFSzFXruSjVMvPNqrUfCxORNyr1t6jpKRWYnqvhseeqiI7mcFkuv+bFGn0Ue2HVHy0q/2PxPfDYx1GnL0BA6tQ==",
"requires": {
"asynciterator": "^2.0.1",
"lru-cache": "^4.1.1"
}
},
"@comunica/actor-rdf-join-nestedloop": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-nestedloop/-/actor-rdf-join-nestedloop-1.4.4.tgz",
"integrity": "sha512-6RVl4lVGij1iElxBn3DeWE4u2K7N0KGMRi4OdjCycE+L8ihKvM0Mg/WtHf7qK5tyKMWIlVEUYDS1MvG5ZcaScw==",
"requires": {
"asyncjoin": "^0.3.0"
}
},
"@comunica/actor-rdf-metadata-extract-hydra-controls": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-controls/-/actor-rdf-metadata-extract-hydra-controls-1.4.0.tgz",
"integrity": "sha512-haLNX+21KyrTTioMDrbDhG6SMfyUUYXLXoE8oZUwiGJOSzkkv2vcLmyaLEr+mgmalQ+LVLV/9ozmoWQxpjwA7w==",
"requires": {
"lodash.assign": "^4.2.0",
"lodash.flatten": "^4.4.0",
"lodash.mapvalues": "^4.6.0",
"lodash.values": "^4.3.0",
"uritemplate": "0.3.4"
}
},
"@comunica/actor-rdf-metadata-extract-hydra-count": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-count/-/actor-rdf-metadata-extract-hydra-count-1.4.0.tgz",
"integrity": "sha512-R1rvQBdzYApuikxdJj02rw+cAPzu9nXqJ8n+mTh7E8uXW1hFy9p+cDJBfTFOT4Ux/dNwxalTMz4y7WHdgRXlKQ=="
},
"@comunica/actor-rdf-metadata-primary-topic": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-primary-topic/-/actor-rdf-metadata-primary-topic-1.4.0.tgz",
"integrity": "sha512-yUdJBKwL53M1adz22y4gxGm2PtIudD2X1Jis9tfIrJV2p+qWLZUVmtpJYEmSvJjdoRoYe4LwGDZ209P2mUZTiQ=="
},
"@comunica/actor-rdf-metadata-triple-predicate": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-triple-predicate/-/actor-rdf-metadata-triple-predicate-1.4.0.tgz",
"integrity": "sha512-myi1b1Rz/5T22CBbklybJdqFTwUH4UJmPCP+YSUQ3JgJLnvBocRQW2PSNe7CgivWUyM/VGqoXD22SlaVaeIRZw=="
},
"@comunica/actor-rdf-parse-jsonld": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-jsonld/-/actor-rdf-parse-jsonld-1.4.3.tgz",
"integrity": "sha512-DN6gQNCCMVHWVyZccoYNdEFQU/wJOOtFu31LWg/KjO/LlOJW34ve4SE48Ed1VXPi16+diLXc92SMGelE99bwMA==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"jsonld": "^1.0.2",
"rdf-terms": "^1.4.0",
"stream-to-string": "^1.1.0"
}
},
"@comunica/actor-rdf-parse-n3": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-n3/-/actor-rdf-parse-n3-1.4.3.tgz",
"integrity": "sha512-DyblIe8G06AuPJ7LZnZGU9ngCZZX/10LvN3dGtDu0lsshSezXVnkF8P/If0CM13uYyXUoQ2RdQgi+TO/TaLSaQ==",
"requires": {
"n3": "^1.0.0"
}
},
"@comunica/actor-rdf-parse-rdfxml": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-rdfxml/-/actor-rdf-parse-rdfxml-1.4.3.tgz",
"integrity": "sha512-BQx8otpEoWCHspnVg0uK6X35vF5R0EDClgZrYsN80xq4IcyibDTj5dPNQdabXKWAIPAmUS7kTqDsGkvlhYPT/g==",
"requires": {
"rdfxml-streaming-parser": "^1.1.0"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-federated": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-federated/-/actor-rdf-resolve-quad-pattern-federated-1.4.4.tgz",
"integrity": "sha512-Vg+RaO9TOzTZk89ak42VbVEONP+WuL0/UF6sRaplFvpCDodtim0hGTGwk1lk4eN980sv5qN8MmOGw/jsm4PTrA==",
"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.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-file/-/actor-rdf-resolve-quad-pattern-file-1.4.4.tgz",
"integrity": "sha512-smaI8AUDIwNaB3UUvIWm0u6bBChUBan6OscnLSCmizEUqxDiy0AmNQIvL+992FAQRjhxkBMvtQvF9gG94nKA5Q==",
"requires": {
"asynciterator": "^2.0.1",
"n3": "^1.0.0",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-rdf-resolve-quad-pattern-qpf": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-qpf/-/actor-rdf-resolve-quad-pattern-qpf-1.4.4.tgz",
"integrity": "sha512-ZrEQgXkVl2/UqIiPDSTmgTM2aBFVq+/A1tr12dV+g8Yprshp4Dchqe7Sw1UrDk0VkSDDBbXeOwy1yc54PWrCWg==",
"requires": {
"@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.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source/-/actor-rdf-resolve-quad-pattern-rdfjs-source-1.4.4.tgz",
"integrity": "sha512-uNIhhiuYuuJqx69AmBJSo7Kg1t5D//OZzO+pkRjQV1dL51Je2dGQe1GCkl+5TwgtQRYd3ca1kf2xkZLlHDUQDw=="
},
"@comunica/actor-rdf-resolve-quad-pattern-sparql-json": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-resolve-quad-pattern-sparql-json/-/actor-rdf-resolve-quad-pattern-sparql-json-1.4.4.tgz",
"integrity": "sha512-TVIpyldS40sB1CmcpwIIJj37AWVpYXj5SMnQh5k/IKws73IRWezjPM/JQ9q1bj1xCLIuC5JTBGkJ2HE8ZYUgrw==",
"requires": {
"@rdfjs/data-model": "^1.1.1",
"asynciterator": "^2.0.1",
"asynciterator-promiseproxy": "^2.0.0",
"node-web-streams": "^0.2.2",
"rdf-terms": "^1.4.0",
"sparqlalgebrajs": "^1.3.1",
"sparqljson-parse": "^1.5.0"
}
},
"@comunica/actor-rdf-serialize-jsonld": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-jsonld/-/actor-rdf-serialize-jsonld-1.4.0.tgz",
"integrity": "sha512-6peJZEldsxv1m52iPOb7bVu/4AqCNhu2+Amn7Cq7sJJDBoKwCncPC7fmh8Nvs+mEauO8ohvWriCsYzpZ8aCtgw==",
"requires": {
"arrayify-stream": "^1.0.0",
"jsonld": "^1.0.2",
"streamify-array": "^1.0.0"
}
},
"@comunica/actor-rdf-serialize-n3": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-serialize-n3/-/actor-rdf-serialize-n3-1.4.3.tgz",
"integrity": "sha512-bDJ5B22eaZo5Ny+Uoh+q7AQIev/x/icecesxOYBCnmOEq2qORLmkvJqzyEdfNtP8yUdP3JZnJ4rFoS0JaesO9g==",
"requires": {
"n3": "^1.0.0",
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-rdf-source-identifier-file-content-type": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-source-identifier-file-content-type/-/actor-rdf-source-identifier-file-content-type-1.4.0.tgz",
"integrity": "sha512-OCMsb2iN6qtHHEXoovO50g1hWNQID9KFGa8a2/dHl74nWb+gDIgS71mEtj23kCJDkak3VQw9Hz2Z0T7221LmkA=="
},
"@comunica/actor-rdf-source-identifier-hypermedia-qpf": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-source-identifier-hypermedia-qpf/-/actor-rdf-source-identifier-hypermedia-qpf-1.4.0.tgz",
"integrity": "sha512-0ta8K55Fpmo40pHWZzSnZmboaCQRxMhPTS02TfbUdRft8WZARvO0FqtEX/sKCuJdshJIUh4Ao8l8bIXSM24yWA==",
"requires": {
"stream-to-string": "^1.1.0"
}
},
"@comunica/actor-rdf-source-identifier-sparql": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-source-identifier-sparql/-/actor-rdf-source-identifier-sparql-1.4.0.tgz",
"integrity": "sha512-3KTZrfGsmZI+hGOzzHRohuboKVAXkOGgVO6rgKW2XV9mtTeOrfxD4mGH9A/OD6cdsTJDtVk//UsuUkhEnyc/cg=="
},
"@comunica/actor-sparql-parse-algebra": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-algebra/-/actor-sparql-parse-algebra-1.4.3.tgz",
"integrity": "sha512-cEqOkCdoX03mw8dR3bIqMtPR1DMmFBKBewSDCZFm9AkOvopAhglZRyVNULuwQu0AJfZAnxncPQcTKCT3lMxslw==",
"requires": {
"sparqlalgebrajs": "^1.3.1"
}
},
"@comunica/actor-sparql-parse-graphql": {
"version": "1.4.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-parse-graphql/-/actor-sparql-parse-graphql-1.4.3.tgz",
"integrity": "sha512-ZfVt8ByHGQhEQNqjt2k/S7uzx4+p92fuM41tN7nMQBVNVE8aPtMDeiVD818dK2/pOymUfBma9O4AhmHXr095Mw==",
"requires": {
"graphql-to-sparql": "^1.4.1"
}
},
"@comunica/actor-sparql-serialize-json": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-json/-/actor-sparql-serialize-json-1.4.4.tgz",
"integrity": "sha512-LB0nlm/5dSD7XKoUslv4GnW3APWTaJXQvGlwhfTj2cdPZRHj+sq3ZR2ViyuD5LuLmqYIEnnSuaUIcZmX9UByBg==",
"requires": {
"rdf-string": "^1.3.1"
}
},
"@comunica/actor-sparql-serialize-rdf": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-rdf/-/actor-sparql-serialize-rdf-1.4.4.tgz",
"integrity": "sha512-46/qsi2KS288yQkXLK2ToEe7Z7zWfFQqq5abpctgD9JL7V28i4YF6vlZR2RsqWHAmIgkRLfrJY7JRN3q5P7Xdw=="
},
"@comunica/actor-sparql-serialize-simple": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-simple/-/actor-sparql-serialize-simple-1.4.4.tgz",
"integrity": "sha512-osP6Zp0a5Oe8AlJrLOwGcMKHuFb4+3+wjvrUUblorEMY4JRO+taLT/3pNoekoGTZa710SRBOmIqh1lTZvP12eQ=="
},
"@comunica/actor-sparql-serialize-sparql-json": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-json/-/actor-sparql-serialize-sparql-json-1.4.4.tgz",
"integrity": "sha512-XyjqyepaQc5qNN9WyL9pzLxf2wX3hcJBYwuhZEb9UametcMU32Re6EuCXRJLi3RpoEJ1+2GkM6ryzJkVcmn61Q=="
},
"@comunica/actor-sparql-serialize-sparql-xml": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-sparql-xml/-/actor-sparql-serialize-sparql-xml-1.4.4.tgz",
"integrity": "sha512-LSN7aVhlxdNQ675GeTfoOgAYbFtopXX22GLrNznlHSUSI668JGFlqgNsy+3r2vCY9ftEyM4ufMk8F5SsYcc6ow==",
"requires": {
"xml": "^1.0.1"
}
},
"@comunica/actor-sparql-serialize-stats": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-stats/-/actor-sparql-serialize-stats-1.4.4.tgz",
"integrity": "sha512-37QQ/mimMJTgW5+xSIRBrULitqi4UFQhQ/3mE8qY9P+I2JFgumODPkbZBqPIRb9TsLhqCijir5+SOchxSXMY/g=="
},
"@comunica/actor-sparql-serialize-table": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-table/-/actor-sparql-serialize-table-1.4.4.tgz",
"integrity": "sha512-QV+vYd0vKGFo/u727KfqQNBTskk7fH91tfD2JbUlRS7ASGhsKklGp1gm9ucEy7/yJfWh78Ck2dCPvL06fPMc0A==",
"requires": {
"rdf-terms": "^1.4.0"
}
},
"@comunica/actor-sparql-serialize-tree": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-sparql-serialize-tree/-/actor-sparql-serialize-tree-1.4.4.tgz",
"integrity": "sha512-fYLpLliP85L2hai7dE2Z6aJxdEikO4TYGwl9UyZ8P+qmITQ2125TKgRC2tSGR02om+eGwWnt0Yhx+DGwyP0VLQ==",
"requires": {
"sparqljson-to-tree": "^1.3.0"
}
},
"@comunica/bus-context-preprocess": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-context-preprocess/-/bus-context-preprocess-1.4.0.tgz",
"integrity": "sha512-5fNGyLXhCZSD6xf7V5AUWWGu3Vhj1Ga/TNZu6nCCLhFlxWzQvqnCBOGlAiVrWqLlzMp4HSJbtwLo6FUz6Zkzwg=="
},
"@comunica/bus-http": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-http/-/bus-http-1.4.0.tgz",
"integrity": "sha512-paeLBt/4ArNvj/348cuUm1VYG494WcQhiXTTD69GD6ienxizAbisYSWhmSDNOPtS/atLBcifx8uoyREOLrs0sw=="
},
"@comunica/bus-init": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-init/-/bus-init-1.4.0.tgz",
"integrity": "sha512-NPjWh6x5w+EqMVC7Wy5hj2pRLEsRuxy+9IThBRrQhJCnrWxA6+iz06N+7Kcyfp5796ueCM60i5j4DgcCIQDk5Q=="
},
"@comunica/bus-query-operation": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/bus-query-operation/-/bus-query-operation-1.4.4.tgz",
"integrity": "sha512-0i4Q3c/RPLDbjvXqstQjaQhjSPGTqahpNNR0mGYbzQLkmtP0n7eH5IaBRxesCBWQZ3QyibbF0t1pqNGziZkrRg==",
"requires": {
"asynciterator": "^2.0.1",
"immutable": "^3.8.2"
}
},
"@comunica/bus-rdf-dereference": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-dereference/-/bus-rdf-dereference-1.4.0.tgz",
"integrity": "sha512-JnpiqJNuENjmDW3PWM86un/rzAJrHHXZfyrsz6gUnOR7UJolGgZgEm9vLfRBYrz4sF7ezrtl0UPF+VvJ7xdBeg=="
},
"@comunica/bus-rdf-dereference-paged": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-dereference-paged/-/bus-rdf-dereference-paged-1.4.0.tgz",
"integrity": "sha512-tsDujGS8bKCyJBG96hSOyYaePx5x5IIdDRGCQHgSEoUDgwe0QaksSF5g2S1odJhqyLZ8F/YDhf4qIwZ/CJWWog=="
},
"@comunica/bus-rdf-join": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-join/-/bus-rdf-join-1.4.4.tgz",
"integrity": "sha512-Kuv2C9hKvo/blq9VxAdKWSjUGsdKP8Z4G/T2LxlbT5fmF531QQjHnrE4KtH/xUnMnzhUNfv1jvOqcCyzoDeiPw==",
"requires": {
"lodash.intersection": "^4.4.0",
"lodash.union": "^4.6.0"
}
},
"@comunica/bus-rdf-metadata": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-metadata/-/bus-rdf-metadata-1.4.0.tgz",
"integrity": "sha512-kbfS/H7QUIpvJyJWUnT5dgMZLIbNlCICeybnRoSbNW2kLKlrwWww/pYKigkgn22J4t32Wf+WYuIjX8X/K5sG8Q=="
},
"@comunica/bus-rdf-metadata-extract": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-metadata-extract/-/bus-rdf-metadata-extract-1.4.0.tgz",
"integrity": "sha512-dzXE6LTwpSFlBFtagHRX7+xLs6DoaDi74BTw5YCH3tjfWJUirRNFPXq1L3mwoEifuBSrsMKK6uQKw7fn5YB+0A=="
},
"@comunica/bus-rdf-parse": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-parse/-/bus-rdf-parse-1.4.2.tgz",
"integrity": "sha512-xR7l4rH8nlXd5LdHrUsQ3UNTJlxOnZQLwrhC6ge9RTdwCKRkeQpzdRjTklSml/IZeIdiw6iFY5uT3bY/6j4TvA==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.4.0"
}
},
"@comunica/bus-rdf-resolve-quad-pattern": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-resolve-quad-pattern/-/bus-rdf-resolve-quad-pattern-1.4.4.tgz",
"integrity": "sha512-R7YmzIhtAcZQ48SVh8Y1zGlW0g0R3B34NQDmeyVMVbzwlbz/AbnlnR4Ybc8nKXX3O2a/59/5um+HUlj4ohoNkg==",
"requires": {
"asynciterator": "^2.0.1",
"asyncreiterable": "^1.1.0"
}
},
"@comunica/bus-rdf-serialize": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-serialize/-/bus-rdf-serialize-1.4.0.tgz",
"integrity": "sha512-eEkdnh5clCI+AC8aFdRTOASUCGf0o1RryqRZfOT6hHWGGAUeTt+K1c3QSaltBPsubqj3v6NBMWrCj1/7Nhozfg==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.4.0"
}
},
"@comunica/bus-rdf-source-identifier": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-rdf-source-identifier/-/bus-rdf-source-identifier-1.4.0.tgz",
"integrity": "sha512-BNBlCPX55G3F1Bd1+U536t7apEKCMpGcw+fgxKHvNXxrO5FdmkGr4933eVEeAJ5eR1PO5T7mEFMmTkmLAFRpuQ=="
},
"@comunica/bus-sparql-parse": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/bus-sparql-parse/-/bus-sparql-parse-1.4.0.tgz",
"integrity": "sha512-IzyTYlf6FkkpTsvQWzu8e8WDGVgjfI90V8YWH+DEgn1PZsSIdD9u9wQBlIoWeZTA3w2CqbNwTnLtuDErxew6hA=="
},
"@comunica/bus-sparql-serialize": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/bus-sparql-serialize/-/bus-sparql-serialize-1.4.4.tgz",
"integrity": "sha512-cTokRdeLl6nNF3k4/PkzBrKVGoWjd8YnRyYH78SBehzkOHK2OlP4FG8s90A5SFksUQIVHM5xVPZ90Hmt6V35dA==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.4.0"
}
},
"@comunica/core": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-1.4.0.tgz",
"integrity": "sha512-P5lyRHiHbNkpUYsL4q/FOYZiTE+f01Yikz2bJ8UCw8Nch+Y5C93ujOz2/iMmXY8ywn83q8bcLSvDtY1LLfzCIw==",
"requires": {
"immutable": "^3.8.2",
"lodash.assign": "^4.2.0"
}
},
"@comunica/logger-pretty": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/logger-pretty/-/logger-pretty-1.4.0.tgz",
"integrity": "sha512-8y7clI4JlaBMaD6WZGmLAhm4ms+Bq5mBnxzAXE6zjcU5yYAlRbBtxn9TbxJ1TqmYqPaS3tfI3m5VOX5fwOz0TQ=="
},
"@comunica/logger-void": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/logger-void/-/logger-void-1.4.0.tgz",
"integrity": "sha512-D1KWm0oKVIlUNBuwkQt4FOUUMoc6E8Qgd742hDI3GXDxW/sxgn59tPoqg1gdc5fE2/dJ0vPa1tnu+js+kYwQEQ=="
},
"@comunica/mediator-combine-pipeline": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/mediator-combine-pipeline/-/mediator-combine-pipeline-1.4.0.tgz",
"integrity": "sha512-JScniGlCDFE05QhZ0IuY14W3qe6B0P1ucrbLzM/FsJVuWAfqADvA8MP8kB8BCIjunwnLXwxXhiOacSt6aIv9Vg==",
"requires": {
"lodash.map": "^4.6.0"
}
},
"@comunica/mediator-combine-union": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/mediator-combine-union/-/mediator-combine-union-1.4.0.tgz",
"integrity": "sha512-kQKV/a7zjJ8chDCUo7e+1zn0EHb2udwKvK7iIJ2umSPg53wRs2BTj8JU0e464ZEz0uPI1VsDhCvCa/MCGMyH3w==",
"requires": {
"lodash.defaults": "^4.2.0",
"lodash.map": "^4.6.0"
}
},
"@comunica/mediator-number": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@comunica/mediator-number/-/mediator-number-1.4.1.tgz",
"integrity": "sha512-w1SbVhs/HTqBwYQnatk3JsgriUYtRptaxz3DJOTX1R01Kfje+lWdPkRxm+AhbO35hD3Q3SfUkTOLoOsiVVIjKQ==",
"requires": {
"lodash.map": "^4.6.0"
}
},
"@comunica/mediator-race": {
"version": "1.4.0",
"resolved": "https://registry.npmjs.org/@comunica/mediator-race/-/mediator-race-1.4.0.tgz",
"integrity": "sha512-C6ZuPNXJnwPqz61fk1c4dwvXZANkqN2sPC0ifgUMhlJWr/QvJkE8aI6/1EVZFHx5BQ5zOn54kYEum/DgJMCtkA=="
},
"@comunica/runner": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/runner/-/runner-1.4.4.tgz",
"integrity": "sha512-m2ccZome8l1v39gIi1r56bzNRkQaFPrmXI+v+VxsPy5761wSem4eQPD2f1FOGmm2rmLoA1L3unEeSm9pHYQvrA==",
"requires": {
"componentsjs": "^3.2.0",
"lodash.assign": "^4.2.0",
"lodash.defaults": "^4.2.0"
}
},
"@comunica/runner-cli": {
"version": "1.4.4",
"resolved": "https://registry.npmjs.org/@comunica/runner-cli/-/runner-cli-1.4.4.tgz",
"integrity": "sha512-Dg7nl+1C1mMGnZADDxzoadsFEhaeAkG2JNGfYk0qMMKkpuXAEGL9rnznv/qLt+jarM1AD1xxKRnlEtnOwxy0Zw==",
"requires": {
"@comunica/runner": "^1.4.4"
}
},
"@mrmlnc/readdir-enhanced": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz",
"integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==",
"dev": true,
"requires": {
"call-me-maybe": "^1.0.1",
"glob-to-regexp": "^0.3.0"
}
},
"@nodelib/fs.stat": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz",
"integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==",
"dev": true
},
"@rdfjs/data-model": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/@rdfjs/data-model/-/data-model-1.1.1.tgz",
"integrity": "sha512-4jb1zc77f27u/MLVhpE/zHR1uvdH4XElXG63rJP/kVnvKoHtVfyJSEqN9oRLANgqHJ9SNwKj9FXeNFZ4+GGfiw==",
"requires": {
"@types/rdf-js": "^2.0.1"
}
},
"@solid/cli": {
"version": "0.1.0",
"resolved": "https://registry.npmjs.org/@solid/cli/-/cli-0.1.0.tgz",
"integrity": "sha512-+VYDgDxsAKa48MGnoaX2CUwh0gLrTdqYY6lrxxWGwCHiFChGsg95RRbHOYz9c97+QcCltcHpMZ2AelGZrU673A==",
"requires": {
"@trust/oidc-rp": "0.6.0"
}
},
"@solid/jose": {
"version": "0.1.8",
"resolved": "https://registry.npmjs.org/@solid/jose/-/jose-0.1.8.tgz",
"integrity": "sha512-JuP3z2Yuyolv7P0w7MPhjWltWbVzV0vHBFw+ZhxG2v2WOPdbGT+CvUMhCMdMG/csavceV+IpwMXMybMd8nC4sA==",
"requires": {
"@trust/json-document": "^0.1.4",
"@trust/webcrypto": "^0.9.2",
"base64url": "^3.0.0",
"text-encoding": "^0.6.4"
}
},
"@solid/oidc-rp": {
"version": "0.8.0",
"resolved": "https://registry.npmjs.org/@solid/oidc-rp/-/oidc-rp-0.8.0.tgz",
"integrity": "sha512-AAHd+J1IiASDmqDQkU8ou8Gxmc7+VfpcgGFW1rCul/obCsNzSemwvEslxjstK7Yy725HtucoAbZN2BGKujeQAg==",
"requires": {
"@solid/jose": "0.1.8",
"@trust/json-document": "^0.1.4",
"@trust/webcrypto": "0.9.2",
"base64url": "^3.0.0",
"node-fetch": "^2.1.2",
"standard-http-error": "^2.0.1",
"text-encoding": "^0.6.4",
"whatwg-url": "^6.4.1"
},
"dependencies": {
"node-fetch": {
"version": "2.3.0",
"resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.3.0.tgz",