-
Notifications
You must be signed in to change notification settings - Fork 0
/
package-lock.json
9532 lines (9532 loc) · 389 KB
/
package-lock.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "@api-modeling/model-bindings",
"version": "0.1.51",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@api-modeling/model-bindings",
"version": "0.1.51",
"license": "ISC",
"dependencies": {
"@api-modeling/amf-client-js": "^4.2.3",
"@api-modeling/api-modeling-metadata": "^0.1.41",
"@types/n3": "^1.4.3",
"@types/uuid": "^7.0.2",
"cross-fetch": "^3.0.4",
"dedupe": "^3.0.2",
"jsonld-streaming-parser": "^2.0.0",
"n3": "^1.3.5",
"ts-md5": "^1.2.7"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"ts-node": "^8.8.2",
"typescript": "^4.0.5"
}
},
"node_modules/@api-modeling/amf-client-js": {
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/@api-modeling/amf-client-js/-/amf-client-js-4.2.3.tgz",
"integrity": "sha512-S45ht4KdYlKUWuO0OPHJqX3jay48CUBeRR2PrjKwyrwNzrWodswFmULqnIuLSCS9as4z5eL4OSgR/CrIOsKX2A==",
"dependencies": {
"ajv": "6.5.2",
"amf-shacl-node": "2.0.0"
},
"bin": {
"amf": "bin/amf"
}
},
"node_modules/@api-modeling/api-modeling-metadata": {
"version": "0.1.41",
"resolved": "https://registry.npmjs.org/@api-modeling/api-modeling-metadata/-/api-modeling-metadata-0.1.41.tgz",
"integrity": "sha512-M/kqsVetMaD8bfz4QrD6JwoDPzi4kHtrxedGLODoB0dNMRon00EGrLuJL5Y1Q2m+zelRfN11Fdh7bk6rOFI7tw==",
"dependencies": {
"@api-modeling/amf-client-js": "^4.2.3",
"uuid": "^8.3.1"
}
},
"node_modules/@babel/code-frame": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz",
"integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==",
"dev": true,
"dependencies": {
"@babel/highlight": "^7.12.13"
}
},
"node_modules/@babel/core": {
"version": "7.12.16",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.16.tgz",
"integrity": "sha512-t/hHIB504wWceOeaOoONOhu+gX+hpjfeN6YRBT209X/4sibZQfSF1I0HFRRlBe97UZZosGx5XwUg1ZgNbelmNw==",
"dev": true,
"dependencies": {
"@babel/code-frame": "^7.12.13",
"@babel/generator": "^7.12.15",
"@babel/helper-module-transforms": "^7.12.13",
"@babel/helpers": "^7.12.13",
"@babel/parser": "^7.12.16",
"@babel/template": "^7.12.13",
"@babel/traverse": "^7.12.13",
"@babel/types": "^7.12.13",
"convert-source-map": "^1.7.0",
"debug": "^4.1.0",
"gensync": "^1.0.0-beta.1",
"json5": "^2.1.2",
"lodash": "^4.17.19",
"semver": "^5.4.1",
"source-map": "^0.5.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/core/node_modules/debug": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
"integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
"dev": true,
"dependencies": {
"ms": "2.1.2"
},
"engines": {
"node": ">=6.0"
}
},
"node_modules/@babel/core/node_modules/ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"dev": true
},
"node_modules/@babel/generator": {
"version": "7.12.15",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.15.tgz",
"integrity": "sha512-6F2xHxBiFXWNSGb7vyCUTBF8RCLY66rS0zEPcP8t/nQyXjha5EuK4z7H5o7fWG8B4M7y6mqVWq1J+1PuwRhecQ==",
"dev": true,
"dependencies": {
"@babel/types": "^7.12.13",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"node_modules/@babel/helper-function-name": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz",
"integrity": "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==",
"dev": true,
"dependencies": {
"@babel/helper-get-function-arity": "^7.12.13",
"@babel/template": "^7.12.13",
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/helper-get-function-arity": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz",
"integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==",
"dev": true,
"dependencies": {
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/helper-member-expression-to-functions": {
"version": "7.12.16",
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.16.tgz",
"integrity": "sha512-zYoZC1uvebBFmj1wFAlXwt35JLEgecefATtKp20xalwEK8vHAixLBXTGxNrVGEmTT+gzOThUgr8UEdgtalc1BQ==",
"dev": true,
"dependencies": {
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/helper-module-imports": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz",
"integrity": "sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g==",
"dev": true,
"dependencies": {
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/helper-module-transforms": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.13.tgz",
"integrity": "sha512-acKF7EjqOR67ASIlDTupwkKM1eUisNAjaSduo5Cz+793ikfnpe7p4Q7B7EWU2PCoSTPWsQkR7hRUWEIZPiVLGA==",
"dev": true,
"dependencies": {
"@babel/helper-module-imports": "^7.12.13",
"@babel/helper-replace-supers": "^7.12.13",
"@babel/helper-simple-access": "^7.12.13",
"@babel/helper-split-export-declaration": "^7.12.13",
"@babel/helper-validator-identifier": "^7.12.11",
"@babel/template": "^7.12.13",
"@babel/traverse": "^7.12.13",
"@babel/types": "^7.12.13",
"lodash": "^4.17.19"
}
},
"node_modules/@babel/helper-optimise-call-expression": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz",
"integrity": "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==",
"dev": true,
"dependencies": {
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/helper-replace-supers": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.13.tgz",
"integrity": "sha512-pctAOIAMVStI2TMLhozPKbf5yTEXc0OJa0eENheb4w09SrgOWEs+P4nTOZYJQCqs8JlErGLDPDJTiGIp3ygbLg==",
"dev": true,
"dependencies": {
"@babel/helper-member-expression-to-functions": "^7.12.13",
"@babel/helper-optimise-call-expression": "^7.12.13",
"@babel/traverse": "^7.12.13",
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/helper-simple-access": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz",
"integrity": "sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA==",
"dev": true,
"dependencies": {
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/helper-split-export-declaration": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz",
"integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==",
"dev": true,
"dependencies": {
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
"integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==",
"dev": true
},
"node_modules/@babel/helpers": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.13.tgz",
"integrity": "sha512-oohVzLRZ3GQEk4Cjhfs9YkJA4TdIDTObdBEZGrd6F/T0GPSnuV6l22eMcxlvcvzVIPH3VTtxbseudM1zIE+rPQ==",
"dev": true,
"dependencies": {
"@babel/template": "^7.12.13",
"@babel/traverse": "^7.12.13",
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/highlight": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.12.13.tgz",
"integrity": "sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww==",
"dev": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"node_modules/@babel/parser": {
"version": "7.12.16",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.16.tgz",
"integrity": "sha512-c/+u9cqV6F0+4Hpq01jnJO+GLp2DdT63ppz9Xa+6cHaajM9VFzK/iDXiKK65YtpeVwu+ctfS6iqlMqRgQRzeCw==",
"dev": true,
"bin": {
"parser": "bin/babel-parser.js"
},
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@babel/template": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz",
"integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==",
"dev": true,
"dependencies": {
"@babel/code-frame": "^7.12.13",
"@babel/parser": "^7.12.13",
"@babel/types": "^7.12.13"
}
},
"node_modules/@babel/traverse": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.13.tgz",
"integrity": "sha512-3Zb4w7eE/OslI0fTp8c7b286/cQps3+vdLW3UcwC8VSJC6GbKn55aeVVu2QJNuCDoeKyptLOFrPq8WqZZBodyA==",
"dev": true,
"dependencies": {
"@babel/code-frame": "^7.12.13",
"@babel/generator": "^7.12.13",
"@babel/helper-function-name": "^7.12.13",
"@babel/helper-split-export-declaration": "^7.12.13",
"@babel/parser": "^7.12.13",
"@babel/types": "^7.12.13",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
}
},
"node_modules/@babel/traverse/node_modules/debug": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
"integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
"dev": true,
"dependencies": {
"ms": "2.1.2"
},
"engines": {
"node": ">=6.0"
}
},
"node_modules/@babel/traverse/node_modules/ms": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
"integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
"dev": true
},
"node_modules/@babel/types": {
"version": "7.12.13",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.13.tgz",
"integrity": "sha512-oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ==",
"dev": true,
"dependencies": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"node_modules/@comunica/actor-abstract-bindings-hash": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.19.2.tgz",
"integrity": "sha512-Rf5DH43+inBhI/IlmKILQGTYWCWWmK/s3YM+O/wmxO3M38OXFspv4fyIfUYrfBHeYKaq78w64vPH43umw+DOAQ==",
"dependencies": {
"canonicalize": "^1.0.1",
"hash.js": "^1.1.7",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-abstract-mediatyped": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.19.2.tgz",
"integrity": "sha512-BER87Niq4dqLxfF3JtYCZ1lCHB+MB/N3yNUq5GnInzdisAQBT/T7dwmps1eqF435DyiDS/j0VOJpnPmWV8bRlA=="
},
"node_modules/@comunica/actor-abstract-path": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.19.2.tgz",
"integrity": "sha512-0pqfYotFtXIDyNjmqqGyxrVwrS7pNY9R5he3PugilzZCOrHy19Zr8bofr24xTXgEP8VdQR1uD2vE1H43JE/6HA==",
"dependencies": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-http-memento": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.19.2.tgz",
"integrity": "sha512-3d8cviX1i1CKXkaV0u0C9S/jzmViZTMd3kwVUOwaqJW8EH4dpJkADtxaly32qtRfUp2suNQ/dcG8DlAcHUPNNg==",
"dependencies": {
"@types/parse-link-header": "^1.0.0",
"cross-fetch": "^3.0.5",
"parse-link-header": "^1.0.1"
}
},
"node_modules/@comunica/actor-http-native": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.19.2.tgz",
"integrity": "sha512-/eLeL3/MCuoTpYqMKM4f6VNIgBMtduOHc7DHxw/p6I/mL9mRZp848+MyhKFEN4W4gVk8aKVlMCI4MI52bKXWLw==",
"dependencies": {
"@types/parse-link-header": "^1.0.0",
"cross-fetch": "^3.0.5",
"follow-redirects": "^1.5.1",
"parse-link-header": "^1.0.1"
}
},
"node_modules/@comunica/actor-http-proxy": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-1.19.2.tgz",
"integrity": "sha512-b/yP6TbpEBOac5gtX+4lxF6cd+/mI0WQiYUZGhRQZ2gUEcU0js0Gte9uqz1wCVxIQJnMbOryso3tCVFw/CZNJg=="
},
"node_modules/@comunica/actor-init-sparql": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.19.2.tgz",
"integrity": "sha512-TUYde50lcJOVbIkY+sJb9B1OuaKB8yvy8oyeNXF8nF3rOdFT0hnjmPcyT9KRKKJXmG7t4ywygDSbyaGqPnlyUA==",
"dependencies": {
"@comunica/actor-abstract-bindings-hash": "^1.19.2",
"@comunica/actor-abstract-mediatyped": "^1.19.2",
"@comunica/actor-http-memento": "^1.19.2",
"@comunica/actor-http-native": "^1.19.2",
"@comunica/actor-http-proxy": "^1.19.2",
"@comunica/actor-optimize-query-operation-join-bgp": "^1.19.2",
"@comunica/actor-query-operation-ask": "^1.19.2",
"@comunica/actor-query-operation-bgp-empty": "^1.19.2",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.19.2",
"@comunica/actor-query-operation-bgp-single": "^1.19.2",
"@comunica/actor-query-operation-construct": "^1.19.2",
"@comunica/actor-query-operation-describe-subject": "^1.19.2",
"@comunica/actor-query-operation-distinct-hash": "^1.19.2",
"@comunica/actor-query-operation-extend": "^1.19.2",
"@comunica/actor-query-operation-filter-sparqlee": "^1.19.2",
"@comunica/actor-query-operation-from-quad": "^1.19.2",
"@comunica/actor-query-operation-group": "^1.19.2",
"@comunica/actor-query-operation-join": "^1.19.2",
"@comunica/actor-query-operation-leftjoin-left-deep": "^1.19.2",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.19.2",
"@comunica/actor-query-operation-minus": "^1.19.2",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.19.2",
"@comunica/actor-query-operation-path-alt": "^1.19.2",
"@comunica/actor-query-operation-path-inv": "^1.19.2",
"@comunica/actor-query-operation-path-link": "^1.19.2",
"@comunica/actor-query-operation-path-nps": "^1.19.2",
"@comunica/actor-query-operation-path-one-or-more": "^1.19.2",
"@comunica/actor-query-operation-path-seq": "^1.19.2",
"@comunica/actor-query-operation-path-zero-or-more": "^1.19.2",
"@comunica/actor-query-operation-path-zero-or-one": "^1.19.2",
"@comunica/actor-query-operation-project": "^1.19.2",
"@comunica/actor-query-operation-quadpattern": "^1.19.2",
"@comunica/actor-query-operation-reduced-hash": "^1.19.2",
"@comunica/actor-query-operation-service": "^1.19.2",
"@comunica/actor-query-operation-slice": "^1.19.2",
"@comunica/actor-query-operation-sparql-endpoint": "^1.19.2",
"@comunica/actor-query-operation-union": "^1.19.2",
"@comunica/actor-query-operation-values": "^1.19.2",
"@comunica/actor-rdf-dereference-http-parse": "^1.19.2",
"@comunica/actor-rdf-join-multi-smallest": "^1.19.2",
"@comunica/actor-rdf-join-nestedloop": "^1.19.2",
"@comunica/actor-rdf-join-symmetrichash": "^1.19.2",
"@comunica/actor-rdf-metadata-all": "^1.19.2",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.19.2",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.19.2",
"@comunica/actor-rdf-metadata-extract-sparql-service": "^1.19.2",
"@comunica/actor-rdf-metadata-primary-topic": "^1.19.2",
"@comunica/actor-rdf-parse-html": "^1.19.2",
"@comunica/actor-rdf-parse-html-microdata": "^1.19.2",
"@comunica/actor-rdf-parse-html-rdfa": "^1.19.2",
"@comunica/actor-rdf-parse-html-script": "^1.19.2",
"@comunica/actor-rdf-parse-jsonld": "^1.19.2",
"@comunica/actor-rdf-parse-n3": "^1.19.2",
"@comunica/actor-rdf-parse-rdfxml": "^1.19.2",
"@comunica/actor-rdf-parse-xml-rdfa": "^1.19.2",
"@comunica/actor-rdf-resolve-hypermedia-links-next": "^1.19.2",
"@comunica/actor-rdf-resolve-hypermedia-none": "^1.19.2",
"@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.19.2",
"@comunica/actor-rdf-resolve-hypermedia-sparql": "^1.19.2",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.19.2",
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.19.2",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.19.2",
"@comunica/actor-rdf-serialize-jsonld": "^1.19.2",
"@comunica/actor-rdf-serialize-n3": "^1.19.2",
"@comunica/actor-sparql-parse-algebra": "^1.19.2",
"@comunica/actor-sparql-parse-graphql": "^1.19.2",
"@comunica/actor-sparql-serialize-json": "^1.19.2",
"@comunica/actor-sparql-serialize-rdf": "^1.19.2",
"@comunica/actor-sparql-serialize-simple": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-csv": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-json": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-tsv": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.19.2",
"@comunica/actor-sparql-serialize-stats": "^1.19.2",
"@comunica/actor-sparql-serialize-table": "^1.19.2",
"@comunica/actor-sparql-serialize-tree": "^1.19.2",
"@comunica/bus-context-preprocess": "^1.19.2",
"@comunica/bus-http": "^1.19.2",
"@comunica/bus-http-invalidate": "^1.19.2",
"@comunica/bus-init": "^1.19.2",
"@comunica/bus-optimize-query-operation": "^1.19.2",
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/bus-rdf-dereference": "^1.19.2",
"@comunica/bus-rdf-dereference-paged": "^1.19.2",
"@comunica/bus-rdf-join": "^1.19.2",
"@comunica/bus-rdf-metadata": "^1.19.2",
"@comunica/bus-rdf-metadata-extract": "^1.19.2",
"@comunica/bus-rdf-parse": "^1.19.2",
"@comunica/bus-rdf-parse-html": "^1.19.2",
"@comunica/bus-rdf-resolve-hypermedia": "^1.19.2",
"@comunica/bus-rdf-resolve-hypermedia-links": "^1.19.2",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.19.2",
"@comunica/bus-rdf-serialize": "^1.19.2",
"@comunica/bus-sparql-parse": "^1.19.2",
"@comunica/bus-sparql-serialize": "^1.19.2",
"@comunica/core": "^1.19.2",
"@comunica/logger-pretty": "^1.19.2",
"@comunica/logger-void": "^1.19.2",
"@comunica/mediator-all": "^1.19.2",
"@comunica/mediator-combine-pipeline": "^1.19.2",
"@comunica/mediator-combine-union": "^1.19.2",
"@comunica/mediator-number": "^1.19.2",
"@comunica/mediator-race": "^1.19.2",
"@comunica/runner": "^1.19.2",
"@comunica/runner-cli": "^1.19.2",
"@types/minimist": "^1.2.0",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"minimist": "^1.2.0",
"negotiate": "^1.0.1",
"rdf-quad": "^1.4.0",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0",
"streamify-string": "^1.0.1"
},
"bin": {
"comunica-dynamic-sparql": "bin/query-dynamic.js",
"comunica-sparql": "bin/query.js",
"comunica-sparql-http": "bin/http.js"
}
},
"node_modules/@comunica/actor-init-sparql-rdfjs": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql-rdfjs/-/actor-init-sparql-rdfjs-1.19.2.tgz",
"integrity": "sha512-8UWNPF5bCNRMigIJEK0rA9urmv2JTMz7PygB/ZZ2fGCGSuIJjdoeu+CGoQufqZSlloQpWooDqVxqPTGI1x+kuw==",
"dependencies": {
"@comunica/actor-abstract-mediatyped": "^1.19.2",
"@comunica/actor-init-sparql": "^1.19.2",
"@comunica/actor-query-operation-ask": "^1.19.2",
"@comunica/actor-query-operation-bgp-empty": "^1.19.2",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.19.2",
"@comunica/actor-query-operation-bgp-single": "^1.19.2",
"@comunica/actor-query-operation-construct": "^1.19.2",
"@comunica/actor-query-operation-describe-subject": "^1.19.2",
"@comunica/actor-query-operation-distinct-hash": "^1.19.2",
"@comunica/actor-query-operation-extend": "^1.19.2",
"@comunica/actor-query-operation-filter-sparqlee": "^1.19.2",
"@comunica/actor-query-operation-from-quad": "^1.19.2",
"@comunica/actor-query-operation-join": "^1.19.2",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.19.2",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.19.2",
"@comunica/actor-query-operation-path-alt": "^1.19.2",
"@comunica/actor-query-operation-path-inv": "^1.19.2",
"@comunica/actor-query-operation-path-link": "^1.19.2",
"@comunica/actor-query-operation-path-nps": "^1.19.2",
"@comunica/actor-query-operation-path-one-or-more": "^1.19.2",
"@comunica/actor-query-operation-path-seq": "^1.19.2",
"@comunica/actor-query-operation-path-zero-or-more": "^1.19.2",
"@comunica/actor-query-operation-path-zero-or-one": "^1.19.2",
"@comunica/actor-query-operation-project": "^1.19.2",
"@comunica/actor-query-operation-quadpattern": "^1.19.2",
"@comunica/actor-query-operation-service": "^1.19.2",
"@comunica/actor-query-operation-slice": "^1.19.2",
"@comunica/actor-query-operation-union": "^1.19.2",
"@comunica/actor-query-operation-values": "^1.19.2",
"@comunica/actor-rdf-join-nestedloop": "^1.19.2",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.19.2",
"@comunica/actor-rdf-serialize-jsonld": "^1.19.2",
"@comunica/actor-rdf-serialize-n3": "^1.19.2",
"@comunica/actor-sparql-parse-algebra": "^1.19.2",
"@comunica/actor-sparql-serialize-json": "^1.19.2",
"@comunica/actor-sparql-serialize-rdf": "^1.19.2",
"@comunica/actor-sparql-serialize-simple": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-json": "^1.19.2",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.19.2",
"@comunica/bus-context-preprocess": "^1.19.2",
"@comunica/bus-init": "^1.19.2",
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/bus-rdf-join": "^1.19.2",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.19.2",
"@comunica/bus-rdf-serialize": "^1.19.2",
"@comunica/bus-sparql-parse": "^1.19.2",
"@comunica/bus-sparql-serialize": "^1.19.2",
"@comunica/core": "^1.19.2",
"@comunica/mediator-combine-pipeline": "^1.19.2",
"@comunica/mediator-combine-union": "^1.19.2",
"@comunica/mediator-number": "^1.19.2",
"@comunica/mediator-race": "^1.19.2",
"@comunica/runner": "^1.19.2",
"@comunica/runner-cli": "^1.19.2"
}
},
"node_modules/@comunica/actor-optimize-query-operation-join-bgp": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-1.19.2.tgz",
"integrity": "sha512-MyC//Cl9SwQNKQeaULea8ViU1ehn68hL6CuqqwDHL/0M6lLi45aMFUBs9iK/Vw330uzFjbLjTc1epo1fFb2tLA==",
"dependencies": {
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-ask": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-1.19.2.tgz",
"integrity": "sha512-ogRkDwuPxDBRV8By20OHSkB89MblNM4YVfkMT2pPDhWrPojKGQVvedi58LpnfWX1NmTN63fhm9F8TyaG+jwsew==",
"dependencies": {
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-empty": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-empty/-/actor-query-operation-bgp-empty-1.19.2.tgz",
"integrity": "sha512-Lbv7XC1Jct0FMIat4ZwVH73M2KttaSKbiVCN27ef97HTlveHS5IJ0TXUBcf/sn3YGXhQcaF9zFiLozZ9cD7o0g==",
"dependencies": {
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-left-deep-smallest": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-left-deep-smallest/-/actor-query-operation-bgp-left-deep-smallest-1.19.2.tgz",
"integrity": "sha512-KuyPkY47MFBYcZIwE2shJYTpd1ERGOLuwEVG3UOXz/ON6tosklQOAbuGHe0bFk0fZTrM2e3SLVdPMeWaetf7QA==",
"dependencies": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-bgp-single": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-single/-/actor-query-operation-bgp-single-1.19.2.tgz",
"integrity": "sha512-Z9mdfGg/blqzh9wDEusnwwpTpP7Eb3GdbIOAxaMzIe3fo3PDuTadariXPzliho9tprC1dF/JN78i/1QM5MYqUA==",
"dependencies": {
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-construct": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-1.19.2.tgz",
"integrity": "sha512-wNktY1yUVFCQBqvcr4xD52hlMmDzrB0VOJ9aEHQdvjmCs4P2AsLCG5Ty+qiz7va3HC1nT1qV4qRNLkeUYS93GQ==",
"dependencies": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-describe-subject": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-1.19.2.tgz",
"integrity": "sha512-AVNiPI/k6HM+fSRxcTodsHLld+lADxzKDnjUGk4ckcWSqVsmzwlWUJ1DZfp8xqVj/3uWkIeG1oaY8h5Ph15ssg==",
"dependencies": {
"@comunica/actor-query-operation-union": "^1.19.2",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-distinct-hash": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-1.19.2.tgz",
"integrity": "sha512-LO+hAW0tGRthAUKOkUM7ODjIsUbdNgPh+3cdVr4vkb2OcI/bJy1i5owIKUotepg8SuwekjDgOz0DxF2Mr5rjtw==",
"dependencies": {
"@comunica/actor-abstract-bindings-hash": "^1.19.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-extend": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-1.19.2.tgz",
"integrity": "sha512-6n2vY/QvOc4QreT3I/yf8jVryJgOo6czAGL/UelqS00BO/uOwRK1TjUsylGzeCTtp0w0j7SF6UiCp3PueIAi5g==",
"dependencies": {
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"node_modules/@comunica/actor-query-operation-filter-sparqlee": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-1.19.2.tgz",
"integrity": "sha512-J+YZ8jzgpXVuKOJt1wEXiu5ZuynvSJ7USVqPbv3rqgmA86cXKL/ko5JNf6aT3kGIkHsxmXHtxKYfZ0xv0g07HA==",
"dependencies": {
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"node_modules/@comunica/actor-query-operation-from-quad": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-1.19.2.tgz",
"integrity": "sha512-bao1/9lBBOHTnkORdfxpRrvvxHoJGEBTH06/E5CQPod7SkVlYs4cSBqy8UikkqNpehoXXHgQsOzncue8vlu2rQ==",
"dependencies": {
"@types/rdf-js": "*",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-group": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-1.19.2.tgz",
"integrity": "sha512-1h32gBva2Dd1SIbnhoEQizCzQkhRxI4r0lotDTtiijF/Wl/yvqc4FSaJ5ieeEVKSlPLpxmAvRKiGoGVT1FxA5A==",
"dependencies": {
"@comunica/actor-abstract-bindings-hash": "^1.19.2",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"node_modules/@comunica/actor-query-operation-join": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-1.19.2.tgz",
"integrity": "sha512-va0/UJyVojEDnmXON16zre5i6zhX1bFPeA0MmndTMxVaUSHPpknZkRq1VnSKxE6jb8bejVEfjgcU9JxRnPd+uQ==",
"dependencies": {
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin-left-deep": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-left-deep/-/actor-query-operation-leftjoin-left-deep-1.19.2.tgz",
"integrity": "sha512-j3Ah5oz+K6m3Tj+mBLK5qt20BKnMimEOKy1WNic/Z48CshJU8lH/jCivTOrg/AYjx3+5fi4JfsKEVY/o8olHyA==",
"dependencies": {
"@comunica/bus-rdf-join": "^1.19.2",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-leftjoin-nestedloop": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-nestedloop/-/actor-query-operation-leftjoin-nestedloop-1.19.2.tgz",
"integrity": "sha512-KYG+3HeBzzY2INVHERMvaCjuymxjfHvrmfmhrjidWzHsjyaEefaDKaZcp6zIRBGRKmHsN/+03c6cVm7ZMru7wg==",
"dependencies": {
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"node_modules/@comunica/actor-query-operation-minus": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-1.19.2.tgz",
"integrity": "sha512-UdsMEUzjEyLI7Zz9uAAcRwdQgFXNpKA7Kr/9T8bIC65Ta3g1r2WmOm6Bf/NIeAaoB0gMTm/vZObj2Ey5+OSIWg==",
"dependencies": {
"@comunica/actor-abstract-bindings-hash": "^1.19.2",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-orderby-sparqlee": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-1.19.2.tgz",
"integrity": "sha512-jB9UE+wmOPvZl00BjzuRKv38/4iXcExhhgSB8UetG0XM2jmaz68XjJwHHOntoAD+XO6jyKR/cIIriVYTMfu7JQ==",
"dependencies": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"node_modules/@comunica/actor-query-operation-path-alt": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-1.19.2.tgz",
"integrity": "sha512-5Lqtt5qfnkJx+vL0g7rZAXoA4wEWCjSmkhTLWdZU+4+YvXhfY0S3aQ8W1Ik/Q93O5u+pRFje1z49AMpWuk83MQ==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.19.2",
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-path-inv": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-1.19.2.tgz",
"integrity": "sha512-R4FJAQAMkIqTNxX4aLxvkx2UeQXGbBle6kWNC9z9LiOaBorXERw22xTOlG9viNkn+3iRPVCIcxJyJ+Lw+msTTw==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.19.2"
}
},
"node_modules/@comunica/actor-query-operation-path-link": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-1.19.2.tgz",
"integrity": "sha512-+efbj6CH81KFXt4oy4PXM23HoOSj9SEvxPG+l4zmpnrjzsoGgpBT21bZeqwuGUYnCXmqCkljjMvEv7w0UwfA9w==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.19.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-path-nps": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-1.19.2.tgz",
"integrity": "sha512-j2R31+DtnDjWpzY6SNv7xezCzhQ3HuGLuAnwqpy22wQgLSev7D8jbe/1NSl9GTQZL62MnF39JrHLc0bSQwXWQw==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.19.2",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-path-one-or-more": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-1.19.2.tgz",
"integrity": "sha512-0c2EjNb7gSwyRxD6VMhqefrm3trOAVePIxWui7Dc0R8/Y50s9rZAmM9C2Yv+8V8eRgJdqPpZrDa6ck+CWLnrUA==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.19.2",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-path-seq": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-seq/-/actor-query-operation-path-seq-1.19.2.tgz",
"integrity": "sha512-rGuTL2JsbwXVsplIhrZgbilmpeirDTBXOETkPJHcwsVtZV6MBZGNfVTK36V6bHUJXQAZJpukLuuO27SaUMwVqg==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.19.2",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-more": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-more/-/actor-query-operation-path-zero-or-more-1.19.2.tgz",
"integrity": "sha512-cJI7xCyb1j9VLeyEnGtOfNOi7yvIbJ+Zm7eztG/jHRgBWEKDfVrVhlSKrctMvZjFzvbZBiYuMdrCE+56mXydSA==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.19.2",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-path-zero-or-one": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-zero-or-one/-/actor-query-operation-path-zero-or-one-1.19.2.tgz",
"integrity": "sha512-r/hn3jUVWHExyICMyeobVvyrVIvZAB7SpB00nO1r1xx/JdJdUAlPP72oKioX8UcKcT5WVt1D3b3+6ZFwaQKz1w==",
"dependencies": {
"@comunica/actor-abstract-path": "^1.19.2",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-project": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-project/-/actor-query-operation-project-1.19.2.tgz",
"integrity": "sha512-u3X3Vc9Sj/s5LgrFoymaFXc6fyI6XAO7XQRVpO+1F5jKmY+oFQwK/jRi6J6JluTZNtjlmzfIyY0EsHoRSMnPfw==",
"dependencies": {
"@comunica/data-factory": "^1.17.0",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-quadpattern": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-quadpattern/-/actor-query-operation-quadpattern-1.19.2.tgz",
"integrity": "sha512-LAKMVsaMJP1uZUl8aFWnFg1pbhIwu4b+CRvIj0hHf7iaC1ng6wwRLIDF7c/6gDlzsDD9BRZg0r0XmJQPF0/DFg==",
"dependencies": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-reduced-hash": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-reduced-hash/-/actor-query-operation-reduced-hash-1.19.2.tgz",
"integrity": "sha512-owHWzME+V9uhsJrdU7jKJCWh4wfGrGL+iuf+wlFvbSp8Z2EZdRYAtymAvItCmFzVeTTGlPlff89xdWqg/apxLA==",
"dependencies": {
"@comunica/actor-abstract-bindings-hash": "^1.19.2",
"@types/lru-cache": "^5.1.0",
"lru-cache": "^6.0.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-service": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-service/-/actor-query-operation-service-1.19.2.tgz",
"integrity": "sha512-YA4T/dO09HecfNri8JRveg6hRst79Wfb5dZqmBshj4zh/zzZFABDWI+XMXbwbX6wuG1q7wJDCRzO2Ku3X1WV6A==",
"dependencies": {
"@comunica/bus-rdf-resolve-quad-pattern": "^1.19.2",
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-slice": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-slice/-/actor-query-operation-slice-1.19.2.tgz",
"integrity": "sha512-Cq+uBRQKzbOa5uJUCP7O00lyPQ6TtYn2dOT+5VCdnjAbuk3DyVqR614tih3SAgA5LRYTUxfX+WePlvOoIq6eRA==",
"dependencies": {
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-sparql-endpoint": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-sparql-endpoint/-/actor-query-operation-sparql-endpoint-1.19.2.tgz",
"integrity": "sha512-VC4VLMA9zAckci3S/Smw2ebQe0JJoDB1La/EcSidI1RJNittlf5fw79wbCYGxZuTi0tCmTCYRyarMqDZpQrp7Q==",
"dependencies": {
"@comunica/bus-rdf-resolve-quad-pattern": "^1.19.2",
"@comunica/utils-datasource": "^1.19.2",
"@types/rdf-js": "*",
"arrayify-stream": "^1.0.0",
"asynciterator": "^3.0.3",
"fetch-sparql-endpoint": "^1.7.0",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-union": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-union/-/actor-query-operation-union-1.19.2.tgz",
"integrity": "sha512-4swo5gN/XzqPIPEzw2rf5EsbB7jqywS56pjz1R4zt9ar1vHGgsiwkngEM6iWfWkrFbZF/gUnSQMIo/F9oLtPPg==",
"dependencies": {
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-query-operation-values": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-values/-/actor-query-operation-values-1.19.2.tgz",
"integrity": "sha512-JZfuffeWhX/Ss6FDeQBR+H/OtCh/iI4nl+ElFRjfJ8OfHU/r5cU7R5ecXb+U0cZ780/PltgfKyq6wtannRYnLg==",
"dependencies": {
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"node_modules/@comunica/actor-rdf-dereference-http-parse": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-dereference-http-parse/-/actor-rdf-dereference-http-parse-1.19.2.tgz",
"integrity": "sha512-2/b6YgILmYf+tR5GZ/3JRGxY9xqExVJnaRx6qOJ3ay/98MRRjhQxtDxAIClMZNFlc+gwJb1T5vPoX1H8dnfDNg==",
"dependencies": {
"cross-fetch": "^3.0.5",
"relative-to-absolute-iri": "^1.0.5"
}
},
"node_modules/@comunica/actor-rdf-join-multi-smallest": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-multi-smallest/-/actor-rdf-join-multi-smallest-1.19.2.tgz",
"integrity": "sha512-Vr2ZwBsKRY3TMRta+AI009zrdk+1pUrgsyw4kUQmQ4EbzJQ1VfoUQ8sg23A8rDNAIcBdq+1skHRhWOxfPAvaiw==",
"dependencies": {
"@comunica/bus-query-operation": "^1.19.2",
"@comunica/mediatortype-iterations": "^1.19.2"
}
},
"node_modules/@comunica/actor-rdf-join-nestedloop": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-nestedloop/-/actor-rdf-join-nestedloop-1.19.2.tgz",
"integrity": "sha512-Rt7FJ8s+HMMiY3F4qoXL4/WX0JGEFktfFv6o2OZyTrJ+T+CRYhw/ikQX0upVZpdT0xqjGxRzAZbdVfyAezHyNQ==",
"dependencies": {
"asyncjoin": "^1.0.1"
}
},
"node_modules/@comunica/actor-rdf-join-symmetrichash": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-join-symmetrichash/-/actor-rdf-join-symmetrichash-1.19.2.tgz",
"integrity": "sha512-uXgh74oDrbEqflgUzEadwKu/X4EARZUPkLkHSyHgTVkwwlr2uNhvNmve931nXjt0OBZ80THiVEcYit4roHd8LA==",
"dependencies": {
"asyncjoin": "^1.0.1"
}
},
"node_modules/@comunica/actor-rdf-metadata-all": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-all/-/actor-rdf-metadata-all-1.19.2.tgz",
"integrity": "sha512-2oTtZOUFs2PyILht0J6Ma9/x5srjyvijbobgCSfcrENkv+r1wRDriyHMOfiuWLlvFlksumJ17gerp8iehPorqQ==",
"dependencies": {
"@types/rdf-js": "*"
}
},
"node_modules/@comunica/actor-rdf-metadata-extract-hydra-controls": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-controls/-/actor-rdf-metadata-extract-hydra-controls-1.19.2.tgz",
"integrity": "sha512-3Qt7NhG0AJUnDM7537G8lyryPdykpdIqGERs0EEPzvfOtiCbPXoBtvVfj82hdIcIXKEgqrpgyt4CuJoGGSK6zQ==",
"dependencies": {
"@types/rdf-js": "*",
"@types/uritemplate": "^0.3.4",
"uritemplate": "0.3.4"
}
},
"node_modules/@comunica/actor-rdf-metadata-extract-hydra-count": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-hydra-count/-/actor-rdf-metadata-extract-hydra-count-1.19.2.tgz",
"integrity": "sha512-7sD2BNiyDhjjUmavmy0xUX0EgI5DNacKUa8xX5xzZj5WC/glKtSFMO/nUpiqzosmdaZ3vryICm4mXVFS3eKmRA=="
},
"node_modules/@comunica/actor-rdf-metadata-extract-sparql-service": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-extract-sparql-service/-/actor-rdf-metadata-extract-sparql-service-1.19.2.tgz",
"integrity": "sha512-hVr1RPf+kryRkDGVwK1DX3mwskVtJhDI8Jhr5u2Y0CmtvelucNpo8mivvNgV5M5M4FhX+4jSUp17ndnJTizHUw==",
"dependencies": {
"relative-to-absolute-iri": "^1.0.5"
}
},
"node_modules/@comunica/actor-rdf-metadata-primary-topic": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-metadata-primary-topic/-/actor-rdf-metadata-primary-topic-1.19.2.tgz",
"integrity": "sha512-mh50SL2p5+eo9CbNJOysUe0C7ThoA8x5Y8994Plo3p/c0HfT2G8KsTM/vyIYIkKr54lDZ7I8izmd41dDicJ49w==",
"dependencies": {
"@types/rdf-js": "*"
}
},
"node_modules/@comunica/actor-rdf-parse-html": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html/-/actor-rdf-parse-html-1.19.2.tgz",
"integrity": "sha512-E7eJH5CR9cvYoaK78OwA8wkc46FsU7hbDHIkXy3fKktooXOcOJxoMU3+0xZ0n6qFRRzMQjzNzh+KnR+0ZgZWIg==",
"dependencies": {
"@comunica/bus-rdf-parse-html": "^1.19.2",
"@types/rdf-js": "*",
"htmlparser2": "^6.0.0"
}
},
"node_modules/@comunica/actor-rdf-parse-html-microdata": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-microdata/-/actor-rdf-parse-html-microdata-1.19.2.tgz",
"integrity": "sha512-i+FfdPRsd1wT5yrnFORo1eFbL2G+YyeG3dQtC7bEuTf3pW9wXJCUWarLZ0dBbCK3WaPR+J+zdM+fss4j++0bNA==",
"dependencies": {
"microdata-rdf-streaming-parser": "^1.1.0"
}
},
"node_modules/@comunica/actor-rdf-parse-html-rdfa": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-rdfa/-/actor-rdf-parse-html-rdfa-1.19.2.tgz",
"integrity": "sha512-Sx9vDZwHnXbcAkKOTQj0mIeablIQO1W6O92Vl1u0eStuaMyB2xBIFnPDpHpM9oQ8Yg14xwdGnSfqfCRW1Ar/mQ==",
"dependencies": {
"rdfa-streaming-parser": "^1.4.0"
}
},
"node_modules/@comunica/actor-rdf-parse-html-script": {
"version": "1.19.2",
"resolved": "https://registry.npmjs.org/@comunica/actor-rdf-parse-html-script/-/actor-rdf-parse-html-script-1.19.2.tgz",
"integrity": "sha512-GgJF1cZpFWJ7ga3g/BxuxpPQeASf07eZd3TiLRlQ5Mll4sVVqU9CO+oebQXbtnzJYnxPrSP85YCP9Ez9TnfFkQ==",
"dependencies": {
"@comunica/bus-rdf-parse-html": "^1.19.2",
"@types/rdf-js": "*",
"relative-to-absolute-iri": "^1.0.5"
}