-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage-lock.json
More file actions
13594 lines (13594 loc) · 481 KB
/
Copy pathpackage-lock.json
File metadata and controls
13594 lines (13594 loc) · 481 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "ld-explorer",
"version": "0.2",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "ld-explorer",
"version": "0.2",
"license": "Apache-2.0",
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@comunica/query-sparql": "^5.2.4",
"@comunica/types": "^5.2.0",
"@comunica/utils-bindings-factory": "^5.2.0",
"@playwright/test": "^1.61.1",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.69.1",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tailwindcss/vite": "^4.3.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.4.2",
"@testing-library/user-event": "^14.6.1",
"@types/cytoscape": "^3.31.0",
"@types/eslint": "^9.6.1",
"@ukic/fonts": "^3.2.15",
"@ukic/web-components": "^3.29.0",
"@vitest/coverage-v8": "^4.1.9",
"asynciterator": "^3.10.0",
"autoprefixer": "^10.5.2",
"clsx": "^2.1.1",
"cytoscape": "^3.34.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-svelte": "^3.20.0",
"globals": "^17.7.0",
"happy-dom": "^20.10.6",
"jsonld-streaming-parser": "^5.0.1",
"n3": "^2.1.1",
"postcss": "^8.5.16",
"prettier": "^3.9.4",
"prettier-plugin-svelte": "^3.5.2",
"rdf-data-factory": "^2.0.2",
"rdfa-streaming-parser": "^3.0.2",
"shadow-dom-testing-library": "^1.14.0",
"svelte": "^5.56.4",
"svelte-check": "^4.7.1",
"tailwindcss": "^4.2.4",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"uuid": "^14.0.1",
"vite": "^7.3.6",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=24.0.0"
}
},
"node_modules/@adobe/css-tools": {
"version": "4.4.4",
"resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.4.4.tgz",
"integrity": "sha512-Elp+iwUx5rN5+Y8xLt5/GRoG20WGoDCQ/1Fb+1LiGtvwbDavuSk0jhD/eZdckHAuzcDzccnkv+rEjyWfRx18gg==",
"dev": true,
"license": "MIT"
},
"node_modules/@axe-core/playwright": {
"version": "4.12.1",
"resolved": "https://registry.npmjs.org/@axe-core/playwright/-/playwright-4.12.1.tgz",
"integrity": "sha512-rMd7xriptqKpP+w5265i4Hdkv2X5kbu6uiBi/B2I7uf3hieRBM3qDCfaKPtxfiYb2mKXfF+yLODJwIx+Jv1GDw==",
"dev": true,
"license": "MPL-2.0",
"dependencies": {
"axe-core": "~4.12.1"
},
"peerDependencies": {
"playwright-core": ">= 1.0.0"
}
},
"node_modules/@babel/code-frame": {
"version": "7.29.0",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.29.0.tgz",
"integrity": "sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.28.5",
"js-tokens": "^4.0.0",
"picocolors": "^1.1.1"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-string-parser": {
"version": "7.27.1",
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.28.5",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
"integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/parser": {
"version": "7.29.3",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.3.tgz",
"integrity": "sha512-b3ctpQwp+PROvU/cttc4OYl4MzfJUWy6FZg+PMXfzmt/+39iHVF0sDfqay8TQM3JA2EUOyKcFZt75jWriQijsA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/types": "^7.29.0"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/runtime": {
"version": "7.29.2",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.29.2.tgz",
"integrity": "sha512-JiDShH45zKHWyGe4ZNVRrCjBz8Nh9TMmZG1kh4QTK8hCBTWBi8Da+i7s1fJw7/lYpM4ccepSNfqzZ/QvABBi5g==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/types": {
"version": "7.29.0",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
"integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/helper-string-parser": "^7.27.1",
"@babel/helper-validator-identifier": "^7.28.5"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@bcoe/v8-coverage": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-1.0.2.tgz",
"integrity": "sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=18"
}
},
"node_modules/@bergos/jsonparse": {
"version": "1.4.2",
"resolved": "https://registry.npmjs.org/@bergos/jsonparse/-/jsonparse-1.4.2.tgz",
"integrity": "sha512-qUt0QNJjvg4s1zk+AuLM6s/zcsQ8MvGn7+1f0vPuxvpCYa08YtTryuDInngbEyW5fNGGYe2znKt61RMGd5HnXg==",
"dev": true,
"engines": [
"node >= 0.2.0"
],
"license": "MIT",
"dependencies": {
"buffer": "^6.0.3"
}
},
"node_modules/@colors/colors": {
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.6.0.tgz",
"integrity": "sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-5.2.3.tgz",
"integrity": "sha512-9zgeR4U8cdB10Mb9VSOuhzJGiufSmjb1N+CwVMQY65gOjXPmfXcybFjzGFKPFbmYOsB2mmL1aht/AXzODlJcaQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-5.2.3.tgz",
"integrity": "sha512-/eEGBmJzbasYjjl+PVgCLQYNQXMt0Ni+sD9Xg+JQf+3oTa7MpfHSMZ6ZV++H3OufJaNid3gkUxZrufFm+k0giA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/core": "^5.2.3",
"readable-stream": "^4.7.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-5.2.3.tgz",
"integrity": "sha512-E/+3d9hU0Ks7JDlyvNkoARKNmY/71cW22rBGJq0UxUfrNrK0SjHALREyOcGAOKNDdGcbOzbs6cbpDPXAK/N9DQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-algebra": "^5.2.0",
"@comunica/utils-bindings-factory": "^5.2.3",
"@comunica/utils-query-operation": "^5.2.3",
"@rdfjs/types": "*",
"asynciterator": "^3.10.0",
"rdf-string": "^2.0.1"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-average": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-average/-/actor-bindings-aggregator-factory-average-5.2.3.tgz",
"integrity": "sha512-HS7ETQmtwIFTOkRP3mRD8PKvp3ZsSTXRpn76Poo17a9VdNhLMoP0vEBTdSH/4SXWiBtvyY7W30etsX+/VPRDdw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.2.3",
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-count": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-count/-/actor-bindings-aggregator-factory-count-5.2.3.tgz",
"integrity": "sha512-Ne1LJOEhZyYmGj7xynagGUm5BoGow4sM3b0UaxaChKOdEdWI1kBdXdknatonL5jXEL168AcYNafxlGgSJwEU9w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-algebra": "^5.2.0",
"@comunica/utils-expression-evaluator": "^5.2.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-group-concat": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-group-concat/-/actor-bindings-aggregator-factory-group-concat-5.2.3.tgz",
"integrity": "sha512-+JAaj+ZCAiaqsilN7/EqIFvjK3NFWnmksNOJyppNOgaSF3GwRVbyTsP6i9YOudHoZBAl+nPzyclApLKURpwkkw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-max": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-max/-/actor-bindings-aggregator-factory-max-5.2.3.tgz",
"integrity": "sha512-fN602hX2gZuPFUjuQByriHz/FGY3+s5QobXoHSJbZF8EjtoecIUelKDr0czQBmyMsl1k4zUjc9JfkPGOFn9YCg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-min": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-min/-/actor-bindings-aggregator-factory-min-5.2.3.tgz",
"integrity": "sha512-nnKlgNhpVYJ0GRvDprVsf/p8kKgd0sJBBFdwGSUvN1mvzuC8nXyDQOTun3EoUqBjaKjSGCevMBIyVyu4RQtKlQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-sample": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-sample/-/actor-bindings-aggregator-factory-sample-5.2.3.tgz",
"integrity": "sha512-XKYvKOS3Byaye7P+IE1vs6VmE7d3IVZ2+Sh3wv0NCE8Du8jQrkHkIA7JJsIN/UPEP8DG4hSaH9IFGKgjJ26+Hg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-sum": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-sum/-/actor-bindings-aggregator-factory-sum-5.2.3.tgz",
"integrity": "sha512-emSKR/i4L9nQ4eBI5BXIyNz8vlBHLyyTD7BONOQnqQLY/jn0Y/AUqgGet0nGxI2X2+dUEaDDYVvvwhkbo5XrZw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.2.3",
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-wildcard-count": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-wildcard-count/-/actor-bindings-aggregator-factory-wildcard-count-5.2.3.tgz",
"integrity": "sha512-KnvpJ1VjOAVp1HtmG7xOJpHnj2InWBPoq5CBidmo/AB9Ppq0q8ES3Rh38qKH+lIaumZze5cd5ZCpo85LOUqjLA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3",
"@rdfjs/types": "*",
"rdf-string": "^2.0.1"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-convert-shortcuts/-/actor-context-preprocess-convert-shortcuts-5.2.3.tgz",
"integrity": "sha512-UwAUHluJYLlu7N9dAYpM0/aLzIzWOM5cBd6YNELQkuSIBkUxpofOtZ/zQvwuhgwbsOxPQFusT6IXjrIOPX9mLQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-set-defaults/-/actor-context-preprocess-set-defaults-5.2.3.tgz",
"integrity": "sha512-77RyL6xbmeltmtAfEBHz9FUtHlZ4dbXt3xK9wXXsK4pzDl42xbNUlFNiodlakyZxna40H/qAjbWzsiyJG1/4Aw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3",
"@rdfjs/types": "*",
"rdf-data-factory": "^2.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-5.2.3.tgz",
"integrity": "sha512-F17yPV2YzFtOWsfz9Ake7yHZHwnMdWqPm7xbHTIWpmN9aEbfcDmjcDWLTilFDNjMhIRQE/7b+HUXUuXDu/3IyQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-5.2.3.tgz",
"integrity": "sha512-a87NJTCNP121zwhnyzyO/uDpM+uBvqeR35u5qMH2pihug1fAKMfDLcaQfxV9fKAUbG+bZAeaXLzH7wfF2fWR+A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^5.2.3",
"@comunica/core": "^5.2.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "5.2.4",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-5.2.4.tgz",
"integrity": "sha512-WsLarbK/VwaQ8FlQMneIxc9Z8S5y6ZN60kIVgVAZEWkuwNoZk9P4TMC+rovXhG9viWX9JmhyHX3MWyLIUYJv/Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^5.2.3",
"@comunica/bus-http": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3",
"@jeswr/stream-to-string": "^2.0.0",
"relative-to-absolute-iri": "^1.0.7"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-dereference-rdf-parse": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-5.2.3.tgz",
"integrity": "sha512-Vnmu69lbbO1OFod8bTGGKA6lBa/aTokw/Kzyo8eEvZykFl1JTaC/ppkMHzUhxmtmObv/6UoVvlBtI3Yp1mhJrQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^5.2.3",
"@comunica/bus-dereference-rdf": "^5.2.3",
"@comunica/bus-rdf-parse": "^5.2.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-expression-evaluator-factory-default": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-expression-evaluator-factory-default/-/actor-expression-evaluator-factory-default-5.2.3.tgz",
"integrity": "sha512-1qruJBABB0L42z6UlvrrUbX6hVHkIqzXwgGWwBgqMsb089nHzzwEt4aH9BltWI0HHA/Q40x4owS4JHlFiOJWVg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-expression-evaluator-factory": "^5.2.3",
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/bus-query-operation": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-algebra": "^5.2.0",
"@comunica/utils-bindings-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3",
"@comunica/utils-query-operation": "^5.2.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-function-factory-expression-bnode": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-bnode/-/actor-function-factory-expression-bnode-5.2.3.tgz",
"integrity": "sha512-6vqoL3QvSefjwA8rfElpOOVipB8VyE3npSSRXO/XiDr1Z4C7Sm5DoptR84bpaWOiuNvpNba3sLU9O61vyFu1SQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-data-factory": "^5.0.0",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-bound": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-bound/-/actor-function-factory-expression-bound-5.2.3.tgz",
"integrity": "sha512-+GlgEPq8mqTC2MPPPgmiTWLBci5I6zAL+EaIM5jEaAMFDWSW5Qo8GpZgGasQgD+p9wElrCNPm0mj6XFxUE76Lw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-coalesce": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-coalesce/-/actor-function-factory-expression-coalesce-5.2.3.tgz",
"integrity": "sha512-NOmvfI3pBmlW9v5ERrIio6zTSahpBnTrRWryn/68BQIRlv+Rf6Fqjd2xgzWpfWR9eWkxrzLCarL2n6afNa48nQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-concat": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-concat/-/actor-function-factory-expression-concat-5.2.3.tgz",
"integrity": "sha512-B7XD9A+PtHsOvmFSAFcg1Q+NeVJJoaA91SGojAyvkEs/zOVP5bn1PjE/xH5PcL1XUSEONImD5dRrFOzDBH571A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-extensions": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-extensions/-/actor-function-factory-expression-extensions-5.2.3.tgz",
"integrity": "sha512-OBO4V0nOCRPR/wvC63/X5lUUHBJ86hBfmI4lTgTLfjEwVTNjxeqIDxE3H4JhuoXQ5U/mzFakB+MeOIyXkJ3VMA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/core": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3",
"rdf-data-factory": "^2.0.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-if": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-if/-/actor-function-factory-expression-if-5.2.3.tgz",
"integrity": "sha512-6tG9rAqNX76mobQNHC9bj6I7kPGj3SdvCMTg9PmRRox86su7RBhT7Ig3jDFvvIG3/fX5IuV37C05L+pm+GJ48Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-in": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-in/-/actor-function-factory-expression-in-5.2.3.tgz",
"integrity": "sha512-EUmSFVmM/fwntDnex+TCGWvlA2vNpo0gsPvs2D91rKjrw//pZR4hDYT2EdfG0tb5E8WRN0dOdnUm+9H01WOITA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-logical-and": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-logical-and/-/actor-function-factory-expression-logical-and-5.2.3.tgz",
"integrity": "sha512-i0c4Q0OJIxpQzgzmInrGf1geQG4uVUEE000U9ovA22QVOUzaBE+NpM57MDnNZzvXr/I3TiAotqtUWANA9qBIMA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-logical-or": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-logical-or/-/actor-function-factory-expression-logical-or-5.2.3.tgz",
"integrity": "sha512-s1gGKE/pA3/cBl7GwPYtO4zUFOVvO9WJuX/+zpFpxUiO0hhrqgMo9P8eUaDijuuy1iexCewfznI7bWWSK5lw+Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-not-in": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-not-in/-/actor-function-factory-expression-not-in-5.2.3.tgz",
"integrity": "sha512-M+QnT3fLMtiYZYc8zuGuNTxWeZSH3RV36y2PFZkXN1+Ait6omgwOjcr6FEzAQPD0QzDfu7oNuCej0Vp54BOphQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-same-term": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-same-term/-/actor-function-factory-expression-same-term-5.2.3.tgz",
"integrity": "sha512-ZlosA74V5T0MMLhLYpbRVTYiFheZTAa2oiGNl/OCOMxm96mNnNDMnlTGUDGU+BIUhsoiy2cwveTorXUZseAm2A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/types": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-abs": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-abs/-/actor-function-factory-term-abs-5.2.3.tgz",
"integrity": "sha512-J5BX1N9l188NV4epgXyZNesVLSZEd1RONneXi34gSNIb2zTui+2J6XhcdrbVnZr/rlI647no0qpGsCDlp2x4SQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-addition": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-addition/-/actor-function-factory-term-addition-5.2.3.tgz",
"integrity": "sha512-oX91XZJLo+YKeq26fMkFRwpTJLofm9G5Ip7ctDwYGHTJRwq5XEd3bL4faeOlEmTShRiAB3cbUokMirVHzn8lFw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3",
"bignumber.js": "^11.0.0"
}
},
"node_modules/@comunica/actor-function-factory-term-ceil": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-ceil/-/actor-function-factory-term-ceil-5.2.3.tgz",
"integrity": "sha512-3HId+H3bJwys+DADJz+j9QMm8y4NTPEZ7Sz6+Kkmx6ncZV5T5Md86dTOpU1xyP5NYBPB9/98NUBlOecH9CpXVQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-contains": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-contains/-/actor-function-factory-term-contains-5.2.3.tgz",
"integrity": "sha512-t7/KSsnRUTCNlvVChVVi/L3IcmA7CDE+CryNHCygo5czrxGAt0GvAuHJ6JqAfhOdcjoGCdZ7MpWVbhPzGoE31Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-datatype": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-datatype/-/actor-function-factory-term-datatype-5.2.3.tgz",
"integrity": "sha512-tEidXD12PIFJ5qFHcw9A/8650tr0RnL9frt7WhZfnh5eqDumDNAugbFD1VNLouJ9Q/yIYFA4AQfGQUE/wItmjw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-day": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-day/-/actor-function-factory-term-day-5.2.3.tgz",
"integrity": "sha512-D399Dke60415JRCFyuV2tglwRNjjc90I/HaFTagrViWerTwyHj7ew4+poJwcnqzITburp/k43GpB+7FTgTaNzQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-division": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-division/-/actor-function-factory-term-division-5.2.3.tgz",
"integrity": "sha512-YMMwJPld3uJ6VYPcvAr+nNL00yfi68KunDwwawz8b1iJ1edcYgGBn039dP53y05FEPa2z91pLLUkJqDDzXVn0A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3",
"bignumber.js": "^11.0.0"
}
},
"node_modules/@comunica/actor-function-factory-term-encode-for-uri": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-encode-for-uri/-/actor-function-factory-term-encode-for-uri-5.2.3.tgz",
"integrity": "sha512-ZTdT256QHCriLdGhEHKo8Id2UV1Bb64Zse01NETX4mG6Sozftxk4lTjswbrDIgwJiHhkqOGjpOwx6rlvOAa5Tw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-equality": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-equality/-/actor-function-factory-term-equality-5.2.3.tgz",
"integrity": "sha512-3cHGE4i2kMnAAj1xO+68HxQOU0BB6uohDasCZp5q7GDsz+pjBbYJdnC2cekprNkwX6xT9THD82xa0+ro8bAQOA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-floor": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-floor/-/actor-function-factory-term-floor-5.2.3.tgz",
"integrity": "sha512-BhnBFknVSWdsxlmmJTeofdAdXvmc9r9coazdjtaRKncHhX8OFI/imxm/gaRkvto2WNpzturTrlDR8iNCwkRfEw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-greater-than": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-greater-than/-/actor-function-factory-term-greater-than-5.2.3.tgz",
"integrity": "sha512-9p/pO2c2e17e65KeOK0sSfjBK1EJmYvne9IolZrC7NYVxYlUv+wGa2H3yGacZ+0A7q5UfgXxGBfAAJmlTzisaQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-greater-than-equal": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-greater-than-equal/-/actor-function-factory-term-greater-than-equal-5.2.3.tgz",
"integrity": "sha512-bhhZU2eOvtW0DOvTUz3fCEUFV6zR6YrhLFKZqAmoYJI21umL6CySDSC6OuyiMGGFiqoAGC+3Wlc+rNV5PM/xqw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-has-lang": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-has-lang/-/actor-function-factory-term-has-lang-5.2.3.tgz",
"integrity": "sha512-NVHZD2nVqeiQDJCaLqlLa4dVwtWGyQmcrrcaJc+rej+alszJu0L+5J6zBO8SV3uJQGWlrQlM01mIkNb+vVZkXg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-has-langdir": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-has-langdir/-/actor-function-factory-term-has-langdir-5.2.3.tgz",
"integrity": "sha512-hig9Uux5aULHm69BxjVBomZwKj6O2FPVETq2QGgYcsb4TuQ1BzQgCLg+DvB88WTQ4Cw9ADn7yitITV/HH6vzTw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-hours": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-hours/-/actor-function-factory-term-hours-5.2.3.tgz",
"integrity": "sha512-+I9GECZWDB7iHEynaTMJWYp9YWp+Ng1ITH3Q4SoXymeA5N4sXkYMn43ImAee5nyPcJqDl/K8wl+SzlEvrIdHDw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-inequality": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-inequality/-/actor-function-factory-term-inequality-5.2.3.tgz",
"integrity": "sha512-g+GRZlYBlKYPiBukNGWii7V7REo6arjZixK3VvIWMDMp1OKiXyBgw+TsSP0qL2oRp1QOeqZ+vn4xYbQt31VAgA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-iri": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-iri/-/actor-function-factory-term-iri-5.2.3.tgz",
"integrity": "sha512-LK/W7/+QBfQe9gRaVkD0NpuIjBQpNS17r6FOXUVY+ltBQiEosJ7ruR0EoRq8OKKowSTj0SNBF9LzgFbBuRGvTA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3",
"relative-to-absolute-iri": "^1.0.7"
}
},
"node_modules/@comunica/actor-function-factory-term-is-blank": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-blank/-/actor-function-factory-term-is-blank-5.2.3.tgz",
"integrity": "sha512-YMg3ILzc/anvWMQdh57wX/d+S35y6GFGOhLe8VB0i1krVYh7WZ7/cXv0TdDU93Z+9lfhUP/mwNLCVeAikQBujw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-is-iri": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-iri/-/actor-function-factory-term-is-iri-5.2.3.tgz",
"integrity": "sha512-vuQSOszkwraqlfME5fkYZ3mIq5VHmpqXsvWdqM+eggdmKV8QCrgLzOqYXigzp89Zi9Z0PZHNyEcNikb6tm35RA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-is-literal": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-literal/-/actor-function-factory-term-is-literal-5.2.3.tgz",
"integrity": "sha512-cUyfzT+F+BdX416Sg+xjJaMxRBc9uXSnQMcu3VIWKzf/KsxIHcwkn0OJ+6wS5kIJ9sCGKQvg1d2+TqGOeG0c+w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-is-numeric": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-numeric/-/actor-function-factory-term-is-numeric-5.2.3.tgz",
"integrity": "sha512-VfCSqgusBPy1YcOGePhxqPDuTNTIh93BkWdH7Pf+pWvaD0ZXCYamWKzU9Vs3tzJWpLxX21C3S232und2hF/Lsw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-is-triple": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-triple/-/actor-function-factory-term-is-triple-5.2.3.tgz",
"integrity": "sha512-oFMvktwb3nELeYF8GdS//T+4mIRK7T2jYNwiPrtdyCX7CbO1lVc9HpogAYrjAqVi7uUjo0Y7vqhywTEvMA5Wcg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-lang": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lang/-/actor-function-factory-term-lang-5.2.3.tgz",
"integrity": "sha512-Gn6WwApJcRPhkY5gzzdAt3HIbp68PbfEeuaQJ6JT4IM5dn2F76RqFKrv1vc3k8wp8mytMBBIXPloLV/TXSYgbA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-langdir": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-langdir/-/actor-function-factory-term-langdir-5.2.3.tgz",
"integrity": "sha512-8Kt2DYkShnCyR0Y9wJioQ0naQs/73yPHp+4cAGxXTKL/ScUvZElGzbzmmKx3gSbClFVKZaxKEbuw8YUhlGTXQQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-langmatches": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-langmatches/-/actor-function-factory-term-langmatches-5.2.3.tgz",
"integrity": "sha512-a0BC0ruzOFeqMj+D37Io9F+9IpeVpXf7ba81CQEHIn4Eogmw5hC3uIihbVz9n9ez1tTe35syS+x400TDoEVxaQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-lcase": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lcase/-/actor-function-factory-term-lcase-5.2.3.tgz",
"integrity": "sha512-HuWHt2udsrWUToRvjJrQ1x1jPXOlCCPKTGmih36tg2VLOnMKclxbNLaXF3tdk37Cz3f8HxDdhMd49psRpXyAgA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-lesser-than": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lesser-than/-/actor-function-factory-term-lesser-than-5.2.3.tgz",
"integrity": "sha512-4RBsGziZtNIC8VSerZBCauKU7GXpJwgW6x/BcU4jBNEnJpV3dPUmLUQYC4ml5BAJKJVI5zrDASdQEtB7+Fmo2w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-lesser-than-equal": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lesser-than-equal/-/actor-function-factory-term-lesser-than-equal-5.2.3.tgz",
"integrity": "sha512-e6NFM5Hjz1OMRjB8TL+eRHLuymytsJhBfI/DtZu9rMRv1IWyHHzbJzGdEsvyTnRMnrH5R3IwNociOAwixjmb7A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-md5": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-md5/-/actor-function-factory-term-md5-5.2.3.tgz",
"integrity": "sha512-Vh6SAunNRAAr3XKXZXo12ZwXXsbq/7eKCY9O7ru9nEbbNTp86QeUpvkJ5KgwOG/dSNhLcJyM1CRGDJYD/DQG6A==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3",
"@types/spark-md5": "^3.0.1",
"spark-md5": "^3.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-minutes": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-minutes/-/actor-function-factory-term-minutes-5.2.3.tgz",
"integrity": "sha512-L4PrKkhwf86rzFT3E17xlbqcPnalZByGitk50l0Sh+Bpu3NYjmJ+FGpoUyVbeLhEyaP2DypbyYfCNHM62t8rPw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-month": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-month/-/actor-function-factory-term-month-5.2.3.tgz",
"integrity": "sha512-WZKkBz1grvZ8u3Bc+C7wOP4CelZip0M6/VMdckZQM5cSAnyW/0ckRL9l+6jKuqtbnqrQZ6vtDHhbBLQdpH1tIw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-multiplication": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-multiplication/-/actor-function-factory-term-multiplication-5.2.3.tgz",
"integrity": "sha512-EzStbRZXuQ6qOu2AdmNs0nld8hn80dyELvlKVp3gZa6mTcnSjgFJVHQvuxKJ+OPgvXL2QHjH9Y5jy7S6Wjx6bQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3",
"bignumber.js": "^11.0.0"
}
},
"node_modules/@comunica/actor-function-factory-term-not": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-not/-/actor-function-factory-term-not-5.2.3.tgz",
"integrity": "sha512-6HJ16o9gdgzGrK6ze3Y1MKArswlcOTnyMal5WwMZSmu+LxD5iArRjLI6kwDxjh5+WOKeF6cgrTuCYA7obevWMg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}
},
"node_modules/@comunica/actor-function-factory-term-now": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-now/-/actor-function-factory-term-now-5.2.3.tgz",
"integrity": "sha512-bQXfC/pr2PkVbMRy76HLXVAbG1n244QQAOc8ft+Wxc59NrCm+427DWEuCPWk/8N/o20mEw6fih0zZYPDfhRlDA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.2.3",
"@comunica/context-entries": "^5.2.3",
"@comunica/utils-expression-evaluator": "^5.2.3"
}