This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage-lock.json
8356 lines (8356 loc) · 338 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-console-cli",
"version": "3.0.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@api-components/api-console-builder": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@api-components/api-console-builder/-/api-console-builder-3.0.0.tgz",
"integrity": "sha512-L96XkrxrXCn5AwP9CHMudLHxMhcASkbBulTHpfthADLMGQsnLgxbuAkxy6Vml9VoA9C4GERLrRGqpIBGNVA5dA==",
"requires": {
"amf-client-js": "^4.6.0",
"archiver": "^5.1.0",
"colors": "^1.4.0",
"esm": "^3.2.25",
"fs-extra": "^9.1.0",
"parse5": "^6.0.1",
"semver": "^7.3.4",
"tmp": "^0.2.1",
"uglify-js": "^3.12.5",
"winston": "^3.3.3",
"yauzl": "^2.9.1"
}
},
"@babel/code-frame": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
"integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==",
"dev": true,
"requires": {
"@babel/highlight": "^7.10.4"
}
},
"@babel/core": {
"version": "7.12.10",
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz",
"integrity": "sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/generator": "^7.12.10",
"@babel/helper-module-transforms": "^7.12.1",
"@babel/helpers": "^7.12.5",
"@babel/parser": "^7.12.10",
"@babel/template": "^7.12.7",
"@babel/traverse": "^7.12.10",
"@babel/types": "^7.12.10",
"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"
},
"dependencies": {
"debug": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
"integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
"dev": true,
"requires": {
"ms": "2.1.2"
}
},
"json5": {
"version": "2.1.3",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz",
"integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==",
"dev": true,
"requires": {
"minimist": "^1.2.5"
}
},
"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
},
"semver": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
"integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
"dev": true
}
}
},
"@babel/generator": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz",
"integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==",
"dev": true,
"requires": {
"@babel/types": "^7.12.11",
"jsesc": "^2.5.1",
"source-map": "^0.5.0"
}
},
"@babel/helper-function-name": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz",
"integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==",
"dev": true,
"requires": {
"@babel/helper-get-function-arity": "^7.12.10",
"@babel/template": "^7.12.7",
"@babel/types": "^7.12.11"
}
},
"@babel/helper-get-function-arity": {
"version": "7.12.10",
"resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz",
"integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==",
"dev": true,
"requires": {
"@babel/types": "^7.12.10"
}
},
"@babel/helper-member-expression-to-functions": {
"version": "7.12.7",
"resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz",
"integrity": "sha512-DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==",
"dev": true,
"requires": {
"@babel/types": "^7.12.7"
}
},
"@babel/helper-module-imports": {
"version": "7.12.5",
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz",
"integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==",
"dev": true,
"requires": {
"@babel/types": "^7.12.5"
}
},
"@babel/helper-module-transforms": {
"version": "7.12.1",
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz",
"integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==",
"dev": true,
"requires": {
"@babel/helper-module-imports": "^7.12.1",
"@babel/helper-replace-supers": "^7.12.1",
"@babel/helper-simple-access": "^7.12.1",
"@babel/helper-split-export-declaration": "^7.11.0",
"@babel/helper-validator-identifier": "^7.10.4",
"@babel/template": "^7.10.4",
"@babel/traverse": "^7.12.1",
"@babel/types": "^7.12.1",
"lodash": "^4.17.19"
}
},
"@babel/helper-optimise-call-expression": {
"version": "7.12.10",
"resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz",
"integrity": "sha512-4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ==",
"dev": true,
"requires": {
"@babel/types": "^7.12.10"
}
},
"@babel/helper-replace-supers": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz",
"integrity": "sha512-q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA==",
"dev": true,
"requires": {
"@babel/helper-member-expression-to-functions": "^7.12.7",
"@babel/helper-optimise-call-expression": "^7.12.10",
"@babel/traverse": "^7.12.10",
"@babel/types": "^7.12.11"
}
},
"@babel/helper-simple-access": {
"version": "7.12.1",
"resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz",
"integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==",
"dev": true,
"requires": {
"@babel/types": "^7.12.1"
}
},
"@babel/helper-split-export-declaration": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz",
"integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==",
"dev": true,
"requires": {
"@babel/types": "^7.12.11"
}
},
"@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
},
"@babel/helpers": {
"version": "7.12.5",
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz",
"integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==",
"dev": true,
"requires": {
"@babel/template": "^7.10.4",
"@babel/traverse": "^7.12.5",
"@babel/types": "^7.12.5"
}
},
"@babel/highlight": {
"version": "7.10.4",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
"integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.10.4",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"dependencies": {
"ansi-styles": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
"dev": true,
"requires": {
"color-convert": "^1.9.0"
}
},
"chalk": {
"version": "2.4.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
"dev": true,
"requires": {
"ansi-styles": "^3.2.1",
"escape-string-regexp": "^1.0.5",
"supports-color": "^5.3.0"
}
},
"has-flag": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
"dev": true
},
"supports-color": {
"version": "5.5.0",
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
"dev": true,
"requires": {
"has-flag": "^3.0.0"
}
}
}
},
"@babel/parser": {
"version": "7.12.11",
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz",
"integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==",
"dev": true
},
"@babel/runtime": {
"version": "7.12.5",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz",
"integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==",
"dev": true,
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@babel/template": {
"version": "7.12.7",
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz",
"integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.10.4",
"@babel/parser": "^7.12.7",
"@babel/types": "^7.12.7"
}
},
"@babel/traverse": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz",
"integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==",
"dev": true,
"requires": {
"@babel/code-frame": "^7.12.11",
"@babel/generator": "^7.12.11",
"@babel/helper-function-name": "^7.12.11",
"@babel/helper-split-export-declaration": "^7.12.11",
"@babel/parser": "^7.12.11",
"@babel/types": "^7.12.12",
"debug": "^4.1.0",
"globals": "^11.1.0",
"lodash": "^4.17.19"
},
"dependencies": {
"debug": {
"version": "4.3.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz",
"integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==",
"dev": true,
"requires": {
"ms": "2.1.2"
}
},
"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
}
}
},
"@babel/types": {
"version": "7.12.12",
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz",
"integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.12.11",
"lodash": "^4.17.19",
"to-fast-properties": "^2.0.0"
}
},
"@commitlint/cli": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-11.0.0.tgz",
"integrity": "sha512-YWZWg1DuqqO5Zjh7vUOeSX76vm0FFyz4y0cpGMFhrhvUi5unc4IVfCXZ6337R9zxuBtmveiRuuhQqnRRer+13g==",
"dev": true,
"requires": {
"@babel/runtime": "^7.11.2",
"@commitlint/format": "^11.0.0",
"@commitlint/lint": "^11.0.0",
"@commitlint/load": "^11.0.0",
"@commitlint/read": "^11.0.0",
"chalk": "4.1.0",
"core-js": "^3.6.1",
"get-stdin": "8.0.0",
"lodash": "^4.17.19",
"resolve-from": "5.0.0",
"resolve-global": "1.0.0",
"yargs": "^15.1.0"
}
},
"@commitlint/config-conventional": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-11.0.0.tgz",
"integrity": "sha512-SNDRsb5gLuDd2PL83yCOQX6pE7gevC79UPFx+GLbLfw6jGnnbO9/tlL76MLD8MOViqGbo7ZicjChO9Gn+7tHhA==",
"dev": true,
"requires": {
"conventional-changelog-conventionalcommits": "^4.3.1"
}
},
"@commitlint/ensure": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-11.0.0.tgz",
"integrity": "sha512-/T4tjseSwlirKZdnx4AuICMNNlFvRyPQimbZIOYujp9DSO6XRtOy9NrmvWujwHsq9F5Wb80QWi4WMW6HMaENug==",
"dev": true,
"requires": {
"@commitlint/types": "^11.0.0",
"lodash": "^4.17.19"
}
},
"@commitlint/execute-rule": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-11.0.0.tgz",
"integrity": "sha512-g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ==",
"dev": true
},
"@commitlint/format": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/format/-/format-11.0.0.tgz",
"integrity": "sha512-bpBLWmG0wfZH/svzqD1hsGTpm79TKJWcf6EXZllh2J/LSSYKxGlv967lpw0hNojme0sZd4a/97R3qA2QHWWSLg==",
"dev": true,
"requires": {
"@commitlint/types": "^11.0.0",
"chalk": "^4.0.0"
}
},
"@commitlint/is-ignored": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-11.0.0.tgz",
"integrity": "sha512-VLHOUBN+sOlkYC4tGuzE41yNPO2w09sQnOpfS+pSPnBFkNUUHawEuA44PLHtDvQgVuYrMAmSWFQpWabMoP5/Xg==",
"dev": true,
"requires": {
"@commitlint/types": "^11.0.0",
"semver": "7.3.2"
},
"dependencies": {
"semver": {
"version": "7.3.2",
"resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz",
"integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==",
"dev": true
}
}
},
"@commitlint/lint": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-11.0.0.tgz",
"integrity": "sha512-Q8IIqGIHfwKr8ecVZyYh6NtXFmKw4YSEWEr2GJTB/fTZXgaOGtGFZDWOesCZllQ63f1s/oWJYtVv5RAEuwN8BQ==",
"dev": true,
"requires": {
"@commitlint/is-ignored": "^11.0.0",
"@commitlint/parse": "^11.0.0",
"@commitlint/rules": "^11.0.0",
"@commitlint/types": "^11.0.0"
}
},
"@commitlint/load": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/load/-/load-11.0.0.tgz",
"integrity": "sha512-t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg==",
"dev": true,
"requires": {
"@commitlint/execute-rule": "^11.0.0",
"@commitlint/resolve-extends": "^11.0.0",
"@commitlint/types": "^11.0.0",
"chalk": "4.1.0",
"cosmiconfig": "^7.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0"
}
},
"@commitlint/message": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/message/-/message-11.0.0.tgz",
"integrity": "sha512-01ObK/18JL7PEIE3dBRtoMmU6S3ecPYDTQWWhcO+ErA3Ai0KDYqV5VWWEijdcVafNpdeUNrEMigRkxXHQLbyJA==",
"dev": true
},
"@commitlint/parse": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-11.0.0.tgz",
"integrity": "sha512-DekKQAIYWAXIcyAZ6/PDBJylWJ1BROTfDIzr9PMVxZRxBPc1gW2TG8fLgjZfBP5mc0cuthPkVi91KQQKGri/7A==",
"dev": true,
"requires": {
"conventional-changelog-angular": "^5.0.0",
"conventional-commits-parser": "^3.0.0"
}
},
"@commitlint/read": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/read/-/read-11.0.0.tgz",
"integrity": "sha512-37V0V91GSv0aDzMzJioKpCoZw6l0shk7+tRG8RkW1GfZzUIytdg3XqJmM+IaIYpaop0m6BbZtfq+idzUwJnw7g==",
"dev": true,
"requires": {
"@commitlint/top-level": "^11.0.0",
"fs-extra": "^9.0.0",
"git-raw-commits": "^2.0.0"
}
},
"@commitlint/resolve-extends": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-11.0.0.tgz",
"integrity": "sha512-WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw==",
"dev": true,
"requires": {
"import-fresh": "^3.0.0",
"lodash": "^4.17.19",
"resolve-from": "^5.0.0",
"resolve-global": "^1.0.0"
}
},
"@commitlint/rules": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-11.0.0.tgz",
"integrity": "sha512-2hD9y9Ep5ZfoNxDDPkQadd2jJeocrwC4vJ98I0g8pNYn/W8hS9+/FuNpolREHN8PhmexXbkjrwyQrWbuC0DVaA==",
"dev": true,
"requires": {
"@commitlint/ensure": "^11.0.0",
"@commitlint/message": "^11.0.0",
"@commitlint/to-lines": "^11.0.0",
"@commitlint/types": "^11.0.0"
}
},
"@commitlint/to-lines": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-11.0.0.tgz",
"integrity": "sha512-TIDTB0Y23jlCNubDROUVokbJk6860idYB5cZkLWcRS9tlb6YSoeLn1NLafPlrhhkkkZzTYnlKYzCVrBNVes1iw==",
"dev": true
},
"@commitlint/top-level": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-11.0.0.tgz",
"integrity": "sha512-O0nFU8o+Ws+py5pfMQIuyxOtfR/kwtr5ybqTvR+C2lUPer2x6lnQU+OnfD7hPM+A+COIUZWx10mYQvkR3MmtAA==",
"dev": true,
"requires": {
"find-up": "^5.0.0"
},
"dependencies": {
"find-up": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
"dev": true,
"requires": {
"locate-path": "^6.0.0",
"path-exists": "^4.0.0"
}
},
"locate-path": {
"version": "6.0.0",
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
"dev": true,
"requires": {
"p-locate": "^5.0.0"
}
},
"p-limit": {
"version": "3.1.0",
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
"dev": true,
"requires": {
"yocto-queue": "^0.1.0"
}
},
"p-locate": {
"version": "5.0.0",
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
"dev": true,
"requires": {
"p-limit": "^3.0.2"
}
}
}
},
"@commitlint/types": {
"version": "11.0.0",
"resolved": "https://registry.npmjs.org/@commitlint/types/-/types-11.0.0.tgz",
"integrity": "sha512-VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ==",
"dev": true
},
"@comunica/actor-abstract-bindings-hash": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-bindings-hash/-/actor-abstract-bindings-hash-1.19.0.tgz",
"integrity": "sha512-FvHFdSkbGVx+/KmCc/8SbmtvX9o1KaaZiHmJxGNzv2a8jN2RXSfKq6qlLaQbp76/nvsFrGYR4m5fQsajIOANeA==",
"requires": {
"canonicalize": "^1.0.1",
"hash.js": "^1.1.7",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-abstract-mediatyped": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-mediatyped/-/actor-abstract-mediatyped-1.19.0.tgz",
"integrity": "sha512-f8KPM8xsjB70REsS2ALrLNlMRHwPmb21OJy6u5YPARKCr95Usff38L/Fntm3ey6oQTwfwK/XEYuQVtwx5EqJYw=="
},
"@comunica/actor-abstract-path": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-abstract-path/-/actor-abstract-path-1.19.0.tgz",
"integrity": "sha512-zH5lErHpn9+eq8x2u7ohxCBxpdARQeWaxJgj2d52hBrdY+QArfwJQgIS3f+wiO42/LObhK8ZDNAJsagU/vDmkg==",
"requires": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-http-memento": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-memento/-/actor-http-memento-1.19.0.tgz",
"integrity": "sha512-52VItaw2lDbOMiMVI+o94k604M1Ii6KNL/FfBv6/IhjbVugrfP9RzLFDxQMFcChPvJSqUXARpYioQAHswhhfIw==",
"requires": {
"@types/parse-link-header": "^1.0.0",
"cross-fetch": "^3.0.5",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-native": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-native/-/actor-http-native-1.19.0.tgz",
"integrity": "sha512-j7HsxDRcVjywPvh3ur1qx5WRS+UbT503jR+8lszR045h3ODTLX5PeCMh96Eq4dPkbVp22vkGqTFXux38dYRBSw==",
"requires": {
"@types/parse-link-header": "^1.0.0",
"cross-fetch": "^3.0.5",
"follow-redirects": "^1.5.1",
"parse-link-header": "^1.0.1"
}
},
"@comunica/actor-http-proxy": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-http-proxy/-/actor-http-proxy-1.19.0.tgz",
"integrity": "sha512-ndB9/HOHnwbgx1c917LnUTiUoY3oRqZtw1M6YmaACGUuziqGXQAm+ZgtwtT8BzoWd9YFODyJfwuNSaEo1da4fg=="
},
"@comunica/actor-init-sparql": {
"version": "1.19.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql/-/actor-init-sparql-1.19.1.tgz",
"integrity": "sha512-UhPQnsaqTCV2NrXioXso16o+WzDFJ1OYVYy4OcsIc/jboBsu4mkQB8UWueHhmcxbM2rjeHfkZYYvU3qPz3yo9A==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.19.0",
"@comunica/actor-abstract-mediatyped": "^1.19.0",
"@comunica/actor-http-memento": "^1.19.0",
"@comunica/actor-http-native": "^1.19.0",
"@comunica/actor-http-proxy": "^1.19.0",
"@comunica/actor-optimize-query-operation-join-bgp": "^1.19.0",
"@comunica/actor-query-operation-ask": "^1.19.0",
"@comunica/actor-query-operation-bgp-empty": "^1.19.0",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.19.0",
"@comunica/actor-query-operation-bgp-single": "^1.19.0",
"@comunica/actor-query-operation-construct": "^1.19.0",
"@comunica/actor-query-operation-describe-subject": "^1.19.0",
"@comunica/actor-query-operation-distinct-hash": "^1.19.0",
"@comunica/actor-query-operation-extend": "^1.19.0",
"@comunica/actor-query-operation-filter-sparqlee": "^1.19.0",
"@comunica/actor-query-operation-from-quad": "^1.19.0",
"@comunica/actor-query-operation-group": "^1.19.0",
"@comunica/actor-query-operation-join": "^1.19.0",
"@comunica/actor-query-operation-leftjoin-left-deep": "^1.19.0",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.19.0",
"@comunica/actor-query-operation-minus": "^1.19.0",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.19.0",
"@comunica/actor-query-operation-path-alt": "^1.19.0",
"@comunica/actor-query-operation-path-inv": "^1.19.0",
"@comunica/actor-query-operation-path-link": "^1.19.0",
"@comunica/actor-query-operation-path-nps": "^1.19.0",
"@comunica/actor-query-operation-path-one-or-more": "^1.19.0",
"@comunica/actor-query-operation-path-seq": "^1.19.0",
"@comunica/actor-query-operation-path-zero-or-more": "^1.19.0",
"@comunica/actor-query-operation-path-zero-or-one": "^1.19.0",
"@comunica/actor-query-operation-project": "^1.19.0",
"@comunica/actor-query-operation-quadpattern": "^1.19.0",
"@comunica/actor-query-operation-reduced-hash": "^1.19.0",
"@comunica/actor-query-operation-service": "^1.19.0",
"@comunica/actor-query-operation-slice": "^1.19.0",
"@comunica/actor-query-operation-sparql-endpoint": "^1.19.0",
"@comunica/actor-query-operation-union": "^1.19.0",
"@comunica/actor-query-operation-values": "^1.19.0",
"@comunica/actor-rdf-dereference-http-parse": "^1.19.0",
"@comunica/actor-rdf-join-multi-smallest": "^1.19.0",
"@comunica/actor-rdf-join-nestedloop": "^1.19.0",
"@comunica/actor-rdf-join-symmetrichash": "^1.19.0",
"@comunica/actor-rdf-metadata-all": "^1.19.0",
"@comunica/actor-rdf-metadata-extract-hydra-controls": "^1.19.0",
"@comunica/actor-rdf-metadata-extract-hydra-count": "^1.19.0",
"@comunica/actor-rdf-metadata-extract-sparql-service": "^1.19.0",
"@comunica/actor-rdf-metadata-primary-topic": "^1.19.0",
"@comunica/actor-rdf-parse-html": "^1.19.0",
"@comunica/actor-rdf-parse-html-microdata": "^1.19.0",
"@comunica/actor-rdf-parse-html-rdfa": "^1.19.0",
"@comunica/actor-rdf-parse-html-script": "^1.19.0",
"@comunica/actor-rdf-parse-jsonld": "^1.19.0",
"@comunica/actor-rdf-parse-n3": "^1.19.0",
"@comunica/actor-rdf-parse-rdfxml": "^1.19.0",
"@comunica/actor-rdf-parse-xml-rdfa": "^1.19.0",
"@comunica/actor-rdf-resolve-hypermedia-links-next": "^1.19.0",
"@comunica/actor-rdf-resolve-hypermedia-none": "^1.19.0",
"@comunica/actor-rdf-resolve-hypermedia-qpf": "^1.19.0",
"@comunica/actor-rdf-resolve-hypermedia-sparql": "^1.19.0",
"@comunica/actor-rdf-resolve-quad-pattern-federated": "^1.19.0",
"@comunica/actor-rdf-resolve-quad-pattern-hypermedia": "^1.19.0",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.19.0",
"@comunica/actor-rdf-serialize-jsonld": "^1.19.0",
"@comunica/actor-rdf-serialize-n3": "^1.19.0",
"@comunica/actor-sparql-parse-algebra": "^1.19.0",
"@comunica/actor-sparql-parse-graphql": "^1.19.0",
"@comunica/actor-sparql-serialize-json": "^1.19.0",
"@comunica/actor-sparql-serialize-rdf": "^1.19.0",
"@comunica/actor-sparql-serialize-simple": "^1.19.0",
"@comunica/actor-sparql-serialize-sparql-csv": "^1.19.0",
"@comunica/actor-sparql-serialize-sparql-json": "^1.19.0",
"@comunica/actor-sparql-serialize-sparql-tsv": "^1.19.0",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.19.0",
"@comunica/actor-sparql-serialize-stats": "^1.19.0",
"@comunica/actor-sparql-serialize-table": "^1.19.0",
"@comunica/actor-sparql-serialize-tree": "^1.19.0",
"@comunica/bus-context-preprocess": "^1.19.0",
"@comunica/bus-http": "^1.19.0",
"@comunica/bus-http-invalidate": "^1.19.0",
"@comunica/bus-init": "^1.19.0",
"@comunica/bus-optimize-query-operation": "^1.19.0",
"@comunica/bus-query-operation": "^1.19.0",
"@comunica/bus-rdf-dereference": "^1.19.0",
"@comunica/bus-rdf-dereference-paged": "^1.19.0",
"@comunica/bus-rdf-join": "^1.19.0",
"@comunica/bus-rdf-metadata": "^1.19.0",
"@comunica/bus-rdf-metadata-extract": "^1.19.0",
"@comunica/bus-rdf-parse": "^1.19.0",
"@comunica/bus-rdf-parse-html": "^1.19.0",
"@comunica/bus-rdf-resolve-hypermedia": "^1.19.0",
"@comunica/bus-rdf-resolve-hypermedia-links": "^1.19.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.19.0",
"@comunica/bus-rdf-serialize": "^1.19.0",
"@comunica/bus-sparql-parse": "^1.19.0",
"@comunica/bus-sparql-serialize": "^1.19.0",
"@comunica/core": "^1.19.0",
"@comunica/logger-pretty": "^1.19.1",
"@comunica/logger-void": "^1.19.0",
"@comunica/mediator-all": "^1.19.0",
"@comunica/mediator-combine-pipeline": "^1.19.0",
"@comunica/mediator-combine-union": "^1.19.0",
"@comunica/mediator-number": "^1.19.0",
"@comunica/mediator-race": "^1.19.0",
"@comunica/runner": "^1.19.0",
"@comunica/runner-cli": "^1.19.0",
"@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"
}
},
"@comunica/actor-init-sparql-rdfjs": {
"version": "1.19.1",
"resolved": "https://registry.npmjs.org/@comunica/actor-init-sparql-rdfjs/-/actor-init-sparql-rdfjs-1.19.1.tgz",
"integrity": "sha512-wZKwfGzy+cQTY/5/a3RRbeiVxqe+rtgxadcOupY5igaNTGkNzCxKSBAntLzXDEMuMn9bWIzJDrUdZCo00bji2w==",
"requires": {
"@comunica/actor-abstract-mediatyped": "^1.19.0",
"@comunica/actor-init-sparql": "^1.19.1",
"@comunica/actor-query-operation-ask": "^1.19.0",
"@comunica/actor-query-operation-bgp-empty": "^1.19.0",
"@comunica/actor-query-operation-bgp-left-deep-smallest": "^1.19.0",
"@comunica/actor-query-operation-bgp-single": "^1.19.0",
"@comunica/actor-query-operation-construct": "^1.19.0",
"@comunica/actor-query-operation-describe-subject": "^1.19.0",
"@comunica/actor-query-operation-distinct-hash": "^1.19.0",
"@comunica/actor-query-operation-extend": "^1.19.0",
"@comunica/actor-query-operation-filter-sparqlee": "^1.19.0",
"@comunica/actor-query-operation-from-quad": "^1.19.0",
"@comunica/actor-query-operation-join": "^1.19.0",
"@comunica/actor-query-operation-leftjoin-nestedloop": "^1.19.0",
"@comunica/actor-query-operation-orderby-sparqlee": "^1.19.0",
"@comunica/actor-query-operation-path-alt": "^1.19.0",
"@comunica/actor-query-operation-path-inv": "^1.19.0",
"@comunica/actor-query-operation-path-link": "^1.19.0",
"@comunica/actor-query-operation-path-nps": "^1.19.0",
"@comunica/actor-query-operation-path-one-or-more": "^1.19.0",
"@comunica/actor-query-operation-path-seq": "^1.19.0",
"@comunica/actor-query-operation-path-zero-or-more": "^1.19.0",
"@comunica/actor-query-operation-path-zero-or-one": "^1.19.0",
"@comunica/actor-query-operation-project": "^1.19.0",
"@comunica/actor-query-operation-quadpattern": "^1.19.0",
"@comunica/actor-query-operation-service": "^1.19.0",
"@comunica/actor-query-operation-slice": "^1.19.0",
"@comunica/actor-query-operation-union": "^1.19.0",
"@comunica/actor-query-operation-values": "^1.19.0",
"@comunica/actor-rdf-join-nestedloop": "^1.19.0",
"@comunica/actor-rdf-resolve-quad-pattern-rdfjs-source": "^1.19.0",
"@comunica/actor-rdf-serialize-jsonld": "^1.19.0",
"@comunica/actor-rdf-serialize-n3": "^1.19.0",
"@comunica/actor-sparql-parse-algebra": "^1.19.0",
"@comunica/actor-sparql-serialize-json": "^1.19.0",
"@comunica/actor-sparql-serialize-rdf": "^1.19.0",
"@comunica/actor-sparql-serialize-simple": "^1.19.0",
"@comunica/actor-sparql-serialize-sparql-json": "^1.19.0",
"@comunica/actor-sparql-serialize-sparql-xml": "^1.19.0",
"@comunica/bus-context-preprocess": "^1.19.0",
"@comunica/bus-init": "^1.19.0",
"@comunica/bus-query-operation": "^1.19.0",
"@comunica/bus-rdf-join": "^1.19.0",
"@comunica/bus-rdf-resolve-quad-pattern": "^1.19.0",
"@comunica/bus-rdf-serialize": "^1.19.0",
"@comunica/bus-sparql-parse": "^1.19.0",
"@comunica/bus-sparql-serialize": "^1.19.0",
"@comunica/core": "^1.19.0",
"@comunica/mediator-combine-pipeline": "^1.19.0",
"@comunica/mediator-combine-union": "^1.19.0",
"@comunica/mediator-number": "^1.19.0",
"@comunica/mediator-race": "^1.19.0",
"@comunica/runner": "^1.19.0",
"@comunica/runner-cli": "^1.19.0"
}
},
"@comunica/actor-optimize-query-operation-join-bgp": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-optimize-query-operation-join-bgp/-/actor-optimize-query-operation-join-bgp-1.19.0.tgz",
"integrity": "sha512-DhS17kOobLVHlHNRmJp5R1H2K53Imd8Xw+6Y8lPz9E1OHoEbfeNMxKxGgA0ggtUR5Vv7NUv7QpMW7YpHo5TdVg==",
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-ask": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-ask/-/actor-query-operation-ask-1.19.0.tgz",
"integrity": "sha512-6QNOOGUsT630LVF7QelPphJT12FZJgf/3t4dfCzdxOdjInFppd8j3aENg+Ie5FWInpFUjx0i5uWuYLKpf4JuCQ==",
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-bgp-empty": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-empty/-/actor-query-operation-bgp-empty-1.19.0.tgz",
"integrity": "sha512-sVsooRKXWevZR3dweW8GVd1i4BWVIVBstPmMRIvDTNdCNgL9y/WOxtZKSqcSv83jWb8xFXZgu97PbDIc5c5GJg==",
"requires": {
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-bgp-left-deep-smallest": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-left-deep-smallest/-/actor-query-operation-bgp-left-deep-smallest-1.19.0.tgz",
"integrity": "sha512-1FqYwxQya4aabm9ocIyJbt4bUxMkNGIWcmGLNp8FVBPx+urlX2HaXVFtuIw24qc/LMs5dL8aYCn5v/ZEToI1lw==",
"requires": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-bgp-single": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-bgp-single/-/actor-query-operation-bgp-single-1.19.0.tgz",
"integrity": "sha512-qgEHT7fNIBo/gtJVN7rqujeKUe/vnJMvAMAOsz7uRVwnhou7c8kx7Pdnx9WIoVhrgXuurXGAWrnVrmYLQAq8lQ==",
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-construct": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-construct/-/actor-query-operation-construct-1.19.0.tgz",
"integrity": "sha512-l99lU0dgzYjrtjqK9kBvWMXaHu4AO+do55Q/p2ygKiqlEscy+YmVZ4lQIcTXToelGjLkaEQwV4OABapGGU/vpA==",
"requires": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"rdf-terms": "^1.6.2",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-describe-subject": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-describe-subject/-/actor-query-operation-describe-subject-1.19.0.tgz",
"integrity": "sha512-tDpF/1ofq8+ZRM6xySgpet+CPkvzoSFqROpowiDKgylGCGJ65PIV4pSh/Q2oRL2zz0UVXiBjTUpSmORt0c1ygg==",
"requires": {
"@comunica/actor-query-operation-union": "^1.19.0",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-data-factory": "^1.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-distinct-hash": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-distinct-hash/-/actor-query-operation-distinct-hash-1.19.0.tgz",
"integrity": "sha512-HO+vK0NPFGNixu5GaZZ+PdGn3vOb97b3j4gKMO/wcINTsE+D01jtTS2turxSJcYIcQot8xMLSbBfTS89OFWB7g==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.19.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-extend": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-extend/-/actor-query-operation-extend-1.19.0.tgz",
"integrity": "sha512-puuYrdI25eRSsa/Yukrxfdhjl9oDlC0tdovCdMkhqJ6rjJZ7uCSd6c6t5te3JlOCGgf0plrApwR5zKsd1bl1aw==",
"requires": {
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"@comunica/actor-query-operation-filter-sparqlee": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-filter-sparqlee/-/actor-query-operation-filter-sparqlee-1.19.0.tgz",
"integrity": "sha512-aregYntISypWfgYLJYVZcMUnSPrcVS0rqe/etZcCIWKiplrQ2uvzB1Gk0h1pIBqN5Z/C0GsYXTToTcyU1767Wg==",
"requires": {
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"@comunica/actor-query-operation-from-quad": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-from-quad/-/actor-query-operation-from-quad-1.19.0.tgz",
"integrity": "sha512-shGWdBnzosx4wtV3JVoap0gGKJnxWwcrLPEvO5RUsXPW9glCrsXV9LUszJdWRxGqXO8TbCIjSbu7hVdpAwvvFA==",
"requires": {
"@types/rdf-js": "*",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-group": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-group/-/actor-query-operation-group-1.19.0.tgz",
"integrity": "sha512-bGVyzmdDJtFgrGsaTOKZpl0CE70mx4UxTuI24J1I4GKFb+1zwx0qNELLhTeMCnnONCoq9b/NA3Xnqz9XLvJVzA==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.19.0",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"@comunica/actor-query-operation-join": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-join/-/actor-query-operation-join-1.19.0.tgz",
"integrity": "sha512-vm0yXUKBKOzM8Zy9HG5ajFbYhFCS2uG4Zzc1l9JP0oWmcOkYDRmXyntRVXQsxIThOjFOLWZKy+Rk9TdFj7AOCQ==",
"requires": {
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-leftjoin-left-deep": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-left-deep/-/actor-query-operation-leftjoin-left-deep-1.19.0.tgz",
"integrity": "sha512-hvuNFmPlRHIh9+PbQzh7RWMAx8fH5BOJ21ZnE1jV7YGseJfCv7jEAV9GgxNgQTKBwchyGHoGLWmNMuRyekWBwQ==",
"requires": {
"@comunica/bus-rdf-join": "^1.19.0",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-leftjoin-nestedloop": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-leftjoin-nestedloop/-/actor-query-operation-leftjoin-nestedloop-1.19.0.tgz",
"integrity": "sha512-1ZWNv8dmJHMKyKz0CWhuDfLxeT+PH1PLI2HsAKA8NOr7YH2Cxz1NkyxfiPUTWugSjYATnD2CVlvLTxaxcH9aqg==",
"requires": {
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"@comunica/actor-query-operation-minus": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-minus/-/actor-query-operation-minus-1.19.0.tgz",
"integrity": "sha512-3IfTV34agULQBX+U8FgW/XqCA7b+mYyVs2Sh2hKj9qShI99KFzUql6tQJIKrP2pwRqTfIgeyZ10Ox1y6BVX8pQ==",
"requires": {
"@comunica/actor-abstract-bindings-hash": "^1.19.0",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-orderby-sparqlee": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-orderby-sparqlee/-/actor-query-operation-orderby-sparqlee-1.19.0.tgz",
"integrity": "sha512-tnBRva1vYOxoCwvQJW2t996NO7qjxJKp5AqEkFfJuWejvFb4fMvGXP8/ifPecDWsrGa+GE4AldOqDj5OuOET4w==",
"requires": {
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0",
"sparqlee": "^1.6.0"
}
},
"@comunica/actor-query-operation-path-alt": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-alt/-/actor-query-operation-path-alt-1.19.0.tgz",
"integrity": "sha512-MhDa1TTalNcCVCrKpq9OORHNJ+ROtUm2dSRddtx+HYXbyRIKCsfcn1kfVUQTUwle55wZyWUQVSOJd0ijnyn6qw==",
"requires": {
"@comunica/actor-abstract-path": "^1.19.0",
"asynciterator": "^3.0.3",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-inv": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-inv/-/actor-query-operation-path-inv-1.19.0.tgz",
"integrity": "sha512-SOh8Yz0aSq3HUTV++/Kji7LPRh3+e8yDscrMT/mAd+O7b7gjANbGXmNQ7vuBogZB3NmTUK5fupzKEEEm+/sAUg==",
"requires": {
"@comunica/actor-abstract-path": "^1.19.0"
}
},
"@comunica/actor-query-operation-path-link": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-link/-/actor-query-operation-path-link-1.19.0.tgz",
"integrity": "sha512-PPvyhrBlxfmIbUQtpDqIzsuoTHxnLdb0IOQdfO/WbgOSSaHLYqZ1nTiolMTsK4T8z/i/N5p6+qktv2dK3zl9Zw==",
"requires": {
"@comunica/actor-abstract-path": "^1.19.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-nps": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-nps/-/actor-query-operation-path-nps-1.19.0.tgz",
"integrity": "sha512-yWiNF+ojzYPHgVe8b3CtEeQi8HknW+Pe6MtRNsJvB5nHUbfuCKrnGv7TgCDEUzcg9WTwVpKmTyqBhG/YI1rQAw==",
"requires": {
"@comunica/actor-abstract-path": "^1.19.0",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-one-or-more": {
"version": "1.19.0",
"resolved": "https://registry.npmjs.org/@comunica/actor-query-operation-path-one-or-more/-/actor-query-operation-path-one-or-more-1.19.0.tgz",
"integrity": "sha512-BR4APIg0ztfuYjJTFNLuQnDciiZ+wlkJdMia3DRBuQw3B/5oQSaZcfO4ShZPdjj1ovcn89VlOucJ+EOndsTQqQ==",
"requires": {
"@comunica/actor-abstract-path": "^1.19.0",
"@types/rdf-js": "*",
"asynciterator": "^3.0.3",
"rdf-string": "^1.5.0",
"sparqlalgebrajs": "^2.4.0"
}
},
"@comunica/actor-query-operation-path-seq": {