-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
13045 lines (13045 loc) · 588 KB
/
package-lock.json
File metadata and controls
13045 lines (13045 loc) · 588 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": "@rdfc/sparql-ingest-processor-ts",
"version": "2.1.7",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@rdfc/sparql-ingest-processor-ts",
"version": "2.1.7",
"license": "MIT",
"dependencies": {
"@treecg/types": "^0.4.6",
"n3": "^1.26.0",
"rdf-data-factory": "^2.0.2",
"rdf-stores": "^2.2.0",
"undici": "^7.24.4",
"winston": "^3.19.0"
},
"devDependencies": {
"@comunica/query-sparql": "^5.1.3",
"@rdfc/js-runner": "^3.0.3",
"@rdfjs/types": "^2.0.1",
"@types/n3": "^1.26.1",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^9.39.3",
"eslint-config-prettier": "^10.1.8",
"fastify": "^5.8.2",
"husky": "^9.1.7",
"ts-patch": "^3.3.0",
"tsc-alias": "^1.8.16",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.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.0",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.29.0.tgz",
"integrity": "sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==",
"dev": true,
"license": "MIT",
"dependencies": {
"@babel/types": "^7.29.0"
},
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.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/@bufbuild/protobuf": {
"version": "2.11.0",
"resolved": "https://registry.npmjs.org/@bufbuild/protobuf/-/protobuf-2.11.0.tgz",
"integrity": "sha512-sBXGT13cpmPR5BMgHE6UEEfEaShh5Ror6rfN3yEK5si7QVrtZg8LEPQb0VVhiLRUslD2yLnXtnRzG035J/mZXQ==",
"dev": true,
"license": "(Apache-2.0 AND BSD-3-Clause)"
},
"node_modules/@chevrotain/cst-dts-gen": {
"version": "11.1.1",
"resolved": "https://registry.npmjs.org/@chevrotain/cst-dts-gen/-/cst-dts-gen-11.1.1.tgz",
"integrity": "sha512-fRHyv6/f542qQqiRGalrfJl/evD39mAvbJLCekPazhiextEatq1Jx1K/i9gSd5NNO0ds03ek0Cbo/4uVKmOBcw==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@chevrotain/gast": "11.1.1",
"@chevrotain/types": "11.1.1",
"lodash-es": "4.17.23"
}
},
"node_modules/@chevrotain/gast": {
"version": "11.1.1",
"resolved": "https://registry.npmjs.org/@chevrotain/gast/-/gast-11.1.1.tgz",
"integrity": "sha512-Ko/5vPEYy1vn5CbCjjvnSO4U7GgxyGm+dfUZZJIWTlQFkXkyym0jFYrWEU10hyCjrA7rQtiHtBr0EaZqvHFZvg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@chevrotain/types": "11.1.1",
"lodash-es": "4.17.23"
}
},
"node_modules/@chevrotain/regexp-to-ast": {
"version": "11.1.1",
"resolved": "https://registry.npmjs.org/@chevrotain/regexp-to-ast/-/regexp-to-ast-11.1.1.tgz",
"integrity": "sha512-ctRw1OKSXkOrR8VTvOxrQ5USEc4sNrfwXHa1NuTcR7wre4YbjPcKw+82C2uylg/TEwFRgwLmbhlln4qkmDyteg==",
"dev": true,
"license": "Apache-2.0"
},
"node_modules/@chevrotain/types": {
"version": "11.1.1",
"resolved": "https://registry.npmjs.org/@chevrotain/types/-/types-11.1.1.tgz",
"integrity": "sha512-wb2ToxG8LkgPYnKe9FH8oGn3TMCBdnwiuNC5l5y+CtlaVRbCytU0kbVsk6CGrqTL4ZN4ksJa0TXOYbxpbthtqw==",
"dev": true,
"license": "Apache-2.0"
},
"node_modules/@chevrotain/utils": {
"version": "11.1.1",
"resolved": "https://registry.npmjs.org/@chevrotain/utils/-/utils-11.1.1.tgz",
"integrity": "sha512-71eTYMzYXYSFPrbg/ZwftSaSDld7UYlS8OQa3lNnn9jzNtpFbaReRRyghzqS7rI3CDaorqpPJJcXGHK+FE1TVQ==",
"dev": true,
"license": "Apache-2.0"
},
"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==",
"license": "MIT",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-5.1.3.tgz",
"integrity": "sha512-vbdSYF/BKH+aiTJXLcR0YAMDxTrma6v8Bsfzxq0/srAe4TWlgw1iny5noMGUPiP5LauqiLgnIcDNgyaAoTz3dQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-5.1.3.tgz",
"integrity": "sha512-5oGYbEdWSBWwwN2TF15etay53yc1v59fGVnARxGD05J8HyQCw9syQT7ZgvaicVv/tmQ09PI2LnMKJbxsgj+eHA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/core": "^5.1.3",
"readable-stream": "^4.7.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-5.1.3.tgz",
"integrity": "sha512-YiaQwsFxWlnRt/O9f0MAJNkLBz2lv1e+rZuH1u25yWul06YJR5/VFv7FAf5bsvwoJMsO9TrYO3SaVp577infvQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-algebra": "^5.1.3",
"@comunica/utils-bindings-factory": "^5.1.3",
"@comunica/utils-query-operation": "^5.1.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.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-average/-/actor-bindings-aggregator-factory-average-5.1.3.tgz",
"integrity": "sha512-r2tjjSlmVzzBAWMBWzNy8PDXlT7kdDDew4lgAyv9Veg89/JfTPVNOYvBrtyRktPtbUtiPvu6Ow/7qlsO1XVEZA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.1.3",
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-count": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-count/-/actor-bindings-aggregator-factory-count-5.1.3.tgz",
"integrity": "sha512-a/MiLt26IUW7WO+KOH7UfixTmSaSTf2NE2qSfVu5K0x9lG7DZywvz5uuJWgZmmD5UecpYK1iaLb+5xCrQMe2sg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-algebra": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-group-concat": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-group-concat/-/actor-bindings-aggregator-factory-group-concat-5.1.3.tgz",
"integrity": "sha512-ZcG0XlE7OIGftsYBcv1iYCxyOBlLqPsKTHHI87tWkXRG6IAC1v0ZDuRZHvbd2e91hmmHtzYGJUhZmpEzG9jEyA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-max": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-max/-/actor-bindings-aggregator-factory-max-5.1.3.tgz",
"integrity": "sha512-xksCukc7oLMeIqRg377qi/voWUTR12v0UIkNNOt4nLFOcX9C9YbTWku+GBPT9P7EqCwaQ6XhSy72tLxBM0yb1Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-min": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-min/-/actor-bindings-aggregator-factory-min-5.1.3.tgz",
"integrity": "sha512-pCZnxsAekTBucQ2/8F0f4QVeDM4BYJ31gpuvrLCkXhA0E1AqBzb0IwRYI8Eo0cNuuxIU72J0Bb8apVLrtKrs0g==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-sample": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-sample/-/actor-bindings-aggregator-factory-sample-5.1.3.tgz",
"integrity": "sha512-VichDq2FPjKPHlhwKB9rKohyF+eqjcmSwUHvXz4ILbWmH0A3kVUQdt03DMqCpUy5qSvfc8x1VuRNx8UYs29t7Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-sum": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-sum/-/actor-bindings-aggregator-factory-sum-5.1.3.tgz",
"integrity": "sha512-yA8wh43hUJx6QD+x7K3OCPvg0lolsEdy+ro6nXHeyGmeimxAlrClLMiSf63+CuvyS8iIdKW31CN+A4WCNbEPyA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.1.3",
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-wildcard-count": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-wildcard-count/-/actor-bindings-aggregator-factory-wildcard-count-5.1.3.tgz",
"integrity": "sha512-YZgs4sf4GD75F8s4+t04FGiiJyt/esYuiPhGYl4m9BzcnOo6eMyDb8AD2bMb6V6AczlrBoTfEusc7rsLhryLnA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3",
"@rdfjs/types": "*",
"rdf-string": "^2.0.1"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-convert-shortcuts/-/actor-context-preprocess-convert-shortcuts-5.1.3.tgz",
"integrity": "sha512-HnFsTUNls/HdZRK7xzj+PX0hylBnzIIU7HQFVEyqL2w1Nu5YFHAWgA3Tb1mDClE1kuHwMcL3+b1ZWWwZgp87lg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-set-defaults/-/actor-context-preprocess-set-defaults-5.1.3.tgz",
"integrity": "sha512-IYC4sqzdoW0SqIlH6l/idg5F9ZN4tTNpeIIKgCk/s/ubqAt3IWF5hefIxJp27pato+qCwQf3KKAGcRh9BdY71w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.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.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-5.1.3.tgz",
"integrity": "sha512-wY4WHiwIyv7MiAaaaY+J7aDLNJMjwhXOb6LHOn0CheCNnfagr2PZf10puFtYGuRXuMEMXvftmTM7CWOe170vlA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-5.1.3.tgz",
"integrity": "sha512-Vgx2rUJXme/HDQ9i5rXdoe1j4Ot6w1SFKTin+E3dwr9IW3QbbQ8+cLw6yWu1M8TIdsj86jKuFvKhmk1sV0+zzw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^5.1.3",
"@comunica/core": "^5.1.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-5.1.3.tgz",
"integrity": "sha512-DDWvSAc/ByIVUgKRkvTub/8a+Ay0u6a2u/gdDdTzU0twZFLfZ3rJDWwp0+297Zk+jndC+waN8xfqgRGnVoKu2Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^5.1.3",
"@comunica/bus-http": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.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.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-5.1.3.tgz",
"integrity": "sha512-1h6A/OBg++brmlObv6zAY+wwq/Q3PIwkrtgcNbmnZcHBTcTn6vTzTX7ZVmRoTp88V02e5wTsAZ45R3vDujEgDg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^5.1.3",
"@comunica/bus-dereference-rdf": "^5.1.3",
"@comunica/bus-rdf-parse": "^5.1.3"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-expression-evaluator-factory-default": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-expression-evaluator-factory-default/-/actor-expression-evaluator-factory-default-5.1.3.tgz",
"integrity": "sha512-rG7MRKnkpUW4vHPyy4OR5MC0zP5XgZf2eSNFPRVn72fkvhffD+mqj37ek1e2VouufhCndEl6nDYLLCw51ThmrA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-expression-evaluator-factory": "^5.1.3",
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/bus-query-operation": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-algebra": "^5.1.3",
"@comunica/utils-bindings-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3",
"@comunica/utils-query-operation": "^5.1.3",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-function-factory-expression-bnode": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-bnode/-/actor-function-factory-expression-bnode-5.1.3.tgz",
"integrity": "sha512-TbfPi9IZR3bdBToygwlsELvz0YIOv6IYn8EE13snmOXpCG4L80nAsmHSWe23DBLsdmjH6rF9lPKajs1grgluIg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-data-factory": "^5.0.0",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-bound": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-bound/-/actor-function-factory-expression-bound-5.1.3.tgz",
"integrity": "sha512-JU2JDa2FJqnokRRfiywlbKfzUuX5hxGEewdZJ1GVWThpFV6kow2xfoX71qRY5hh1tvyuJv3bqTUTdKAgzJcRag==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-coalesce": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-coalesce/-/actor-function-factory-expression-coalesce-5.1.3.tgz",
"integrity": "sha512-qX1osTdcqpIOO3eG9zGk43T8B/BWed+8X0p/BCWLpWB5eT/mvxCCQNiaowmIK/A6L2EmNfgo1bK/rXiHCHh3sQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-concat": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-concat/-/actor-function-factory-expression-concat-5.1.3.tgz",
"integrity": "sha512-k7Ixv69XHkdWPDrETgKrbuk6pBQXUkBa2KQWh6bJO4yL1NRtR05Xe0sVmf1Ejd4r6fKG0dOGoFdDxP3iOzIMsg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-extensions": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-extensions/-/actor-function-factory-expression-extensions-5.1.3.tgz",
"integrity": "sha512-ZHKReFE1+CR2rDXSMR07W/Niones4C1nFJHLFRl4UhUAyKKOQ+Re05SYRXpKCQuVvyuV3trAyv7ET2CwYJDrVA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/core": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3",
"rdf-data-factory": "^2.0.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-if": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-if/-/actor-function-factory-expression-if-5.1.3.tgz",
"integrity": "sha512-RtXrrddDyp7ePM+elHaBQpIYP5AWHcnbZekqfIS5SpvgzXoxj52mO6w4hMK3SyfVPwvG6LTYBhxqPKho/mEpDg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-in": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-in/-/actor-function-factory-expression-in-5.1.3.tgz",
"integrity": "sha512-fBgsRozSBogLbAw0atUwULMYFn54xSfbrcuGt/fueLgK2CG389WVkqyZJ8cVz+/b428MELjm7yLBTdZBn5bH8g==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-logical-and": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-logical-and/-/actor-function-factory-expression-logical-and-5.1.3.tgz",
"integrity": "sha512-p8ZoUBxddwh1q2vEaDOlLAunfev4XCHCusdzM40zegPuZrAJcNoZm8zHhSVWN0YKiYGmXKlXkTa870nQXQZ/sA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-logical-or": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-logical-or/-/actor-function-factory-expression-logical-or-5.1.3.tgz",
"integrity": "sha512-xmQyoqd/kPuhuHl+f4OzTkp0NaULl6Ss/km8YEYMSlIcbHO3k5Hq++ZfjTl0KHNAJvkqpFD4ukdVkh6DyFzsWw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-not-in": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-not-in/-/actor-function-factory-expression-not-in-5.1.3.tgz",
"integrity": "sha512-XzIqRJ7tJYcbe8jhk0QGb1z6jf47DRGdIgQUkAD/PKvN89fVNekRPFgOtDado3udfck/+yXzBgap1qd1D30SAQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-expression-same-term": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-same-term/-/actor-function-factory-expression-same-term-5.1.3.tgz",
"integrity": "sha512-8T/+NF7OW2yrsd6bV8DHQpyR5nt06gel0ntLYul8l4rzKGrBgJrK/d7vuZZi5rXCuauK8DoOsgsTUWeRPQ9j2Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/types": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-abs": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-abs/-/actor-function-factory-term-abs-5.1.3.tgz",
"integrity": "sha512-Y3ZNzAZfpueZY4QusCvB1GP+zYDcyHoHTrgKgvymyX4o1Nd/sfE0zzZkBYIU0O2DVBT9n1sc7p4yyMf/vEccUw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-addition": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-addition/-/actor-function-factory-term-addition-5.1.3.tgz",
"integrity": "sha512-qXDTFAirN7RKnYXiGOHB5bU8LpKoppIkU/uJ5pB+cUx65NLMEm0xwFCaEXuAQ/plF7z6hCQn4tOmCIiiIgn/cw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3",
"bignumber.js": "^9.1.2"
}
},
"node_modules/@comunica/actor-function-factory-term-ceil": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-ceil/-/actor-function-factory-term-ceil-5.1.3.tgz",
"integrity": "sha512-qCB42PLfWZrHU88HWutcgaKJNybhqgvo6sLvk2bZNe9tRgQwxS0NPR2mZAlxQHf7DN3fJy9j6g81XCqsyCfk7w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-contains": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-contains/-/actor-function-factory-term-contains-5.1.3.tgz",
"integrity": "sha512-oddB//hRq4le3yZT7Mh7U2np6ZgePRUtlaTeKs+WKp4y7I5DYvsq+My6fsnQ6gvgwehKlFb4YGjxYhjmw+R5qg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-datatype": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-datatype/-/actor-function-factory-term-datatype-5.1.3.tgz",
"integrity": "sha512-kU317ilk071W53lx7hGAmmD4qFikTQO/tubXo2F0XtX5B+9bSBzexBb6AWzpUHq2oaxu0FCysXHmhJSAQTrLTw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-day": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-day/-/actor-function-factory-term-day-5.1.3.tgz",
"integrity": "sha512-XcZlmxodsfszn/yzvQDjQXtWrzJIU1AWEC2fSNSMY5JKTmFEVpkVN9UsSP1tPOsvmniQ2EM6v4u2E5AnWoHf0Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-division": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-division/-/actor-function-factory-term-division-5.1.3.tgz",
"integrity": "sha512-5PV5dzdQTJbtKqt2TKzXwcFs+jLVMQpFtE05AGmBeeugOZcvpBC68TI6UGQMnCgUz66nE/RgOcz8hzI4M+EOZQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3",
"bignumber.js": "^9.1.2"
}
},
"node_modules/@comunica/actor-function-factory-term-encode-for-uri": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-encode-for-uri/-/actor-function-factory-term-encode-for-uri-5.1.3.tgz",
"integrity": "sha512-bKv27rEfyWjgOwnNqxrJ5BBVbiL+/azDRPQD4lYtOnVezKJWSdbcF6VUehBhB+fOMf1MLincDUwvnW/UfbGSaQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-equality": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-equality/-/actor-function-factory-term-equality-5.1.3.tgz",
"integrity": "sha512-QJpVSjBvQ/yv9T4moT7/KvoGyKgCp9p4KsQJO1in8YaRKKU4qTzp49JXoSxOTjSts2NjD3MfEqb/aM6XkJ6zcA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-floor": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-floor/-/actor-function-factory-term-floor-5.1.3.tgz",
"integrity": "sha512-AjBhXK7/ts+TdgE6OKybBfKaJewgItmXegSvE7bkHvfD0RxNC9nQ68aSRiFajFbH0HBqPxQMu2aF4ORzQRPVyg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-greater-than": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-greater-than/-/actor-function-factory-term-greater-than-5.1.3.tgz",
"integrity": "sha512-y3OMO6SOsXkN03XdkLGQbwNuvy76lsLjcV2Hqx1A4Ev1OXcjgsePgoctVhp+OvwCpYsVIxVrGwEApeC7+d5RKw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-greater-than-equal": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-greater-than-equal/-/actor-function-factory-term-greater-than-equal-5.1.3.tgz",
"integrity": "sha512-cB5AZe4Lut2GtECirlJJmMsfJNzEtQTYSm1pZM/ojsi+K6ww2Ch5R45ALZxr37dpiAp0McdV/44YnaxrVOKf/Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-has-lang": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-has-lang/-/actor-function-factory-term-has-lang-5.1.3.tgz",
"integrity": "sha512-jE9JUBw/MQnaClzD57ZIrjf6FUhZmEa3/QjpxvXjhh5Utf8zpFjTzw754dkDYkvoxyu36pwCUIGZ5bS9yX+OyQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-has-langdir": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-has-langdir/-/actor-function-factory-term-has-langdir-5.1.3.tgz",
"integrity": "sha512-of+JP2AKtLMVg/FbVSey6ya6qmo+tzWc/c2C3QW1iCiQCeDwlU1Wl7u2tvR8kmMINoA26pxN+hEuB6SrWyg8VA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-hours": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-hours/-/actor-function-factory-term-hours-5.1.3.tgz",
"integrity": "sha512-8B79ORJBle3sDp2hYOvCJ/XF4vjH3q3DVP8oTVgsKjGrqfQyi+mN8tQQqVsctvVSRKv7x+OluyvMEOiEUQB/DQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-inequality": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-inequality/-/actor-function-factory-term-inequality-5.1.3.tgz",
"integrity": "sha512-gt0SjsUR5rnIyQ4AjEXNcetJ9ox6bk1iOyaZY9Ba3Or47qA8HrXXcrqwQBMB60jhw81Q8F2mIMvUHxq+CAsRQQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-iri": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-iri/-/actor-function-factory-term-iri-5.1.3.tgz",
"integrity": "sha512-k3HnbC7Y7JE/E0T2ZvINzqf2n6KMdIDvo696eBr/RjYH6GwfxA4pGLlWsbylOvwrnO6mreDQayMg381Duu4cpw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3",
"relative-to-absolute-iri": "^1.0.7"
}
},
"node_modules/@comunica/actor-function-factory-term-is-blank": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-blank/-/actor-function-factory-term-is-blank-5.1.3.tgz",
"integrity": "sha512-QsVwQFWx5jda5jmL3S9ciym4enMm0rzQ7Lq2/9CRcdDkMcxWXgYguTbVwKuHBrisOtVwE9q1esNrFf/OhXDjSQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-is-iri": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-iri/-/actor-function-factory-term-is-iri-5.1.3.tgz",
"integrity": "sha512-8qlSla8wMvHFwS5hpsnlEdWXl0d+ErsHPqUCPM85T5rofA/SUdGNLnbprnAKngfejDKjkaaXl1NDnHPtsPNCVw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-is-literal": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-literal/-/actor-function-factory-term-is-literal-5.1.3.tgz",
"integrity": "sha512-CxGEq0qkVfm3IAg9O+hnglrTLcB/fIGCzWEfQvioTdlZ97cXgEArcPgycECkX58jGStPZlsCR6u7vT0blYjLrA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-is-numeric": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-numeric/-/actor-function-factory-term-is-numeric-5.1.3.tgz",
"integrity": "sha512-yyVISxO6zdBBqm2Y/x5aMJtuCAscfmfG2ZlPa4kjiAWwGyhx791/7SgVATFsERwMugY6exRl0RuRLBb92kUTKA==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-is-triple": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-triple/-/actor-function-factory-term-is-triple-5.1.3.tgz",
"integrity": "sha512-0T2lKIqowZMToed8SfhXG+k2nhERhrIZdBia6f7oahCdZcoz6IkYufrGwQ3f0JvHXiXChZCI3q/N3RLNK9/33w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-lang": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lang/-/actor-function-factory-term-lang-5.1.3.tgz",
"integrity": "sha512-eEEtwaOHWfK/OYyFAKjI8xWg35ZZTrdookV/2aog5PP5+PmRenAC7krIPPInFksbhXLjjguWu6sRhdPohMRGRg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-langdir": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-langdir/-/actor-function-factory-term-langdir-5.1.3.tgz",
"integrity": "sha512-I+6GavZW93bPMcNUOCVCc2dqOHKy4Pyq6wSEYDhrkrJ1LsdWsvMKxV84OB+4XXnpUpU7fP1gD5GgQdX/7GICtw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-langmatches": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-langmatches/-/actor-function-factory-term-langmatches-5.1.3.tgz",
"integrity": "sha512-q57UgmRh3P416jCOVz9x8INRYhtEyDKzYjA40U5aMTeLF6cDYomSEERerQH4hDkgGlLPweNxeHP/+rrLhw5Twg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-lcase": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lcase/-/actor-function-factory-term-lcase-5.1.3.tgz",
"integrity": "sha512-W5tL/AjcdLmBAhfqgvfVOh7Evx0HcfiHkKWhRQsOF3+juMC1yqL0sLVvXzDErGrJUJOgTvkr1QXP7UgmT+FsAw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-lesser-than": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lesser-than/-/actor-function-factory-term-lesser-than-5.1.3.tgz",
"integrity": "sha512-M0CC3CRcw0E/2NuRcHhT4MEOxvp8GQyNtSeqDQPJE4ri75C6bKfmMBFVToX2FVAcfJO6yaXomdE/cRO6Sc4r6Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-lesser-than-equal": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lesser-than-equal/-/actor-function-factory-term-lesser-than-equal-5.1.3.tgz",
"integrity": "sha512-iaweBrllVC1YRjoyBeVWr0g1PiIAxUNKX2agP1sFeMmZv8MhW+63I7vflk9I66+t0qMNQpELmAJ7qrpGKrcNfg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-md5": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-md5/-/actor-function-factory-term-md5-5.1.3.tgz",
"integrity": "sha512-xvdPLK1rWQQvjujsicV69nn11HwCepzLTQnMuhsL0KXQ6lexcDhORSjTtufuOoMQ8+AARb03S972bGEbXN9m1Q==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3",
"@types/spark-md5": "^3.0.1",
"spark-md5": "^3.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-minutes": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-minutes/-/actor-function-factory-term-minutes-5.1.3.tgz",
"integrity": "sha512-ZE79NTZ3TvbG9XD58JuItrX+XbvtAO89Sqpgboju9fPxiruF7x5pqyx/gLvpazOauZ6NOwWNOeVa5zGSdY3SHQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-month": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-month/-/actor-function-factory-term-month-5.1.3.tgz",
"integrity": "sha512-cRS9zhzpfBqPo2zP58/X1idHNWacFMQRHdIO45Gp05O4cak4nxDT2ckvVctoN0O+2Cd56zyySLNRtSvShBaipg==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-multiplication": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-multiplication/-/actor-function-factory-term-multiplication-5.1.3.tgz",
"integrity": "sha512-57gI8xdXXdZwJq1b2ZUJrawjiD8fmXLLz+O2mSaMuEtt/YbOaUi1J7P3SAuNiUczZDB1/f4DK/0I0Z7kwZmhcQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3",
"bignumber.js": "^9.1.2"
}
},
"node_modules/@comunica/actor-function-factory-term-not": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-not/-/actor-function-factory-term-not-5.1.3.tgz",
"integrity": "sha512-dloJ0O6YsCMUlt7OIm29258yTHvdmjW+JEnnK9OFn4FXcb9oEQjSotVz1wkfptyhKtSG1TKYFWWxy5nmN4qy6w==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-now": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-now/-/actor-function-factory-term-now-5.1.3.tgz",
"integrity": "sha512-s7OchjNQc94Qyw8eCj2CFRx0hQtcuH2catFg0nx2hva3cn//mrLXuEeSqZS3E7ilMlOHvqmcjXhEINl6kihHOQ==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/context-entries": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-object": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-object/-/actor-function-factory-term-object-5.1.3.tgz",
"integrity": "sha512-L7QNIja8tzpLt/MaNk7yysyCc4oDWyWzMVVwIawGAh95ceFcfjaYgk4mvm5dqH16kB0vBVZWlkdJ2UbXNJZhXw==",
"dev": true,
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.1.3",
"@comunica/utils-expression-evaluator": "^5.1.3"
}
},
"node_modules/@comunica/actor-function-factory-term-predicate": {
"version": "5.1.3",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-predicate/-/actor-function-factory-term-predicate-5.1.3.tgz",
"integrity": "sha512-zId2EMoGVDfV6b4/6s9pj2qYxv5Sg2vQRcBxPcCRmNb6jENmjgcMxot67B6Qo+0gIj5Kn5Y7mF2PCvhIdrpaFg==",
"dev": true,