forked from KNowledgeOnWebScale/knoodle
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package-lock.json
18850 lines (18850 loc) · 765 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": "knoodle-react",
"version": "0.2.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "knoodle-react",
"version": "0.2.0",
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@inrupt/solid-client": "^1.23.3",
"@inrupt/solid-client-authn-browser": "^1.12.2",
"@inrupt/solid-ui-react": "^2.8.0",
"@inrupt/vocab-common-rdf": "^1.0.5",
"@mui/icons-material": "^5.8.4",
"@mui/lab": "^5.0.0-alpha.105",
"@mui/material": "^5.10.11",
"@mui/x-date-pickers": "^5.0.0-beta.7",
"@prisma/client": "^4.3.1",
"@solid/community-server": "^5.0.0",
"calendar-link": "^2.2.0",
"date-fns": "^2.29.3",
"dayjs": "^1.11.4",
"ical.js": "^1.5.0",
"jsonld": "^6.0.0",
"lodash": "^4.17.21",
"luxon": "^2.5.0",
"md5": "^2.3.0",
"moment": "^2.29.4",
"n3": "^1.16.2",
"next": "12.2.3",
"notistack": "^2.0.8",
"react": "18.2.0",
"react-big-calendar": "^1.5.0",
"react-dom": "18.2.0",
"readable-web-to-node-stream": "^3.0.2",
"rrule": "^2.7.1"
},
"devDependencies": {
"eslint": "8.21.0",
"eslint-config-next": "12.2.3",
"prisma": "^4.3.1"
}
},
"node_modules/@ampproject/remapping": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz",
"integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==",
"peer": true,
"dependencies": {
"@jridgewell/gen-mapping": "^0.1.0",
"@jridgewell/trace-mapping": "^0.3.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz",
"integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==",
"dependencies": {
"@babel/highlight": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/compat-data": {
"version": "7.18.8",
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.18.8.tgz",
"integrity": "sha512-HSmX4WZPPK3FUxYp7g2T6EyO8j96HlZJlxmKPSh6KAcqwyDrfx7hKjXpAW/0FhFfTJsR0Yt4lAjLI2coMptIHQ==",
"peer": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core": {
"version": "7.18.10",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.18.10.tgz",
"integrity": "sha512-JQM6k6ENcBFKVtWvLavlvi/mPcpYZ3+R+2EySDEMSMbp7Mn4FexlbbJVrx2R7Ijhr01T8gyqrOaABWIOgxeUyw==",
"peer": true,
"dependencies": {
"@ampproject/remapping": "^2.1.0",
"@babel/code-frame": "^7.18.6",
"@babel/generator": "^7.18.10",
"@babel/helper-compilation-targets": "^7.18.9",
"@babel/helper-module-transforms": "^7.18.9",
"@babel/helpers": "^7.18.9",
"@babel/parser": "^7.18.10",
"@babel/template": "^7.18.10",
"@babel/traverse": "^7.18.10",
"@babel/types": "^7.18.10",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.2",
"json5": "^2.2.1",
"semver": "^6.3.0"
},
"engines": {
"node": ">=6.9.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/babel"
}
},
"node_modules/@babel/core/node_modules/json5": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz",
"integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==",
"peer": true,
"bin": {
"json5": "lib/cli.js"
},
"engines": {
"node": ">=6"
}
},
"node_modules/@babel/generator": {
"version": "7.18.10",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.18.10.tgz",
"integrity": "sha512-0+sW7e3HjQbiHbj1NeU/vN8ornohYlacAfZIaXhdoGweQqgcNy69COVciYYqEXJ/v+9OBA7Frxm4CVAuNqKeNA==",
"peer": true,
"dependencies": {
"@babel/types": "^7.18.10",
"@jridgewell/gen-mapping": "^0.3.2",
"jsesc": "^2.5.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz",
"integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==",
"peer": true,
"dependencies": {
"@jridgewell/set-array": "^1.0.1",
"@jridgewell/sourcemap-codec": "^1.4.10",
"@jridgewell/trace-mapping": "^0.3.9"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/helper-compilation-targets": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.9.tgz",
"integrity": "sha512-tzLCyVmqUiFlcFoAPLA/gL9TeYrF61VLNtb+hvkuVaB5SUjW7jcfrglBIX1vUIoT7CLP3bBlIMeyEsIl2eFQNg==",
"peer": true,
"dependencies": {
"@babel/compat-data": "^7.18.8",
"@babel/helper-validator-option": "^7.18.6",
"browserslist": "^4.20.2",
"semver": "^6.3.0"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0"
}
},
"node_modules/@babel/helper-environment-visitor": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz",
"integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==",
"peer": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-function-name": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.18.9.tgz",
"integrity": "sha512-fJgWlZt7nxGksJS9a0XdSaI4XvpExnNIgRP+rVefWh5U7BL8pPuir6SJUmFKRfjWQ51OtWSzwOxhaH/EBWWc0A==",
"peer": true,
"dependencies": {
"@babel/template": "^7.18.6",
"@babel/types": "^7.18.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-hoist-variables": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz",
"integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==",
"peer": true,
"dependencies": {
"@babel/types": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz",
"integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==",
"dependencies": {
"@babel/types": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.9.tgz",
"integrity": "sha512-KYNqY0ICwfv19b31XzvmI/mfcylOzbLtowkw+mfvGPAQ3kfCnMLYbED3YecL5tPd8nAYFQFAd6JHp2LxZk/J1g==",
"peer": true,
"dependencies": {
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-module-imports": "^7.18.6",
"@babel/helper-simple-access": "^7.18.6",
"@babel/helper-split-export-declaration": "^7.18.6",
"@babel/helper-validator-identifier": "^7.18.6",
"@babel/template": "^7.18.6",
"@babel/traverse": "^7.18.9",
"@babel/types": "^7.18.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-plugin-utils": {
"version": "7.19.0",
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz",
"integrity": "sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-simple-access": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.6.tgz",
"integrity": "sha512-iNpIgTgyAvDQpDj76POqg+YEt8fPxx3yaNBg3S30dxNKm2SWfYhD0TGrK/Eu9wHpUW63VQU894TsTg+GLbUa1g==",
"peer": true,
"dependencies": {
"@babel/types": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-split-export-declaration": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz",
"integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==",
"peer": true,
"dependencies": {
"@babel/types": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.18.10",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.18.10.tgz",
"integrity": "sha512-XtIfWmeNY3i4t7t4D2t02q50HvqHybPqW2ki1kosnvWCwuCMeo81Jf0gwr85jy/neUdg5XDdeFE/80DXiO+njw==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.18.6.tgz",
"integrity": "sha512-MmetCkz9ej86nJQV+sFCxoGGrUbU3q02kgLciwkrt9QqEB7cP39oKEY0PakknEO0Gu20SskMRi+AYZ3b1TpN9g==",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-option": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz",
"integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==",
"peer": true,
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helpers": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.9.tgz",
"integrity": "sha512-Jf5a+rbrLoR4eNdUmnFu8cN5eNJT6qdTdOg5IHIzq87WwyRw9PwguLFOWYgktN/60IP4fgDUawJvs7PjQIzELQ==",
"peer": true,
"dependencies": {
"@babel/template": "^7.18.6",
"@babel/traverse": "^7.18.9",
"@babel/types": "^7.18.9"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz",
"integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==",
"dependencies": {
"@babel/helper-validator-identifier": "^7.18.6",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/highlight/node_modules/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==",
"dependencies": {
"color-convert": "^1.9.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dependencies": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dependencies": {
"color-name": "1.1.3"
}
},
"node_modules/@babel/highlight/node_modules/color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="
},
"node_modules/@babel/highlight/node_modules/escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==",
"engines": {
"node": ">=0.8.0"
}
},
"node_modules/@babel/highlight/node_modules/has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==",
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/highlight/node_modules/supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dependencies": {
"has-flag": "^3.0.0"
},
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/parser": {
"version": "7.18.11",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.18.11.tgz",
"integrity": "sha512-9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==",
"peer": true,
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/plugin-syntax-jsx": {
"version": "7.18.6",
"resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz",
"integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==",
"dependencies": {
"@babel/helper-plugin-utils": "^7.18.6"
},
"engines": {
"node": ">=6.9.0"
},
"peerDependencies": {
"@babel/core": "^7.0.0-0"
}
},
"node_modules/@babel/runtime": {
"version": "7.20.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.0.tgz",
"integrity": "sha512-NDYdls71fTXoU8TZHfbBWg7DiZfNzClcKui/+kyi6ppD2L1qnWW3VV6CjtaBXSUGGhiTWJ6ereOIkUvenif66Q==",
"dependencies": {
"regenerator-runtime": "^0.13.10"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/runtime-corejs3": {
"version": "7.18.9",
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.18.9.tgz",
"integrity": "sha512-qZEWeccZCrHA2Au4/X05QW5CMdm4VjUDCrGq5gf1ZDcM4hRqreKrtwAn7yci9zfgAS9apvnsFXiGBHBAxZdK9A==",
"dev": true,
"license": "MIT",
"dependencies": {
"core-js-pure": "^3.20.2",
"regenerator-runtime": "^0.13.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/template": {
"version": "7.18.10",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz",
"integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==",
"peer": true,
"dependencies": {
"@babel/code-frame": "^7.18.6",
"@babel/parser": "^7.18.10",
"@babel/types": "^7.18.10"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse": {
"version": "7.18.11",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.11.tgz",
"integrity": "sha512-TG9PiM2R/cWCAy6BPJKeHzNbu4lPzOSZpeMfeNErskGpTJx6trEvFaVCbDvpcxwy49BKWmEPwiW8mrysNiDvIQ==",
"peer": true,
"dependencies": {
"@babel/code-frame": "^7.18.6",
"@babel/generator": "^7.18.10",
"@babel/helper-environment-visitor": "^7.18.9",
"@babel/helper-function-name": "^7.18.9",
"@babel/helper-hoist-variables": "^7.18.6",
"@babel/helper-split-export-declaration": "^7.18.6",
"@babel/parser": "^7.18.11",
"@babel/types": "^7.18.10",
"debug": "^4.1.0",
"globals": "^11.1.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/traverse/node_modules/globals": {
"version": "11.12.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz",
"integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==",
"peer": true,
"engines": {
"node": ">=4"
}
},
"node_modules/@babel/types": {
"version": "7.18.10",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.18.10.tgz",
"integrity": "sha512-MJvnbEiiNkpjo+LknnmRrqbY1GPUUggjv+wQVjetM/AONoupqRALB7I6jGqNUAZsKcRIEu2J6FRFvsczljjsaQ==",
"dependencies": {
"@babel/helper-string-parser": "^7.18.10",
"@babel/helper-validator-identifier": "^7.18.6",
"to-fast-properties": "^2.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@colors/colors": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz",
"integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-2.4.0.tgz",
"integrity": "sha512-rs5B9LAAoqRbEmB+WLyM+Y3vRPSV9zdJ/gXAKPOJMUy0uvltcnIpjrYLU2vo0WecnVs1wI7Rat5xv95galpssg==",
"dependencies": {
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-2.4.0.tgz",
"integrity": "sha512-Wcwr8MflMLwanY0aC8sgJx8Gv0p7PAbkihHkDe9Q1Y/e4NZ3xZyIlWDL61cC/W2Vp5DaOKa8oYR53+zp/QWBuA==",
"dependencies": {
"@comunica/core": "^2.4.0",
"readable-stream": "^4.0.0"
}
},
"node_modules/@comunica/actor-abstract-parse/node_modules/readable-stream": {
"version": "4.2.0",
"resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.2.0.tgz",
"integrity": "sha512-gJrBHsaI3lgBoGMW/jHZsQ/o/TIWiu5ENCJG1BB7fuCKzpFM8GaS2UoBVt9NO+oI+3FcrBNbUkl3ilDe09aY4A==",
"dependencies": {
"abort-controller": "^3.0.0",
"buffer": "^6.0.3",
"events": "^3.3.0",
"process": "^0.11.10"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-2.4.0.tgz",
"integrity": "sha512-GiA3gUyGI0SusjiYuEQRWGzUzbGah1vsU2I6EgOQx92RkwfbviOiiPYnS+raEsk//TPP3J1WCgaglFUEoZ79KQ==",
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"asynciterator": "^3.7.0",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-2.4.0.tgz",
"integrity": "sha512-Jb2mHQypFJIAs+uBd5lDnGOftFfR2YvY8QOPpWqw1k9AtbFs5mp+sMrDhZiAv05EoBtyJe8hqeQ/x9tOO9AAdw==",
"dependencies": {
"@comunica/bus-context-preprocess": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-2.4.2.tgz",
"integrity": "sha512-WKs9KdyJGo59/lQVNoAbRdd2AYJU854/vKL8f1vrXa2qKvcLA0XH+SfwQOxuRc+h2Y0N46HbdgdOABb8kViTiQ==",
"dependencies": {
"@comunica/bus-dereference": "^2.4.2",
"@comunica/core": "^2.4.0"
}
},
"node_modules/@comunica/actor-dereference-file": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-file/-/actor-dereference-file-2.4.2.tgz",
"integrity": "sha512-fOKE8FduD3SBAVr/0w9OPPiON70sRr+J1cg2CamKfWcaErsy8sPl26IghtlIlpyaGBmZksq5bF/AkMpd7pTlWg==",
"dependencies": {
"@comunica/bus-dereference": "^2.4.2",
"@comunica/core": "^2.4.0"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-2.4.2.tgz",
"integrity": "sha512-d/fIFgfP6dnd+oWXWHEn712SnVy/WnuSV52dqVvVsAQb19KdlwHputiQwYrmcoMrabrEiAE/uG2sDEdaHoKn7w==",
"dependencies": {
"@comunica/bus-dereference": "^2.4.2",
"@comunica/bus-http": "^2.4.0",
"@comunica/core": "^2.4.0",
"cross-fetch": "^3.0.5",
"relative-to-absolute-iri": "^1.0.5",
"stream-to-string": "^1.2.0"
}
},
"node_modules/@comunica/actor-dereference-rdf-parse": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-2.4.2.tgz",
"integrity": "sha512-3a7penFkXIo9pCuLJMqnC9KsdM0p+wC7zLXZu8+MGkyY+NFrAAD3wW4IXy3ii4lWwUNabAW1zwxfVj2lCiKb9A==",
"dependencies": {
"@comunica/bus-dereference": "^2.4.2",
"@comunica/bus-dereference-rdf": "^2.4.2",
"@comunica/bus-rdf-parse": "^2.4.0"
}
},
"node_modules/@comunica/actor-hash-bindings-sha1": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-hash-bindings-sha1/-/actor-hash-bindings-sha1-2.4.0.tgz",
"integrity": "sha512-Yibx4Adfh15p1XeweJrcnbtj+8whKLkYU9XAPty2G4DudsxgILQW93iOTr8M9SIgvPiT4WDpM3buGtYMrafK6Q==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.4.0",
"@comunica/core": "^2.4.0",
"canonicalize": "^1.0.8",
"hash.js": "^1.1.7",
"rdf-string": "^1.5.0"
}
},
"node_modules/@comunica/actor-http-fetch": {
"version": "2.4.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-fetch/-/actor-http-fetch-2.4.3.tgz",
"integrity": "sha512-KPgzIr9lnkFkm5wyFWu0pv277Fxkbq0zkZBRpKriC5eXMZziOxad6h2ucjTHEs5PLbQ1BPJ8TXwqccpsQphXaQ==",
"dependencies": {
"@comunica/bus-http": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/mediatortype-time": "^2.4.0",
"abort-controller": "^3.0.0",
"cross-fetch": "^3.0.5"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-2.4.0.tgz",
"integrity": "sha512-aNJmvPHJONPqypts0hN2jtrMbIIxaps87V1IR/MVVFzZmVrXrO3rV5WyoGeo8Ws8CE1oma33jJx9jbuIuvqHNQ==",
"dependencies": {
"@comunica/bus-http": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/mediatortype-time": "^2.4.0",
"@comunica/types": "^2.4.0"
}
},
"node_modules/@comunica/actor-init-query": {
"version": "2.4.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-query/-/actor-init-query-2.4.3.tgz",
"integrity": "sha512-jE+EBIgNzR3Rzy+MqgWEOAfPg0edbp2fXOcbN5lREPXrW17YW4jg++N6noX+6oRNqSSLSnUzEAtnri5TMVxClw==",
"dependencies": {
"@comunica/actor-http-proxy": "^2.4.0",
"@comunica/bus-context-preprocess": "^2.4.0",
"@comunica/bus-http-invalidate": "^2.4.0",
"@comunica/bus-init": "^2.4.0",
"@comunica/bus-optimize-query-operation": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-query-parse": "^2.4.0",
"@comunica/bus-query-result-serialize": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/logger-pretty": "^2.4.0",
"@comunica/runner": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"@types/yargs": "^17.0.2",
"asynciterator": "^3.7.0",
"negotiate": "^1.0.1",
"rdf-quad": "^1.4.0",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^4.0.0",
"streamify-string": "^1.0.1",
"yargs": "^17.1.1"
},
"optionalDependencies": {
"process": "^0.11.10"
}
},
"node_modules/@comunica/actor-optimize-query-operation-bgp-to-join": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-bgp-to-join/-/actor-optimize-query-operation-bgp-to-join-2.4.0.tgz",
"integrity": "sha512-JVRM6W4Yf/6Bxs5a9uFlSYoOmoo6kgUmyXDG2rNbttsbWS6bYW4LL2gPrPT4Qr8d7mVVxWsP7at0EKpnd+Rsbg==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-2.4.0.tgz",
"integrity": "sha512-qw21ck7a9ERoPvsLgW4pijItwGlYXgxYiY1192j7AMBX8el7PhEJHDQdwXwgZNPwPiJSryK8lxPSz7l9zNPs/Q==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-connected": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-connected/-/actor-optimize-query-operation-join-connected-2.4.0.tgz",
"integrity": "sha512-L0fJ8idoU3r2y4BK/hUhrWwJsrZaui69Co5+8xpn+9aP5lNcJK6RQ514A2k39eBJs2EVV5WB4qWvJWVp2hrZ+g==",
"dependencies": {
"@comunica/bus-optimize-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-2.4.0.tgz",
"integrity": "sha512-OznFZz0LL6CzAGHAbIqTQKdU+QcrbjP9oym7o3FpJ8DFZvW3hsXA0c33qON4llsdCw7XPw1L/hmFV+jnd+rrjQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-join": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-join/-/actor-query-operation-bgp-join-2.4.0.tgz",
"integrity": "sha512-2y0v1FCqJhsoePAw/fjF3vJnM5XUpjavp0Z3YV9ajy629LJqxLj6gN6s2BwjacHDuA/0ITbBr2bhHln0sNggaA==",
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-2.4.0.tgz",
"integrity": "sha512-KgoeKvAS7AYyXxmPY/kq2RAB3hqlrpTqLcGNaOyq2HkCTlBXmEUWAzNyp8ni39iVbCICyGGHSSsaRtHHBxyY3A==",
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"asynciterator": "^3.7.0",
"rdf-data-factory": "^1.0.3",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-describe-subject": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-2.4.0.tgz",
"integrity": "sha512-MpGyV8oPhXLS/VBJQXFged5duWIWzhyLHnC2PcbtbYrMDyUUvaRh3OER2nSeT61RsO6LwSU8XaBxYuQ7+lQV2w==",
"dependencies": {
"@comunica/actor-query-operation-union": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"rdf-data-factory": "^1.0.3",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-distinct-hash": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-2.4.0.tgz",
"integrity": "sha512-C15wNebzlWmLErCANVbFACnZANIHXmSkV38KoDY11HT15RbpD+uVW9fBCHXbREjLYHf2/8SNSb0YZakDaOp9mA==",
"dependencies": {
"@comunica/bus-hash-bindings": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-extend": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-2.4.0.tgz",
"integrity": "sha512-0v0TfIxd4F7Iu90+WU8QYHLbSThP91Nt5noX8hATZsKscVTLKu77tCjAmsIg8FlSB/AKIJteKTg5siXOJxrj+g==",
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-filter-sparqlee": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-2.4.0.tgz",
"integrity": "sha512-+RMh2Z/T78X1PADVi+FaB39ad0i0wvjXu+DDo76S+Lg1RGx6UvtgmmvlOUjyBrzPvzgzv786UfNVwK6W89Okig==",
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-from-quad": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-2.4.0.tgz",
"integrity": "sha512-ExX5GjMpvfMadtsNiHLqQoPAv08wIaV+w+wM6QNyIi3t3aI8WcItSn5loVD6nMGCqNhzzFiOqANsHR0HUFhLbQ==",
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-group": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-2.4.0.tgz",
"integrity": "sha512-5T0zMuI9WtwdsXr1xu5GOjlGQGenEsHRwwgUft6jw8odJ7tczvM5S16QH/L0ymv04ykhFIWRQUpmvZKD6utFpw==",
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-hash-bindings": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"asynciterator": "^3.7.0",
"rdf-data-factory": "^1.1.0",
"sparqlalgebrajs": "^4.0.0",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-join": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-2.4.0.tgz",
"integrity": "sha512-IyLzSdHMZRs7gL0noTuAV7n7Urbbby5UgzCN7QU9fUfm4KspQI83Slw3wFRAA+3/kw9wz1+FsomFBSyW+tmyAg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-join": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin/-/actor-query-operation-leftjoin-2.4.0.tgz",
"integrity": "sha512-NPd+CUriBvZDoTh0ZflPJDFAGDA3Zp507bK9Ca02XF9edqF1SeDVcs6baqgAIIsnHJHnvIH8zcwM8mbsiHat+w==",
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-join": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-minus": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-2.4.0.tgz",
"integrity": "sha512-sNeeaEJlSCn5CKwid3Yy3VbXRrCZnF79mqTE/gqVbJdQ2DsBNTXDON+JehE2nWLnDJdb/b2qQ3M3FVT63ffK4w==",
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-join": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-nop": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-nop/-/actor-query-operation-nop-2.4.0.tgz",
"integrity": "sha512-7V97jL2GV9WLYcKWpBEgl7n1cTFYjdmxOzuFHhqtRtMuPFVEC2p4O7PUvpcMXGSiJmz63FR+zcqJJE0wlOnH8g==",
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-orderby-sparqlee": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-2.4.0.tgz",
"integrity": "sha512-L4dNBPzG6PUf9Hxaob/SlNbj5s/+7OYmjeMrV4klhlthkIcMmDhcNhyHfd/mRuQIyO1x1SZpOL+UtSmlZjq74A==",
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"sparqlalgebrajs": "^4.0.0",
"sparqlee": "^2.1.0"
}
},
"node_modules/@comunica/actor-query-operation-path-alt": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-2.4.0.tgz",
"integrity": "sha512-i7pPmg8rGSK5II0+a9CSKW/J4q/XNfZJoV5goqDxsINsAh4TACENzVEzibmP4zhSTegY88HYW817RS+LEejdvQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/actor-query-operation-union": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-inv": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-2.4.0.tgz",
"integrity": "sha512-eY2jikXqzHBAs/v10Kq2dGgcBADTWqw9ImatyjYYURjuAgfbSUMcXVuk/szltiCMqSyZHk/S4q9hCQBNh3uW0Q==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-link": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-2.4.0.tgz",
"integrity": "sha512-gljUKngnLMZrBCi8rC4H/6nfQC9gMYgkr4e5Ese92GS+mkRlx7sS//HR5ygRDy7HT1LYyfjxbRDCCVHEvFNvtQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-nps": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-2.4.0.tgz",
"integrity": "sha512-24jWuqIHRS55GlUXa/moeZ5cTn5U+DLQAPX8s3/5qyAcnMTXKwug3oRF76dXQ8y3GZbSJwGstehwJXfQ1s283Q==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-one-or-more": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-2.4.0.tgz",
"integrity": "sha512-IitPutGMGyoL3w1KtF7udn+0ojFVeEItmr96UT6pDpzTcFvavJfQazYTwK3rHTFa/Ave8rs2zSJs9R+lWfM6SQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-seq": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-2.4.0.tgz",
"integrity": "sha512-ohAU80T5KQU+BTfKmc86CQicZ0vJPb/WTqO/EInPJ91f77xQ7z2V+1p+PwNt0lgqfwgWvikXhOODaIb1etJ4CQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-join": "^2.4.0",
"@comunica/types": "^2.4.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-more": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-2.4.0.tgz",
"integrity": "sha512-7FI622SeG9FrjTzajZ5ad9LPA35oiw6bZuw3Jzx90c1Dp9Jw80Fb+z81eqO/vmSRhuJCkj6x5vF+9xOpjP9Q+Q==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-one": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-2.4.0.tgz",
"integrity": "sha512-ZtyvDimV5Jg0dWu1v/C1wWKQDe7CpqDtWP/95DMxCCy51iNdvnXlIEuDTuGZPKNco5n+Djm/NZ4LYfrS0YBbpQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^2.4.0",
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/types": "^2.4.0",
"asynciterator": "^3.7.0",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-project": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-2.4.0.tgz",
"integrity": "sha512-y1eLkDa4dfP6tjFalEiGAV8VBceVZlb230cCQfE3K8JJs8eMzNRBaqHr48VjmlJwyroe/+weKpaBSC/BjUuMyg==",
"dependencies": {
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/data-factory": "^2.0.1",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.0.3",
"sparqlalgebrajs": "^4.0.0"
}
},
"node_modules/@comunica/actor-query-operation-quadpattern": {
"version": "2.4.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-2.4.0.tgz",
"integrity": "sha512-0TLN9v4AygMazbDGDMEFNPaN5NzuWA517Cy0HujmR2J3LmrUGBlD9vHsiSwjj9moNdT3BM0PWnDOXWjOGTE47w==",
"dependencies": {
"@comunica/bindings-factory": "^2.2.0",
"@comunica/bus-query-operation": "^2.4.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^2.4.0",
"@comunica/context-entries": "^2.4.0",
"@comunica/core": "^2.4.0",
"@comunica/types": "^2.4.0",
"@rdfjs/types": "*",
"asynciterator": "^3.7.0",
"rdf-data-factory": "^1.1.0",