-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage-lock.json
More file actions
7715 lines (7715 loc) · 335 KB
/
Copy pathpackage-lock.json
File metadata and controls
7715 lines (7715 loc) · 335 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": "linked-data-repl-experiment",
"version": "0.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "linked-data-repl-experiment",
"version": "0.0.0",
"dependencies": {
"@comunica/query-sparql": "^5.3.0",
"http-link-header": "^1.1.4",
"n3": "^2.2.0",
"sparqljs": "^3.7.4"
}
},
"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==",
"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==",
"license": "MIT",
"engines": {
"node": ">=0.1.90"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-5.3.0.tgz",
"integrity": "sha512-60+GYULL9d/jfsTsGodLwPTIZvlDeqLZwtYSaFbMV9ykzaZs5AJp7LDyA5DeNUBPN228fty0jX2FlAXGf7ZGdg==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-abstract-parse": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-parse/-/actor-abstract-parse-5.3.0.tgz",
"integrity": "sha512-qh+VuBpMkseEcoRaFjEw5UoMC6bO/45/Q0ZBdwEI3GAsNJhgMaiLQWVEvyBq0fBsQymW7HniZlZcDzuxoUIr5g==",
"license": "MIT",
"dependencies": {
"@comunica/core": "^5.3.0",
"readable-stream": "^4.7.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-abstract-path": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-5.3.0.tgz",
"integrity": "sha512-exK0EcWyscuu7psF2U4Cm4iAlOW1fWRAqCZLJo0I7v+8hXtCHTLx2P2bV2LFUvt8Kry4ATzUrrm019RX4b0+hg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-query-operation": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-algebra": "^5.3.0",
"@comunica/utils-bindings-factory": "^5.3.0",
"@comunica/utils-query-operation": "^5.3.0",
"@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.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-average/-/actor-bindings-aggregator-factory-average-5.3.0.tgz",
"integrity": "sha512-dsTR0dQPnisdX9xklFz/WcyA60t9SpDef1Bzryl/cETr9pnnD+HMF3aDZYvmfINUp3YjRP8cxJeWVHPv+kyluA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.3.0",
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-count": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-count/-/actor-bindings-aggregator-factory-count-5.3.0.tgz",
"integrity": "sha512-tLdoFX2poA0tKXXGAREMps0aI3x+MNEGbRftPFD24NbMybmCjSWyN0L3Az29eoWL4zIkmhMK9S/xaguB4k85pg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-algebra": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-group-concat": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-group-concat/-/actor-bindings-aggregator-factory-group-concat-5.3.0.tgz",
"integrity": "sha512-dypWIfRmvr99qu/0MQWE0oCuhHRt/6NT68c/wctO1ZDb9WPzO24XsjYNcQHPer69uoZIY8s61/V3MJ4/we3dFQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-max": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-max/-/actor-bindings-aggregator-factory-max-5.3.0.tgz",
"integrity": "sha512-FlOY4BrSp0uhLCwEh4cHsFFwsiulr3CIfJ+r010WA/n+qwSSp/iGH9s4zmfbqC1tBRrFK9alCdxQJr0BY17MDA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-min": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-min/-/actor-bindings-aggregator-factory-min-5.3.0.tgz",
"integrity": "sha512-9UGaNaDab76Po3XFOIIZm2RCZDc7Gbwcrr+2hgG5DuJjtxBwl7z3pMkHFYjaBikF9GFaZ1VjT0sW51S80Y8rbg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-sample": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-sample/-/actor-bindings-aggregator-factory-sample-5.3.0.tgz",
"integrity": "sha512-ib4MpjNKyGRdKwNjRjoP/Chf5ba8hqDq/LTac8bry405EeimiCZvOmbWa6QQwIvkAtfjMmeydCclMmdnjS8hNQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-sum": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-sum/-/actor-bindings-aggregator-factory-sum-5.3.0.tgz",
"integrity": "sha512-KWS4sYMvYGEhuxVD12OmxGGf7ZU6vV9u4kdq8v9OTTKiEb3YzaQa7IlzsF94qHoek1xH5xp+N7dxaOG+H3z87w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.3.0",
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-bindings-aggregator-factory-wildcard-count": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-bindings-aggregator-factory-wildcard-count/-/actor-bindings-aggregator-factory-wildcard-count-5.3.0.tgz",
"integrity": "sha512-BlZLzCTT/FoMCLS+iGxRf0C3tNDjAoO6/ZcT+H0U+DZ/adhpcw6h90FsLKeolW7tSRVUHNV8BJN4UcLE4x9Czg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-bindings-aggregator-factory": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"@rdfjs/types": "*",
"rdf-string": "^2.0.1"
}
},
"node_modules/@comunica/actor-context-preprocess-convert-shortcuts": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-convert-shortcuts/-/actor-context-preprocess-convert-shortcuts-5.3.0.tgz",
"integrity": "sha512-Jb17oQjiZrtvWcEfIWlzb7bVHWq0Buxl0YKj+Lpdd8yJMf2euRo7yW84CK0SWtcMa3zmWRR6iz11AVwoAxwvcg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-context-preprocess-set-defaults": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-set-defaults/-/actor-context-preprocess-set-defaults-5.3.0.tgz",
"integrity": "sha512-XUuCgi3pI3A+WK1f4IaL+EGKf+LRk8Tyh1W4f7l/66D7YhU7zT3dpSHQ0czywDgZGD8y8BB5avLHF/NlufEQHQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0",
"@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.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-context-preprocess-source-to-destination/-/actor-context-preprocess-source-to-destination-5.3.0.tgz",
"integrity": "sha512-SqlOUs6WiTg2/bGuU7nJdaz/YAZD/yInEsJ1yBXZuuZtgyLsbuFIyIkzce4Jc6WmHvyUklabRVygtVv1ToBAzQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-context-preprocess": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-dereference-fallback": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-fallback/-/actor-dereference-fallback-5.3.0.tgz",
"integrity": "sha512-594T3XjvhF58zkSjGkZOaZ7+tGMrJql8nw4ganV5UQ92puweuCcU9heusdgFUfBWA0kVqBMYoE3GOyoBajxkag==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^5.3.0",
"@comunica/core": "^5.3.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-dereference-http": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-http/-/actor-dereference-http-5.3.0.tgz",
"integrity": "sha512-aL5VFnIV7X+SL58iJvAySwzvHpFvuUKdUNv78s/S09BCEa+0BZSEDHKFjI3g6DsEx53PZLF0/KGpZa+OQcuFuA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^5.3.0",
"@comunica/bus-http": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0",
"@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.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-dereference-rdf-parse/-/actor-dereference-rdf-parse-5.3.0.tgz",
"integrity": "sha512-FXplPboI5dXy7DEtDo+IvDSpZoJxR0lIffGJ5ZLHD5r0nMY3egmg+H1Via3Cv3NfUW1NkEOPVb+ay35sWDo+ng==",
"license": "MIT",
"dependencies": {
"@comunica/bus-dereference": "^5.3.0",
"@comunica/bus-dereference-rdf": "^5.3.0",
"@comunica/bus-rdf-parse": "^5.3.0"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/comunica-association"
}
},
"node_modules/@comunica/actor-expression-evaluator-factory-default": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-expression-evaluator-factory-default/-/actor-expression-evaluator-factory-default-5.3.0.tgz",
"integrity": "sha512-DlPOGnaZzJQr3w1rMszrPLIGLJIPwQgtfyfLUcUhtYuMMTAzvfP4xpnA7RNW4CkvlJsynWf0QhDLECjMSw1+Cw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-expression-evaluator-factory": "^5.3.0",
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/bus-query-operation": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-algebra": "^5.3.0",
"@comunica/utils-bindings-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"@comunica/utils-query-operation": "^5.3.0",
"@rdfjs/types": "*"
}
},
"node_modules/@comunica/actor-function-factory-expression-bnode": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-bnode/-/actor-function-factory-expression-bnode-5.3.0.tgz",
"integrity": "sha512-ehEsR4UERdQGVq/uFyHpqV3egO9SkO/jGIESM8FngimoiMftPN71Qddgkz0AmS8r5mkNg9lADswR5mgQzUB0YA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-data-factory": "^5.0.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-bound": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-bound/-/actor-function-factory-expression-bound-5.3.0.tgz",
"integrity": "sha512-b0Dg6K7clkaDTHZzzG5OzhZI5IEF+kUahl+uFI2iDXULNhEUnnZpI9yrNeCMqSDUa3HUq/M0mvrWg0kskv70Jg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-coalesce": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-coalesce/-/actor-function-factory-expression-coalesce-5.3.0.tgz",
"integrity": "sha512-pDqtK2e9qD1claWiCJ0pSYGCcAJQVM/JzdQEaGjbMIGJosDdJfPJ5NiWS7GeU2/nOUJVlsUocpURy7Pw+6h6Iw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-concat": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-concat/-/actor-function-factory-expression-concat-5.3.0.tgz",
"integrity": "sha512-4fHbURg9zA40zf3ZNo3Jh7f01K+xZoE8EBZMlT+f9sRN7hrV/486Nfc5Dg+wsDBPkjgWk4nkoXqFQr2O9Vkjow==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-extensions": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-extensions/-/actor-function-factory-expression-extensions-5.3.0.tgz",
"integrity": "sha512-eEB6A14IIetbZ3uCRtz2A3r2d4Lq/XtxNwT42oOBH1UxLu7fHBKL+8BobwSdp+pzzJVvzrv7keVy5lz4g84hnQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/core": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"rdf-data-factory": "^2.0.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-if": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-if/-/actor-function-factory-expression-if-5.3.0.tgz",
"integrity": "sha512-YxTBMXUaqUAj8qKQrhCWQrygM1j20oDj3uwzWNUqPXd6JgSiXyGrlifxYD7Y8Pg9/6FLsn3aCprK/TQJqJUZLg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-in": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-in/-/actor-function-factory-expression-in-5.3.0.tgz",
"integrity": "sha512-SIgBJHHXwDZ0d8NAfWbnLHC76s9KV3SGeKbX7+oPvCvNsYh8aAfZqAHbIKddNQSqpTaKzeD5n46Eqh78uumyPA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-logical-and": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-logical-and/-/actor-function-factory-expression-logical-and-5.3.0.tgz",
"integrity": "sha512-mqIbZjsmt/ABJkuZ6WBXFkZigfj+dPcHw8tNDRHX4cqKflBJNtxbSd4p0aHcZo4pZkhbpuQO8XlL5C4NBTFR/A==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-logical-or": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-logical-or/-/actor-function-factory-expression-logical-or-5.3.0.tgz",
"integrity": "sha512-gqYJvIPTU6OY6QZpsA6z/Xxs9WmTy3rY6mxfZG7F8BfqgHzzKeTexa4fvd5GppcWZuaCIuRhbBVa5Z1zleffxA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-not-in": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-not-in/-/actor-function-factory-expression-not-in-5.3.0.tgz",
"integrity": "sha512-1K5sR8h8PrYOH/grF6FQBKGI2Be/VwM/kjJ8Hef5oBAYvf1hvYkAaxQ8TOGkLW8navDhoCR2b0I19D7EZoP7zA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-expression-same-term": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-expression-same-term/-/actor-function-factory-expression-same-term-5.3.0.tgz",
"integrity": "sha512-BrYg/2YkC1R9DTZEdT6sWCwvoRICvLT+62DsdF4p8XZxe2T3VEQyAoQTivwkbTpRQnxiLSh3gTd2I3AXwQOw+w==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-abs": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-abs/-/actor-function-factory-term-abs-5.3.0.tgz",
"integrity": "sha512-dTltBZjkgga9j4Q+BFqvEE+WvgEWKJtWjIxWs67KKikNIoIfZDCYWXMXlQMJNC4N09qNATEM7iyz6ttLfY3wHg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-addition": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-addition/-/actor-function-factory-term-addition-5.3.0.tgz",
"integrity": "sha512-A5sEZKM+NJ2tiaFP6QN8oNY+0IF5JTVNuMrlpl8fsVmBzpUMmc+j7SzttQp9wmqo0JKmFdq/hSGhBbhmtqtpGQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"bignumber.js": "^11.0.0"
}
},
"node_modules/@comunica/actor-function-factory-term-ceil": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-ceil/-/actor-function-factory-term-ceil-5.3.0.tgz",
"integrity": "sha512-ozUlZyJt7Ra34EDOmdxnrpnuH1fHGOBmvFUavD+0uR66PXPrsV6EFH/HW0VNfcVe/iPehN0lDFF+SyFeLml3Ug==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-contains": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-contains/-/actor-function-factory-term-contains-5.3.0.tgz",
"integrity": "sha512-6dYnydAdwOfrcJRq9/R7sUqrmCXXZ5381KHtPgnw0va4K32D2QxArIlWO92dYZzDgJ1v+UNRXK5xmbOOg4qW+Q==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-datatype": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-datatype/-/actor-function-factory-term-datatype-5.3.0.tgz",
"integrity": "sha512-z7SJgfJvElB+dR6CdnMgMkB+qK2DupXti7yiqI4DPADiHovipriz0ChAplGSWXzJ+O++1L5PHeeYiBqY8rpuzQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-day": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-day/-/actor-function-factory-term-day-5.3.0.tgz",
"integrity": "sha512-jRYSd2lFENaqcRi0LGzr2JSG/I4zvzgBzlmvw4m8OXIZ75sDkCOPRguWPJoidq7AdmpK5mVNIEhrJJVNNDrotg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-division": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-division/-/actor-function-factory-term-division-5.3.0.tgz",
"integrity": "sha512-vnVeRW2sAKa5KHY4AXlyYMF71DcAzr5zf7lCwPuUoXS+vKuAkO+tGztdEVjKxo4G0mzc3VVbmDuXO2MWIsOhrg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"bignumber.js": "^11.0.0"
}
},
"node_modules/@comunica/actor-function-factory-term-encode-for-uri": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-encode-for-uri/-/actor-function-factory-term-encode-for-uri-5.3.0.tgz",
"integrity": "sha512-82nSJ9LhJqiCl9Aq0MDZa2ekUOeknMUJ6pHxnSYXeS9TYoA+xj5IiMw4tEsZIc7ziIuAQwcR10+mbHptYm3FPg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-equality": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-equality/-/actor-function-factory-term-equality-5.3.0.tgz",
"integrity": "sha512-wxXJVrrNhsljCmenegig6JP+2MJQtx3GdbL1BmGT22OL14DRYr4/GKeCcUTJkKo7LTGQijapqgU3zolKtOICVA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-floor": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-floor/-/actor-function-factory-term-floor-5.3.0.tgz",
"integrity": "sha512-Yxq3DqjD2ezAfnB9r//q32zVqqSsA6+AKNd37PO4BByQiShCO3RIysJGCeh5f986OP8f6E7/QCS2EhtzGVteKQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-greater-than": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-greater-than/-/actor-function-factory-term-greater-than-5.3.0.tgz",
"integrity": "sha512-Qn8hwSntpwenHGBvoVkBST0nRFz6zEnuhI+5w0Hq/eo2qKb8MDtrpEWn3KjG0g8F+UTHDygAsjTwnTijYdtlOw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-greater-than-equal": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-greater-than-equal/-/actor-function-factory-term-greater-than-equal-5.3.0.tgz",
"integrity": "sha512-QclM//r2ACVcJ4aUMD9aFf8DlPON/otvabvQDzqUs+f7ioOtd6j3aSOLSs96I64QCoo2BWRiAhWGLIQRRdhAjQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-has-lang": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-has-lang/-/actor-function-factory-term-has-lang-5.3.0.tgz",
"integrity": "sha512-wcFcYd/Qd4UQd30N1+L5tGQADBjVv90lk2y9NvxwrBl0LnfdOOSyaeVMI8IjAu3zs8U9S1rZEQygg/94rs+WIg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-has-langdir": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-has-langdir/-/actor-function-factory-term-has-langdir-5.3.0.tgz",
"integrity": "sha512-WlTohELdTI6vzozhAd6Lxs+e/AByvWD/enlT3ZrgyP2blZ/QEjAMik49rRKfRZkLymC+I7SIZQoljsH03SSVQA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-hours": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-hours/-/actor-function-factory-term-hours-5.3.0.tgz",
"integrity": "sha512-84joaPb7/IOWxVeF5a2tdT4J2+bNCcT8OqLnw4rbqlnGVd0yXTe2eJIF4tb5jUvu06TYTkiF+TWf9fY48n5jsg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-inequality": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-inequality/-/actor-function-factory-term-inequality-5.3.0.tgz",
"integrity": "sha512-AunuPU6IfkjqimfjbS8KcxjgeE2cYseBZ1FHs+dDCHq7nHxl8lnoul/CKliQPWtqAkJPicXNIAX8Y2SjAy8Tvw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-iri": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-iri/-/actor-function-factory-term-iri-5.3.0.tgz",
"integrity": "sha512-qxdaqoAJmCNJ/u/XaU2hMxjo2mQ8vw5ZvBSNuMCbI+KXIKRLV9AidRvjKMnaSa2KE3maoxqA6r9+pJUHz+H3nw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"relative-to-absolute-iri": "^1.0.7"
}
},
"node_modules/@comunica/actor-function-factory-term-is-blank": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-blank/-/actor-function-factory-term-is-blank-5.3.0.tgz",
"integrity": "sha512-q01xpJ9ms8+3Prz/UkMYOFJWQXZDSXYSY0EHgeAhSCpUMbpRNZFqwwJM5tJXMHbjB5AT4RiqEHGZ3mcW2jB+cg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-is-iri": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-iri/-/actor-function-factory-term-is-iri-5.3.0.tgz",
"integrity": "sha512-5+kxYCn/FmPHFzLIqNosGftphXAuvUuY/xgpPYvUnTlh/gjM2BbCgQR6xiUmibnZPguJsCb3t7Nmygw45y2GMg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-is-literal": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-literal/-/actor-function-factory-term-is-literal-5.3.0.tgz",
"integrity": "sha512-oqN1BeRjNlHpvSi0aFHPQH/2/heTFo0S4OFolQD6i5OADTPbQDMmlgkfLCv6Vd3vJDK0S+YD571xx/ull0gqRg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-is-numeric": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-numeric/-/actor-function-factory-term-is-numeric-5.3.0.tgz",
"integrity": "sha512-mxLI9HiODJVxG7X58rCbSnOTTF0eT/6Ui5G2m0/UQJJPM/kEusNSBnbQcRbUM+npeJKpNCZkDDwMJyhFYDLwRw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-is-triple": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-is-triple/-/actor-function-factory-term-is-triple-5.3.0.tgz",
"integrity": "sha512-IgToUw/6+FnbuCiR6JN99Phxbc8wdazIzGZtQVwA1XfSp00Prj1/i4ItuZKeqBZpntZbvyXHEafRSfa4SXzivQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-lang": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lang/-/actor-function-factory-term-lang-5.3.0.tgz",
"integrity": "sha512-L8kb+o8HPDy6VjQHpAjRBnn1C4BcTTJjJ0LhvNxJqPD5nVg5dD9BIWf2l6Vv3UMZX9CaUoDpRr0v5b1fULDJvg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-langdir": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-langdir/-/actor-function-factory-term-langdir-5.3.0.tgz",
"integrity": "sha512-PPVlAVaVr2y+s9jz7LDC/6+P5GxeS2Q/NtAOc6+ISpTGvaN7dIinXK+3ECR1Ly0fGW9MgHWPkfPBCMnZjbMZIA==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-langmatches": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-langmatches/-/actor-function-factory-term-langmatches-5.3.0.tgz",
"integrity": "sha512-wSBLX2oP4Uj9Xz1uC0daTvrPePZ8cnEOr3B+MFENitQZOMfMQrxj56kqTDKlIP3ymWcnRSQo33mMUhjcMDNa7A==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-lcase": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lcase/-/actor-function-factory-term-lcase-5.3.0.tgz",
"integrity": "sha512-Cz1hwmBSQKp4jkk/pPZl2Hz+bWzcYX5sgPFrR+5VOT/1GoXXRhKGxCGrlNoIvwTVmg2TsdxEUHBFztyQwAqXJQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-lesser-than": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lesser-than/-/actor-function-factory-term-lesser-than-5.3.0.tgz",
"integrity": "sha512-93LdymVrC+9T5Wep6kiSbhL6Cu3orH4r/24FUFDlZcW+dSoPXQXeSPo315iTqpIALl0LOkXmrWONlq7YuqXRWw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-lesser-than-equal": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-lesser-than-equal/-/actor-function-factory-term-lesser-than-equal-5.3.0.tgz",
"integrity": "sha512-dZuNLI+cQGeSjq/DOzUQFvVMV7BjuiHzKiC2onOrjwy6ea7ewFBqepY5KMVjHbU+kjO+JChIglIVd9qmdet45g==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-md5": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-md5/-/actor-function-factory-term-md5-5.3.0.tgz",
"integrity": "sha512-ycyd5sjyfyxUyzg9xG62SSnm+xGXeCqmV57K7c6ecUezd5OrKZpW8PvobNQ8kYsF7NFMuJm6wxDBSxKkrGwpFQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"@types/spark-md5": "^3.0.1",
"spark-md5": "^3.0.1"
}
},
"node_modules/@comunica/actor-function-factory-term-minutes": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-minutes/-/actor-function-factory-term-minutes-5.3.0.tgz",
"integrity": "sha512-sALHIQ/mhXrSJMpPE9IJDEZK4bCH5V9v8e/ofTjn06hqIRo3g/oNbDLKa9MEhqlL6LiHUVV14yLBuDuTYmEucQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-month": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-month/-/actor-function-factory-term-month-5.3.0.tgz",
"integrity": "sha512-T4FUk5Nw7TMim5Ic0j69vz3uoXYPUBxLFyUgtAT33EbFPeKea/vphGhimP/BcV/344Pdhh1uUJuMPDsHC1mO4Q==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-multiplication": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-multiplication/-/actor-function-factory-term-multiplication-5.3.0.tgz",
"integrity": "sha512-qidJiLwSt5+H9S/IQV/KoqW9bVhcw0qXY9pUqjWxrTDvOVwShHRzVBCXFbn0ru4DO4jt56CSMPRWZGdynPed8A==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"bignumber.js": "^11.0.0"
}
},
"node_modules/@comunica/actor-function-factory-term-not": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-not/-/actor-function-factory-term-not-5.3.0.tgz",
"integrity": "sha512-/jpBfyCknSEKAhRYAxcxvGv5/uRr/A/A36sAGpwknqWkRDGV2sZ7XQdn9bqP1pQwz4vxLIUhMTalPspNsAl/cQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-now": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-now/-/actor-function-factory-term-now-5.3.0.tgz",
"integrity": "sha512-18ZS0ysFKJwjGMBB9/xI5140DqW5sp45unDfURlNKLuRgQAqjK5kkjyr72otLNW1JwtlDDt5qun6kr9d84SFAg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-object": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-object/-/actor-function-factory-term-object-5.3.0.tgz",
"integrity": "sha512-pgPS3sLt6lCZmQSuojuPArA5pOfXRjYwOQuqnl98/gkjdHgZaZhV+rLF2qYQYO0q5QxOUacp6l9yE7wfcoX25Q==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-predicate": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-predicate/-/actor-function-factory-term-predicate-5.3.0.tgz",
"integrity": "sha512-zR+6OPTQGpl+XDs41+leFhBZuPTvLUIspKscLS8ujLuMsT9eZVf7PZm4Rkhg3cL0BW5S60SqCdkJVEFAi7TGVw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-rand": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-rand/-/actor-function-factory-term-rand-5.3.0.tgz",
"integrity": "sha512-ln1CvevDInjP7w0sGdoYqKesW2FuQ/eM3VgPFbWC4l3kUP2xmiHGSO010eP6He4WDtsZsKBk+KfPsMMUGKXc2g==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-regex": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-regex/-/actor-function-factory-term-regex-5.3.0.tgz",
"integrity": "sha512-zFHFkF3td+UqcM5vwLXTzRRkSSiyDPFqv9QPZADp5kiDYG9bh/dVYvEOgMGV5k3tbBAJOmm9QXcgLHLzEkmsQw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-replace": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-replace/-/actor-function-factory-term-replace-5.3.0.tgz",
"integrity": "sha512-Pp15O8ebd88uV0s3CFQrd7SlVJ9XCD+Wd/ql3CB71Ak1tN1jY0XqrDRZsxqjGgG1dzotXExbAaSR5pe3G+BdGA==",
"license": "MIT",
"dependencies": {
"@comunica/actor-function-factory-term-regex": "^5.3.0",
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-round": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-round/-/actor-function-factory-term-round-5.3.0.tgz",
"integrity": "sha512-YSvkEeGorh5gb6QGL00TPrAxlTz8JOxLN0LTzo1ToQ/2WkMAWv/nhwNUaxuxPv+HuCMg7HWLd4SecQqSUWXhdg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-seconds": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-seconds/-/actor-function-factory-term-seconds-5.3.0.tgz",
"integrity": "sha512-u0p4kRtIcCxL944AGEJzGbYk7JwurFGu4NrwnS8egBXeGISRjufoAU9ZECP7vIJza+TZv2ir5m3FP9RyWqpBUg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-sha1": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-sha1/-/actor-function-factory-term-sha1-5.3.0.tgz",
"integrity": "sha512-GnsH0U+PfxhlCI3mVm5547t12IS94u4jk3aC4ZP6Oxw4WWoOFJoYg5e/aJrgwWw9F0e582YWV7C+oAcOa6QMeQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"hash.js": "^1.1.7"
}
},
"node_modules/@comunica/actor-function-factory-term-sha256": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-sha256/-/actor-function-factory-term-sha256-5.3.0.tgz",
"integrity": "sha512-l4NxLQZ2pX8/8KunB8tS2GDCoR/H8L2e0TRuDnF4J9o0MkV5DyNhnGdpBb/46l8v97pSOceLXD6XeYUEYE3Rxw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"hash.js": "^1.1.7"
}
},
"node_modules/@comunica/actor-function-factory-term-sha384": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-sha384/-/actor-function-factory-term-sha384-5.3.0.tgz",
"integrity": "sha512-Bis+CineidELoPZHHy9dw+YRrBhpVuMjH4LTouHy/KxqOefvcWFt7BBzrZX53HRWr8BNG1WWLhlOc9muGrGbNQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"hash.js": "^1.1.7"
}
},
"node_modules/@comunica/actor-function-factory-term-sha512": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-sha512/-/actor-function-factory-term-sha512-5.3.0.tgz",
"integrity": "sha512-1Cuto34d1DNNP5C8EEzTsREAw3PKvjCJGxhBRaBr7WEoffMjpFQT1EJvSBSPezWYpLjdjj6sfyxowFOUV0bfkg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0",
"hash.js": "^1.1.7"
}
},
"node_modules/@comunica/actor-function-factory-term-str": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str/-/actor-function-factory-term-str-5.3.0.tgz",
"integrity": "sha512-nrSGuAwFeF+5NXHsAIvoUgXbGZ46nUCCcqA1b8aKF+/074qb652ljb6P/nXv5ShLgsre+fQ0OFGe+z+wI9A9bQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-str-after": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-after/-/actor-function-factory-term-str-after-5.3.0.tgz",
"integrity": "sha512-LiKZu97xsuHLTMkpADsxbFn2QZcdN5xLXmg5TCGdA4jYwhTD7IWecxrlT7UbpoXLPvgiD7aeBxNrEXwXOUQrog==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-str-before": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-before/-/actor-function-factory-term-str-before-5.3.0.tgz",
"integrity": "sha512-P090fcLfnVwyC6iDJMGJ0av+jmUurV7SDsVPW7O1qUNW4cXiMZaj0lbP23XEa0x/5PPX26f8Nitveawv/ZzZUQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-str-dt": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-dt/-/actor-function-factory-term-str-dt-5.3.0.tgz",
"integrity": "sha512-FTuepSrOU6SxJW1Y5MxdU5FJN9/2wIE58DcpvmVlipVMhjTpsWfw/MRPg3GYCampS4M+OMpKxFzbDVRGdXjtfQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/context-entries": "^5.3.0",
"@comunica/types": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-str-ends": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-ends/-/actor-function-factory-term-str-ends-5.3.0.tgz",
"integrity": "sha512-oNPkw0ReAVGsXiZl5yMwwMgMOcv61Bs/prrFE5iIas9HjwmvQjlcJHT4S7WEH1s1I2fLFF8dl0nOJHNoO8cUDg==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-str-lang": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-lang/-/actor-function-factory-term-str-lang-5.3.0.tgz",
"integrity": "sha512-a5+7ccZYB3wrpC58UD1U4SM2jczZYpeGha8do7WMe9iapxat7XO95E6v44P3qcZOHlHv5HIOYgktVkLkt6oL2Q==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-str-langdir": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-langdir/-/actor-function-factory-term-str-langdir-5.3.0.tgz",
"integrity": "sha512-6MoEM6ZzSussLJC2gi4+HqIg6dxpGJk2qTrBehp9vncmTsOlmGrIoruh9uStZ1Si0nrTeyvowtB853jQrKZGGw==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-str-len": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-len/-/actor-function-factory-term-str-len-5.3.0.tgz",
"integrity": "sha512-NYeG5TZrPqfUfVwb2Rf35QGF7e48r7yluDpqPWsLaPloGdifwtTJvx+r4P4drkxgRNGhej88RafayqeQF1Y/GQ==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-str-starts": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-starts/-/actor-function-factory-term-str-starts-5.3.0.tgz",
"integrity": "sha512-HX120EomFPcDiGTzI/J5EsCEe2c+il3XEs3gSsqmFDP8bX6djHxK/N6so1lZzzTf15QAxJuSh86z5zojEeCq7g==",
"license": "MIT",
"dependencies": {
"@comunica/bus-function-factory": "^5.3.0",
"@comunica/utils-expression-evaluator": "^5.3.0"
}
},
"node_modules/@comunica/actor-function-factory-term-str-uuid": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-function-factory-term-str-uuid/-/actor-function-factory-term-str-uuid-5.3.0.tgz",
"integrity": "sha512-mQTLBTC0V5Eq9uIA7+MZSU34aiWA1nowMcVkk2EfX+1TbnApDH4wNEakTbonUFuTRkKG3SuYcoQFdlljMgMQRw==",
"license": "MIT",
"dependencies": {