-
Notifications
You must be signed in to change notification settings - Fork 1
/
package-lock.json
7660 lines (7660 loc) · 319 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": "quadstore-comunica",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"workspaces": [
"spec",
"engine",
"examples",
"packages/immutable",
"packages/uuid"
],
"devDependencies": {
"@types/node": "^22.10.0",
"typescript": "^5.7.2"
}
},
"engine": {
"name": "quadstore-comunica",
"version": "4.5.0",
"license": "MIT",
"dependencies": {
"@rdfjs/types": "^1.1.2",
"sparqlalgebrajs": "^4.3.8",
"sparqljs": "^3.7.3"
},
"devDependencies": {
"@comunica/query-sparql-rdfjs-lite": "^4.0.2",
"json-loader": "^0.5.7",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"asynciterator": "^3.9.0",
"quadstore": "^13.1.0"
}
},
"examples": {
"version": "1.0.0",
"dependencies": {
"memory-level": "^1.0.0",
"quadstore": "13.2.4",
"rdf-data-factory": "^1.1.2",
"rdf-terms": "^1.11.0"
}
},
"node_modules/@bergos/jsonparse": {
"version": "1.4.1",
"resolved": "https://registry.npmjs.org/@bergos/jsonparse/-/jsonparse-1.4.1.tgz",
"integrity": "sha512-vXIT0nzZGX/+yMD5bx2VhTzc92H55tPoehh1BW/FZHOndWGFddrH3MAfdx39FRc7irABirW6EQaGxIJYV6CGuA==",
"engines": [
"node >= 0.2.0"
],
"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,
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-4.0.2.tgz",
"integrity": "sha512-WN14hyPi0d2vpRnHd3JgVZm/6OlgG2Hn2q3cxOHYXNYBGVXE2g+1wlWe6WPW8HsGz3waO2rj0VKIXo0UsCPm6w==",
"dev": true,
"dependencies": {
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-2.10.0.tgz",
"integrity": "sha512-0puCWF+y24EDOOAUUVVbC+tOf4UV+LzEbqi8T5v25jcVGCXyTqfra+bDywfrcv3adrVp18jLCJ46ycaH5xhy9Q==",
"dev": true,
"dependencies": {
"@comunica/core": "^2.10.0",
"readable-stream": "^4.4.2"
}
},
"node_modules/@comunica/actor-abstract-parse/node_modules/@comunica/core": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/core/-/core-2.10.0.tgz",
"integrity": "sha512-onsGs2iKHUPRxxMOdx42vdxslk8q9FQZdRjQtHJ6SGiCpJwIL9ciBgPIOl2RL2YfzXHemr/0umeNOppRDcWhJA==",
"dev": true,
"dependencies": {
"@comunica/types": "^2.10.0",
"immutable": "^4.1.0"
},
"engines": {
"node": ">=14.0"
}
},
"node_modules/@comunica/actor-abstract-parse/node_modules/@comunica/types": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/@comunica/types/-/types-2.10.0.tgz",
"integrity": "sha512-1UjPGbZcYrapBjMGUZedrIGcn9rOLpEOlJo1ZkWddFUGTwndVg9d4BZnQw+UnQzXMcLJcdKt94Zns8iEmBqARw==",
"dev": true,
"dependencies": {
"@rdfjs/types": "*",
"@types/yargs": "^17.0.24",
"asynciterator": "^3.8.1",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-abstract-parse/node_modules/immutable": {
"version": "4.3.7",
"resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz",
"integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==",
"dev": true
},
"node_modules/@comunica/actor-abstract-path": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-4.0.2.tgz",
"integrity": "sha512-kmlE1e/3xxbBsvG2ZVoGNrOLIKorLDg3KpGVLSmjPHF2bFh/iU1A9MXKulsvz6FKcXQwCDnlLTKEM5TfQkj4ow==",
"dev": true,
"dependencies": {
"@comunica/bus-query-operation": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-bindings-factory": "^4.0.2",
"@comunica/utils-query-operation": "^4.0.2",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-string": "^1.6.1",
"sparqlalgebrajs": "^4.3.8"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-average": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-average/-/actor-bindings-aggregator-factory-average-4.0.2.tgz",
"integrity": "sha512-oCdRVBYucSl6jN+GIGtIpU2jjJzVWFe6sdcPbrXapnqqDFHAnkkYE+CVNBddQ714J+uK0/luOY+MSSt+mJagYA==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.2",
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-count": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-count/-/actor-bindings-aggregator-factory-count-4.0.2.tgz",
"integrity": "sha512-KgX3ADbxRqjFIGt97nmtYVeW8S9skcsg9sBWU19A5ubmt9e9WRFxUfj0zsPiueqe7nq+WMzd2RKkRs6GNh+8pw==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.2.0"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-group-concat": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-group-concat/-/actor-bindings-aggregator-factory-group-concat-4.0.2.tgz",
"integrity": "sha512-zUXgDrbI/0zopjCpoxlWCz0EEezqoTOoM1JqBGb29zTuYMcn9o+QswAyJTlbgBGjjIHW89xXCKUqPygOPf9qXg==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-max": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-max/-/actor-bindings-aggregator-factory-max-4.0.2.tgz",
"integrity": "sha512-QpX/YnIh8etnuWvNZTVo+59yRDMBFRIdyiR+IR5/yOk6mNshWKnHQDmOHog4AR2g5WLNbRO4QvEBviubFCxBLQ==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-min": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-min/-/actor-bindings-aggregator-factory-min-4.0.2.tgz",
"integrity": "sha512-09UZnVICC5Sh3/B1Lqoe1/nC0Yhvj1kMd4emDa686Vhd6knBqkU364kltT4ot7zItEo/HKwEOnn13CCnNlphsQ==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-sample": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-sample/-/actor-bindings-aggregator-factory-sample-4.0.2.tgz",
"integrity": "sha512-o9LGwVNtUH94X/8aen1sj7R38Q/3MkED6kjut09OegyYKXNFRL3kmF3krgZIe0go79GTd1F+qUTo4R7pmoHzYg==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-sum": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-sum/-/actor-bindings-aggregator-factory-sum-4.0.2.tgz",
"integrity": "sha512-uwZPG1zAsjOkVYeKFQceyDmQjJkXClvHzRxPDQkVhuxyJvD8BxDQ4psH9kAOiOc1EyGAQB36IhoE3r1RaKF06A==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.2",
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-wildcard-count": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-wildcard-count/-/actor-bindings-aggregator-factory-wildcard-count-4.0.2.tgz",
"integrity": "sha512-P4ixEDCtTH8+OFrHHCnDnQeZGGY8Q0fIi71cHcRi65kvYuHis/U+Au2Hc+6C+ljTr4B8D+hpEW/0LP3UlTeweQ==",
"dev": true,
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"@rdfjs/types": "*",
"rdf-string": "^1.6.3"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-convert-shortcuts/-/actor-context-preprocess-convert-shortcuts-4.0.2.tgz",
"integrity": "sha512-GDQyVwzB/zB7lXmbHKcstDSExCPZqj9nymht5Y9NYU8HiiPOA+GM70EOsKW1WBVMtvNohN2gcTdjg8zSYAvuUg==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-identify": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-identify/-/actor-context-preprocess-query-source-identify-4.0.2.tgz",
"integrity": "sha512-NqV4g7bVbHFgOzRk4mmBCmH7/xVpccHCPh0wldydd0hEcOQPBxsZjedKPqm13495+AFdGrv0xHdIl1qJO6s9Yw==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^4.0.2",
"@comunica/bus-http-invalidate": "^4.0.2",
"@comunica/bus-query-source-identify": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"lru-cache": "^10.0.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-query-source-skolemize": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-query-source-skolemize/-/actor-context-preprocess-query-source-skolemize-4.0.2.tgz",
"integrity": "sha512-YycNbqmAQW0LxYI9ICK5f4HGZK6duIYVtQ36pZL75DreIbTs7ny8uQtSvusH7gGaaLZYrdAOXOqhdhz4MOWdPQ==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-data-factory": "^4.0.1",
"@comunica/utils-metadata": "^4.0.2",
"@rdfjs/types": "*",
"asynciterator": "^3.9.0",
"rdf-terms": "^1.11.0",
"sparqlalgebrajs": "^4.3.8"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-set-defaults/-/actor-context-preprocess-set-defaults-4.0.2.tgz",
"integrity": "sha512-ypCh92zG0G/zjFkl+PwkN+ks9ZWLoCPq6fkJbGSVsECe466pJamTx0hKpjY+kYmdzmpbELV2RYxxzx74soHjBg==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"@rdfjs/types": "*",
"rdf-data-factory": "^1.1.2"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-source-to-destination": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-4.0.2.tgz",
"integrity": "sha512-Qs8Pptq1xuk9uKY/QIN8lrlvtLJRQ0FT5oDauYUZpO095bzkzpuSEgG4mKNMw3UJKgevIfS9sqmHOmHiOWWqNA==",
"dev": true,
"dependencies": {
"@comunica/bus-context-preprocess": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-expression-evaluator-factory-default": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-expression-evaluator-factory-default/-/actor-expression-evaluator-factory-default-4.0.2.tgz",
"integrity": "sha512-WLq4bdYDZrhoc7QqnUh8HXx8FgTHO2lsKZeQmhmO3mxX03D7+CeeLqQjJFWu06ZtvxQpjhjzwfsIQUvOKqr4cw==",
"dev": true,
"dependencies": {
"@comunica/bus-expression-evaluator-factory": "^4.0.2",
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/bus-query-operation": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-bindings-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"@comunica/utils-query-operation": "^4.0.2",
"@rdfjs/types": "*",
"sparqlalgebrajs": "^4.3.7"
}
},
"node_modules/@comunica/actor-function-factory-expression-bnode": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-bnode/-/actor-function-factory-expression-bnode-4.0.2.tgz",
"integrity": "sha512-905Prirlf/V7hhHo/4/1V4w0d6mjbCm1+j2MCi51sVATOyxQbMjPcjDGqHCkZm1lcg+u2+CFm0yyPExzc3fENw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-data-factory": "^4.0.1",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-expression-bound": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-bound/-/actor-function-factory-expression-bound-4.0.2.tgz",
"integrity": "sha512-rFy8fEXwPHS8LHv9YQw06P0SDmjB9zq1qq+19TyJY67sz0oK+Fx9tjlOU9NlRNyIdlcTDj1Etqk4widEZpgphQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-expression-coalesce": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-coalesce/-/actor-function-factory-expression-coalesce-4.0.2.tgz",
"integrity": "sha512-yIeyFHVIxz/hqmrFEjtoqVzJupEBehcnu0VQyAiGRZICKx9lnP6WMKvG7vdL1VJX37WpxrosVpALNhOXru41Ng==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-expression-concat": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-concat/-/actor-function-factory-expression-concat-4.0.2.tgz",
"integrity": "sha512-rV8t/mecA0/oS5Dwdz0RtinbiH03UWEADmhCHhiyqwvXCwJzWhmcQUhSg6MczAv0KfoLBasEU/kDGQ9o30NNSA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-expression-extensions": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-extensions/-/actor-function-factory-expression-extensions-4.0.2.tgz",
"integrity": "sha512-nlAVEnrzcB3Z7QsewB5p2aaXUUV+UrJuwdLlsTfNkWUHxN04Nxwrt/zajxhY6Ei+JdiI19YQKRzt5mCLRzJ6rg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/core": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"rdf-data-factory": "^1.1.2"
}
},
"node_modules/@comunica/actor-function-factory-expression-if": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-if/-/actor-function-factory-expression-if-4.0.2.tgz",
"integrity": "sha512-qwZLpH43r9lEoOUxx6E8jDCckoCFWk2j08JTVDzgLxWDPYGwEqxg+7MWo4FYthv4rIJcFW8RTqdQd6vICN0qOA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-expression-in": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-in/-/actor-function-factory-expression-in-4.0.2.tgz",
"integrity": "sha512-AT1Qgqdn1+GWBQxnKF69gWhbFPxwPRBPocwsGisLvC9iXd/v1/gkIfy/gB01d0dFloKSc6jmcSnKmtknihXR/Q==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-expression-logical-and": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-logical-and/-/actor-function-factory-expression-logical-and-4.0.2.tgz",
"integrity": "sha512-oUj69F/TaSPfuHvezrrfm90AC4gcc+eHHqst7BMl7uQM2MiiUzhpbYtHNP1Z1fqa6nNMNCnvmzU5vhX7gXSEvw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-expression-logical-or": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-logical-or/-/actor-function-factory-expression-logical-or-4.0.2.tgz",
"integrity": "sha512-jS/dCknNzinSNzx1/2kwdjEMQM/6DQ38/wEE9Trqdn3Oh8clNBM8fp0miov8AKEykKI4E8VDGpkUmYojFMN/MQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-expression-not-in": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-not-in/-/actor-function-factory-expression-not-in-4.0.2.tgz",
"integrity": "sha512-S7Lipa+HBNAi9NJHDkpXBx6MRcWPg26V30/WZ4O1PckZKSneZy4KhCoFe/K4KTao57HMACk0tJB7DwyU1eyjAg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-expression-same-term": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-same-term/-/actor-function-factory-expression-same-term-4.0.2.tgz",
"integrity": "sha512-ClfUGI21gMI5hBNzN3lD6BQWZh70eNH54AhAR+Hlr3pSFqUE5MvmrhooBb8vWkrBMkWNENghwucUTMK9u4kuIw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-abs": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-abs/-/actor-function-factory-term-abs-4.0.2.tgz",
"integrity": "sha512-AJM0JVPpZmq7Jc1I2dqhMTuYqX9+eGITPjItA89hvjdXOQ9k1P8KYIqjRyNoKfSzPz9q5pMlHc2Dw+1jkKtieg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-addition": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-addition/-/actor-function-factory-term-addition-4.0.2.tgz",
"integrity": "sha512-huYq+kw1wZToFsoWh8rwOKv5wAuHHul4mCPoZ2X/rj8I8sVrEfyfsiYOd6D8wsH9XFr2+1qomS61NAwySJomYQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"bignumber.js": "^9.1.2"
}
},
"node_modules/@comunica/actor-function-factory-term-ceil": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-ceil/-/actor-function-factory-term-ceil-4.0.2.tgz",
"integrity": "sha512-I2gSMJ1bo+dvyHSoW+fvmhjnzuhF3e8qZNZAyNai8qzo6YPKR3sM/FXvJYCIpXYRhI/PlrmFMW/HNK2lVScRPQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-contains": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-contains/-/actor-function-factory-term-contains-4.0.2.tgz",
"integrity": "sha512-G1tnvG0hlHrgaTAHb3ofG+nC3HDBlYskqcP0Hr2BX6dwcQEWrTuLxAxLwjbiWdy2dm8W/c2oJxoED6PLF42LDg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-datatype": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-datatype/-/actor-function-factory-term-datatype-4.0.2.tgz",
"integrity": "sha512-8PMWdL6LE0SkcAXQRg38YSMYUHxMByYMn4nqUv+xa1MBihPGozV1klD7HwOoAkCDab3lsk3x0lvb+SXfnAjxUA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-day": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-day/-/actor-function-factory-term-day-4.0.2.tgz",
"integrity": "sha512-BSnUdEl8rbCBQUWHVPt6alSvXbzb17cjFtEkldfveqB/pmsmSh3w0EI+MATLEfQgM9tz24WtCVASyDtmi+ZJsA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-division": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-division/-/actor-function-factory-term-division-4.0.2.tgz",
"integrity": "sha512-O69sUKBS8RuBGO1LXFomP2ZNblMOmByGg4YZq81IRhlFFyGshO5m5BvkYl5CZWHsLws9yz/vaUgMFa6bzJbXVA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"bignumber.js": "^9.1.2"
}
},
"node_modules/@comunica/actor-function-factory-term-encode-for-uri": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-encode-for-uri/-/actor-function-factory-term-encode-for-uri-4.0.2.tgz",
"integrity": "sha512-RFYqSRct0Y/LHwohmnupAdgmixv2oiI41a6RkgpcyBXzkFKdv+n/K8dCtZNoLJq5SSskI6meX2e9hwDRqtoy2w==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-equality": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-equality/-/actor-function-factory-term-equality-4.0.2.tgz",
"integrity": "sha512-lntQi/kT65c7fUQuHlhJloILA1Kh3un7D8TOisqo42TNySl0KBi1GE5WBVdU7nX0Pn8hydJjes8NCSS3VT/GjA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-floor": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-floor/-/actor-function-factory-term-floor-4.0.2.tgz",
"integrity": "sha512-Gdc4iwOWZUPea7/z0rj3HLV/rwV3EG/LuoasQmmrn4EJwcxcVbdy1vHdD3tXdQ251+fVUWiJzKNQ75b5qn32BA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-greater-than": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-greater-than/-/actor-function-factory-term-greater-than-4.0.2.tgz",
"integrity": "sha512-bYCy9xIC0ep3EtYQ9H5ZYMe3fBN5hHhlRVj9RuafneLOzmiTypTobiVDBXqx6ks5dspn1Y4S0eD5+3YRWq9x2w==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-greater-than-equal": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-greater-than-equal/-/actor-function-factory-term-greater-than-equal-4.0.2.tgz",
"integrity": "sha512-Yb1wtwD/PkeLTysaYh/OBT/Os6Oau+P6TXzeMmHhQoc4ozuanpRQtJxU9UgifsAa3emi9YmPzibQ3f54///dRg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-hours": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-hours/-/actor-function-factory-term-hours-4.0.2.tgz",
"integrity": "sha512-oWVrEy0xDfeSMlsEy/SwBU54prQP/5GkfRjBvmrCdBXyAcrmdU+znhjF6OkSu6rgrIreae3KZCelVj8gGhQ8Cg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-inequality": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-inequality/-/actor-function-factory-term-inequality-4.0.2.tgz",
"integrity": "sha512-TNUTEJw9GFyQKcysvG5T2/2043wYL9OaTLSz+IJrbEQ3+RRxhLe1dT0EXVKYcqXUuNTIgtYS8gLjCje/+53fng==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-iri": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-iri/-/actor-function-factory-term-iri-4.0.2.tgz",
"integrity": "sha512-QklxGb8S6+4kjto6ZJvowgNtAqO4LtWH+KJR0yTZvwPmtioE1rPZV+6VeQutOuXGyM3uMs+gZrk6gUEPTdXn+Q==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"relative-to-absolute-iri": "^1.0.7"
}
},
"node_modules/@comunica/actor-function-factory-term-is-blank": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-blank/-/actor-function-factory-term-is-blank-4.0.2.tgz",
"integrity": "sha512-ssoQ5e6Xfy1Ir+XiMl0fGxmSiIbr3Nq8riU5GTdqauP5/jIzPrs9d8Xq+nQ6wDmtrmqC1YrYTSlIu7lKZNzOLw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-is-iri": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-iri/-/actor-function-factory-term-is-iri-4.0.2.tgz",
"integrity": "sha512-yiQz4C1EIoqMVsvSXs/56DIUTjFNyZg7qeG6lysv7Z1IEOh7+CzVgQptivq7dcx6zmG4A+qB/fL030GCQVMcTw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-is-literal": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-literal/-/actor-function-factory-term-is-literal-4.0.2.tgz",
"integrity": "sha512-1Kokm3AaRyaAg84Mtf9CsOVk8AkJWLlYqadY5CV7iCZ756vR7Pw9W1YiOr8liDe0vg5PBracQt+S3kjRQMoSZw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-is-numeric": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-numeric/-/actor-function-factory-term-is-numeric-4.0.2.tgz",
"integrity": "sha512-MLTc7OwdXoINIxPUedl655l6ZiSj0mxqLr/x12YKTt5FQSXxczHGuwH8klgG9eb2ebr9M9VsjUsVxv1ZOb3dXA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-is-triple": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-triple/-/actor-function-factory-term-is-triple-4.0.2.tgz",
"integrity": "sha512-jQE/EAgXLoQ9Tublsn3B3ee9XAJE10XrBwqHBNaiJF29r2WX+uAW6Sij71/C5Vg+PXbGnFs7SqEekD2Xj2K41A==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-lang": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lang/-/actor-function-factory-term-lang-4.0.2.tgz",
"integrity": "sha512-M0agN+JPXFeTiUkDPvNGjM6OF8hLputQPesDel84bx14XpJUurKFSQY1teWbx/v288IAD+m8R/QhIvcbuAnrVg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-langmatches": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-langmatches/-/actor-function-factory-term-langmatches-4.0.2.tgz",
"integrity": "sha512-HTrkk/O3BA4o3bxw31F5kNDchG9dIk4IIrqG43dO6rdyhHnjg7KswqgANzrZ6JLweGcwrhLtz+Xb0kMOUeF7dg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-lcase": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lcase/-/actor-function-factory-term-lcase-4.0.2.tgz",
"integrity": "sha512-lGTwn1afYmX2YmUAExk57euQX8xD3Wy4riLSclQ4JtAmB1ZdSL+qr7YBvA6nHD4c2LU+r53Tuo4Pdoztg/bSyQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-lesser-than": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lesser-than/-/actor-function-factory-term-lesser-than-4.0.2.tgz",
"integrity": "sha512-HkU5+2fyIOuOciTqTAxju7F+XN3+DBsqjKAH5VR4trn/LbZfes11hQlEb4+PEKrQ9G/t6VkViTx+b5hIKQubBA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-lesser-than-equal": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lesser-than-equal/-/actor-function-factory-term-lesser-than-equal-4.0.2.tgz",
"integrity": "sha512-z7ENI9fcMMXJytvRPE/uKzwSDw57NRaY3MvcO2BDD9S+/5ZCHmFEMY2qS0xr+5khByoSqSPErWMbGMgI3dOGLg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-md5": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-md5/-/actor-function-factory-term-md5-4.0.2.tgz",
"integrity": "sha512-gO5zwDWmku2J8Se/PXW/yf/73xF1wK4lLKd84ZP8kelihTfxXdm78ZJtUvCXdqtgLx6TOV5RzJbfJg5Zs9nB+g==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"@types/spark-md5": "^3.0.1",
"spark-md5": "^3.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-minutes": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-minutes/-/actor-function-factory-term-minutes-4.0.2.tgz",
"integrity": "sha512-INZLITPI2eWZkRzjFTt7pSGUfg/stXr3jG3pmiIksrbMnat9XDkKoP1zWZn3KLXe1QqIHvSWcrBQ1AtppAbcbQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-month": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-month/-/actor-function-factory-term-month-4.0.2.tgz",
"integrity": "sha512-FtlAiNzZdkJmZlittwV8Vv0uznoqtiNmr16MqGFd3CnB52dwrxq+2L4VRQk4D9zS3ZZq01Xf0iZ6H80mOq+L2g==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-multiplication": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-multiplication/-/actor-function-factory-term-multiplication-4.0.2.tgz",
"integrity": "sha512-IRKnSte3fGHnKUDmrRfi6blf7aw45fJ/ACgMJLJFOfgIvqwE4z5BKvKMBkGsCjkn/6r3b05vys46JXuiuOZXvg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"bignumber.js": "^9.1.2"
}
},
"node_modules/@comunica/actor-function-factory-term-not": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-not/-/actor-function-factory-term-not-4.0.2.tgz",
"integrity": "sha512-u6tdu+D3RXuTNt6EZavn3W9JmV1oqvsqjmowyzXLIdFiueCKqpsXMJqmrxDYtstx5lX73EeG5gxTl/k+yp0uAQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-now": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-now/-/actor-function-factory-term-now-4.0.2.tgz",
"integrity": "sha512-+LCBCaTHHtHV+nEP0a69t+GCTgvfPvt4b/l+xPLkur8bUzO0FjhLV41L+w2Z7P2zzPXsJgSkZRdaK+dR9J/ZWg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-object": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-object/-/actor-function-factory-term-object-4.0.2.tgz",
"integrity": "sha512-L2FeUX+f7BkllLQvD/n69MxSN5tCEw4Wg4SpOqogejo/4yl8YI0twuPP2XSowM+1t0vKvMb8fOftmgHEwBmKag==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-predicate": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-predicate/-/actor-function-factory-term-predicate-4.0.2.tgz",
"integrity": "sha512-MWS3FzEmijA4vWbndFU7svlMEyZ874K9gbmK1bsG4fwQQQUlqeSULsnI3Izs3TmuMBdZuVJL9kq4DuQgNJI4vw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-rand": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-rand/-/actor-function-factory-term-rand-4.0.2.tgz",
"integrity": "sha512-62l7gKQpMXE0RI9czog7z4vE2t3ivb970KMpFfw1v/jtoHK26YBwAZLSnTJI4YOh92O7BoPaMUW8BdIZ23ukGA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-regex": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-regex/-/actor-function-factory-term-regex-4.0.2.tgz",
"integrity": "sha512-kAUdkJpJxce6/w/PRf3AVnW+ymQNUhBvDhNmeQq5XWNaumRqku4czyg2xR17sBoAXa85CE30m+JWgvA4Xvu8kA==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-replace": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-replace/-/actor-function-factory-term-replace-4.0.2.tgz",
"integrity": "sha512-rO13hOSfHIszrcEXqy3ZGCzz5ybnb4CGyBLrV5qMrV8L4wBkUO8UbSAmUHmar0ZURJr67ths4K7GXbdmBOQDiQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-round": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-round/-/actor-function-factory-term-round-4.0.2.tgz",
"integrity": "sha512-h5MOh8cXilM/KZZZ6XtCt15A3UM5LXqJ3m7HPmGFfMw77pf2rILSYuktZTCwrI6jzx/2Xk2clzTHCVGrPbj9mg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-seconds": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-seconds/-/actor-function-factory-term-seconds-4.0.2.tgz",
"integrity": "sha512-VLYiAV9rUPDFXAT6c/SO+PeiT5Lop2LZ2wxSalNdeG8Jn1eiIOtzkifnTBJy/gRyC5pirC+/oCUG5I7OH09EZQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-sha1": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-sha1/-/actor-function-factory-term-sha1-4.0.2.tgz",
"integrity": "sha512-HCyZWyFznLCHUyQEaTRcsaaNtEedoJsLaWaj81PLUD25pQnj3o9XvyAEx5fO1h5IuFh+WRHcSjfrmBCw8TMd8g==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"hash.js": "^1.1.7"
}
},
"node_modules/@comunica/actor-function-factory-term-sha256": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-sha256/-/actor-function-factory-term-sha256-4.0.2.tgz",
"integrity": "sha512-RmxIfcfnEUQcQwiWN5D34WqTNjttq/+VGINdwZ3JRjP2lhAbtXxImYRmatV+lTMBJVChNGs1cRZw6XaARMml4Q==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"hash.js": "^1.1.7"
}
},
"node_modules/@comunica/actor-function-factory-term-sha384": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-sha384/-/actor-function-factory-term-sha384-4.0.2.tgz",
"integrity": "sha512-hvQNyn6ZgodYF0gkj6LiRdL9A9A7Hsnh/HbtG5R9ojJ+zkigembX8EoR0fl8PxrorzfAeB7kRRRGIUUkSEIqCw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"hash.js": "^1.1.7"
}
},
"node_modules/@comunica/actor-function-factory-term-sha512": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-sha512/-/actor-function-factory-term-sha512-4.0.2.tgz",
"integrity": "sha512-93Hg9yUfuz7biw8gkYw/zL8hEgvqp78VYM0dzEI9R5mlOUaGMhLxpEEL15b3G/w2rGLonZ2B/+6v/VIhz6Mzaw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2",
"hash.js": "^1.1.7"
}
},
"node_modules/@comunica/actor-function-factory-term-str": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str/-/actor-function-factory-term-str-4.0.2.tgz",
"integrity": "sha512-v/9us7ZK+VxO37Xf+w5PLeEZtuQZL5rHND6EA9VIIU2tJrLlF58G/X0/0UflfOAfPOT1pGPJxi8iI6yEBJ0Cgg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-str-after": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-after/-/actor-function-factory-term-str-after-4.0.2.tgz",
"integrity": "sha512-hQqxUUvI8PhTObGUtijk4gk9GrTQuZrZZbDC2RzdVR/3Y8FmZh4jXA9Q3WzF2kktuvQV+z6RKb+mQ2VMtUqWEw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-str-before": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-before/-/actor-function-factory-term-str-before-4.0.2.tgz",
"integrity": "sha512-ZCm5FzbzWgpww5ALTGly607+TIxD85u51cI3c9DRmnd+nBqlIStJ1/aVHxkebAUEVNpRcFp1QVYcEp4K+1DdFQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-str-dt": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-dt/-/actor-function-factory-term-str-dt-4.0.2.tgz",
"integrity": "sha512-4kSiSOb+OyjfQQ/8/62cETrkDAV1O21QsoUhqY8Fc0fepCcK8g/AH1T0EzFMaS+Pl7ZwTTkyL7LFl6jIVS6N7w==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/context-entries": "^4.0.2",
"@comunica/types": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-str-ends": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-ends/-/actor-function-factory-term-str-ends-4.0.2.tgz",
"integrity": "sha512-qvS4JQGZr6N0Pq7NTqFms0yb0JosWJRfNlcb8w3A5EjRk8n1HpJmzS0jRu9lOEGQ5WCdH4V0pkW04oduRYLimg==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-str-lang": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-lang/-/actor-function-factory-term-str-lang-4.0.2.tgz",
"integrity": "sha512-4m8H87e1Tcu2HJ0Rza3/59ZR0an+Aq63kASBsplt+Y00YbM5hw93mr6tUccUMXIBeqvrHABk/5ZlbLqS68LoOw==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-str-len": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-len/-/actor-function-factory-term-str-len-4.0.2.tgz",
"integrity": "sha512-s4ped8K3IO8BC66UNDOWNvXgtWcW+HT24PIK9IZd2T1a8TqNAi3pNBS6uTLlK8BwxSbWrovc2/TBq6X15khUSQ==",
"dev": true,
"dependencies": {
"@comunica/bus-function-factory": "^4.0.2",
"@comunica/utils-expression-evaluator": "^4.0.2"
}
},
"node_modules/@comunica/actor-function-factory-term-str-starts": {
"version": "4.0.2",