-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
2520 lines (2520 loc) · 107 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": "weare-demo-backend",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "weare-demo-backend",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"@inrupt/solid-client": "^1.30.0",
"@inrupt/solid-client-access-grants": "^3.0.1",
"@inrupt/solid-client-authn-node": "^1.17.4",
"@types/jsonwebtoken": "^9.0.5",
"@weare/weare-libs": "^1.0.16",
"body-parser": "^1.20.2",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jose": "^5.2.1",
"jsonwebtoken": "^9.0.2",
"pem-jwk": "^2.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cookie-session": "^2.0.44",
"@types/express": "^4.17.17",
"@types/n3": "^1.16.0",
"@types/node": "^20.5.9",
"@types/pem-jwk": "^2.0.2",
"@types/uuid": "^9.0.8",
"nodemon": "2.0.21",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
},
"node_modules/@bergos/jsonparse": {
"version": "1.4.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@bergos/jsonparse/-/jsonparse-1.4.1.tgz",
"integrity": "sha512-vXIT0nzZGX/+yMD5bx2VhTzc92H55tPoehh1BW/FZHOndWGFddrH3MAfdx39FRc7irABirW6EQaGxIJYV6CGuA==",
"engines": [
"node >= 0.2.0"
],
"dependencies": {
"buffer": "^6.0.3"
}
},
"node_modules/@cspotcode/source-map-support": {
"version": "0.8.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz",
"integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==",
"dev": true,
"dependencies": {
"@jridgewell/trace-mapping": "0.3.9"
},
"engines": {
"node": ">=12"
}
},
"node_modules/@fastify/busboy": {
"version": "2.1.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@fastify/busboy/-/busboy-2.1.0.tgz",
"integrity": "sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==",
"engines": {
"node": ">=14"
}
},
"node_modules/@inrupt/solid-client": {
"version": "1.30.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@inrupt/solid-client/-/solid-client-1.30.2.tgz",
"integrity": "sha512-8Lwh0ZC1d9c939O+dAsT5oheSKIBX5A0uk7fhaJ0qDBFZGKT/jnIy6TrBpvn/nYZAvCA2XSvZHgBfEX7r0FCKw==",
"dependencies": {
"@inrupt/universal-fetch": "^1.0.1",
"@rdfjs/dataset": "^1.1.0",
"@types/rdfjs__dataset": "^1.0.4",
"buffer": "^6.0.3",
"http-link-header": "^1.1.0",
"jsonld-context-parser": "^2.3.0",
"jsonld-streaming-parser": "^3.2.0",
"n3": "^1.10.0",
"uuid": "^9.0.0"
},
"engines": {
"node": "^16.0.0 || ^18.0.0 || ^20.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
},
"node_modules/@inrupt/solid-client-access-grants": {
"version": "3.0.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@inrupt/solid-client-access-grants/-/solid-client-access-grants-3.0.1.tgz",
"integrity": "sha512-8TKgJFg0H8/GVDCi4UnNWCm6A8TIzfvPGVtQ891EJp/ztQ/Juw2/RtaRa/PlPh7svhxE6Efo7JRDHSZTDK108A==",
"dependencies": {
"@inrupt/solid-client": "^2.0.0",
"@inrupt/solid-client-vc": "^1.0.0",
"@types/rdfjs__dataset": "^1.0.5",
"auth-header": "^1.0.0",
"base64url": "^3.0.1",
"n3": "^1.17.2",
"rdf-namespaces": "^1.9.2"
},
"engines": {
"node": "^18.0.0 || ^20.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
},
"node_modules/@inrupt/solid-client-access-grants/node_modules/@inrupt/solid-client": {
"version": "2.0.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@inrupt/solid-client/-/solid-client-2.0.0.tgz",
"integrity": "sha512-3ojzIb7zks8T7uvEEW346vOw9RGi61IEHjaIoRCoORUkx6ZsYuoUKv3XyLTfYPVl8Q9Tl2avBe+1U60nHxl16A==",
"dependencies": {
"buffer": "^6.0.3",
"http-link-header": "^1.1.1",
"jsonld-context-parser": "^2.4.0",
"jsonld-streaming-parser": "^3.3.0",
"n3": "^1.17.2",
"uuid": "^9.0.1"
},
"engines": {
"node": "^18.0.0 || ^20.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
},
"node_modules/@inrupt/solid-client-authn-core": {
"version": "1.17.5",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@inrupt/solid-client-authn-core/-/solid-client-authn-core-1.17.5.tgz",
"integrity": "sha512-g3WShcPAqGuarPYlw12vUCo+et4elQLI+WYcHkCHGLuQQFF73r2iTicuKpkydQdIrZ5AZgxhwr315jmkx/vcFQ==",
"dependencies": {
"@inrupt/universal-fetch": "^1.0.1",
"events": "^3.3.0",
"jose": "^4.15.4",
"uuid": "^9.0.1"
},
"engines": {
"node": "^16.0.0 || ^18.0.0 || ^20.0.0"
}
},
"node_modules/@inrupt/solid-client-authn-core/node_modules/jose": {
"version": "4.15.4",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/jose/-/jose-4.15.4.tgz",
"integrity": "sha512-W+oqK4H+r5sITxfxpSU+MMdr/YSWGvgZMQDIsNoBDGGy4i7GBPTtvFKibQzW06n3U3TqHjhvBJsirShsEJ6eeQ=="
},
"node_modules/@inrupt/solid-client-authn-node": {
"version": "1.17.5",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@inrupt/solid-client-authn-node/-/solid-client-authn-node-1.17.5.tgz",
"integrity": "sha512-lY2H/Uwy4vemKr2uvQ76e1QbiWZ6oevLzqh3K3JHwRLSh1CSLBNSfNKRiTTWNHOfPBGhBuwL5amA5yl4y208rQ==",
"dependencies": {
"@inrupt/solid-client-authn-core": "^1.17.5",
"@inrupt/universal-fetch": "^1.0.1",
"jose": "^4.15.4",
"openid-client": "~5.5.0",
"uuid": "^9.0.1"
},
"engines": {
"node": "^16.0.0 || ^18.0.0 || ^20.0.0"
}
},
"node_modules/@inrupt/solid-client-authn-node/node_modules/jose": {
"version": "4.15.4",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/jose/-/jose-4.15.4.tgz",
"integrity": "sha512-W+oqK4H+r5sITxfxpSU+MMdr/YSWGvgZMQDIsNoBDGGy4i7GBPTtvFKibQzW06n3U3TqHjhvBJsirShsEJ6eeQ=="
},
"node_modules/@inrupt/solid-client-vc": {
"version": "1.0.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@inrupt/solid-client-vc/-/solid-client-vc-1.0.2.tgz",
"integrity": "sha512-yhrT+27GYfpEp+Bvzs/14lk86YtXN1eoAQA4krRI0PvcbYk3CLNldjwuh49+cK8GUYdjYCtg1l1tCj3WKqf9aA==",
"dependencies": {
"@inrupt/solid-client": "^2.0.0",
"event-emitter-promisify": "^1.1.0",
"jsonld-context-parser": "^2.4.0",
"jsonld-streaming-parser": "^3.3.0",
"md5": "^2.3.0",
"n3": "^1.17.2",
"rdf-namespaces": "^1.12.0"
},
"engines": {
"node": "^18.0.0 || ^20.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
},
"node_modules/@inrupt/solid-client-vc/node_modules/@inrupt/solid-client": {
"version": "2.0.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@inrupt/solid-client/-/solid-client-2.0.0.tgz",
"integrity": "sha512-3ojzIb7zks8T7uvEEW346vOw9RGi61IEHjaIoRCoORUkx6ZsYuoUKv3XyLTfYPVl8Q9Tl2avBe+1U60nHxl16A==",
"dependencies": {
"buffer": "^6.0.3",
"http-link-header": "^1.1.1",
"jsonld-context-parser": "^2.4.0",
"jsonld-streaming-parser": "^3.3.0",
"n3": "^1.17.2",
"uuid": "^9.0.1"
},
"engines": {
"node": "^18.0.0 || ^20.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
},
"node_modules/@inrupt/solid-client/node_modules/@rdfjs/dataset": {
"version": "1.1.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@rdfjs/dataset/-/dataset-1.1.1.tgz",
"integrity": "sha512-BNwCSvG0cz0srsG5esq6CQKJc1m8g/M0DZpLuiEp0MMpfwguXX7VeS8TCg4UUG3DV/DqEvhy83ZKSEjdsYseeA==",
"dependencies": {
"@rdfjs/data-model": "^1.2.0"
},
"bin": {
"rdfjs-dataset-test": "bin/test.js"
}
},
"node_modules/@inrupt/universal-fetch": {
"version": "1.0.3",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@inrupt/universal-fetch/-/universal-fetch-1.0.3.tgz",
"integrity": "sha512-AP/nMOuuKvR2YoQkdS77ntuuq5ZYDGStI8Uirp1MCsyPSoBLyNnRjMLjlGqIlaC+5Xp7TYZJ9z/Kl2uUEpXUFw==",
"dependencies": {
"node-fetch": "^2.6.7",
"undici": "^5.19.1"
},
"engines": {
"node": "^14.17.0 || ^16.0.0 || ^18.0.0 || ^20.0.0"
}
},
"node_modules/@jeswr/pretty-turtle": {
"version": "1.4.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@jeswr/pretty-turtle/-/pretty-turtle-1.4.0.tgz",
"integrity": "sha512-i0FSkhuwt9BhSLGpU51bJmR3vmVCzTS+p4keBsdeHSb2GBIcDb+cZKVYqZz3HGkwRPq0UsOSLG5fPEH4IYj6yA==",
"dependencies": {
"n3": "^1.16.3",
"rdf-string-ttl": "^1.3.2"
},
"peerDependencies": {
"@rdfjs/types": "^1.1.0"
}
},
"node_modules/@jridgewell/resolve-uri": {
"version": "3.1.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz",
"integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==",
"dev": true,
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/@jridgewell/sourcemap-codec": {
"version": "1.4.15",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
"integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==",
"dev": true
},
"node_modules/@jridgewell/trace-mapping": {
"version": "0.3.9",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz",
"integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==",
"dev": true,
"dependencies": {
"@jridgewell/resolve-uri": "^3.0.3",
"@jridgewell/sourcemap-codec": "^1.4.10"
}
},
"node_modules/@rdfjs/data-model": {
"version": "1.3.4",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@rdfjs/data-model/-/data-model-1.3.4.tgz",
"integrity": "sha512-iKzNcKvJotgbFDdti7GTQDCYmL7GsGldkYStiP0K8EYtN7deJu5t7U11rKTz+nR7RtesUggT+lriZ7BakFv8QQ==",
"dependencies": {
"@rdfjs/types": ">=1.0.1"
},
"bin": {
"rdfjs-data-model-test": "bin/test.js"
}
},
"node_modules/@rdfjs/dataset": {
"version": "2.0.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@rdfjs/dataset/-/dataset-2.0.1.tgz",
"integrity": "sha512-hDIaXpUmU/ZdofX/BMFDAchkhN/AjmP5dMCOuVL2VCqWuFjeQxd2KV84E4+7S2Biw8tjEFhPBeQZP7KW+ARV7Q==",
"bin": {
"rdfjs-dataset-test": "bin/test.js"
}
},
"node_modules/@rdfjs/types": {
"version": "1.1.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@rdfjs/types/-/types-1.1.0.tgz",
"integrity": "sha512-5zm8bN2/CC634dTcn/0AhTRLaQRjXDZs3QfcAsQKNturHT7XVWcKy/8p3P5gXl+YkZTAmy7T5M/LyiT/jbkENw==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@tsconfig/node10": {
"version": "1.0.9",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@tsconfig/node10/-/node10-1.0.9.tgz",
"integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==",
"dev": true
},
"node_modules/@tsconfig/node12": {
"version": "1.0.11",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@tsconfig/node12/-/node12-1.0.11.tgz",
"integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==",
"dev": true
},
"node_modules/@tsconfig/node14": {
"version": "1.0.3",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@tsconfig/node14/-/node14-1.0.3.tgz",
"integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==",
"dev": true
},
"node_modules/@tsconfig/node16": {
"version": "1.0.4",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@tsconfig/node16/-/node16-1.0.4.tgz",
"integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==",
"dev": true
},
"node_modules/@types/body-parser": {
"version": "1.19.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/body-parser/-/body-parser-1.19.2.tgz",
"integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==",
"dependencies": {
"@types/connect": "*",
"@types/node": "*"
}
},
"node_modules/@types/cls-hooked": {
"version": "4.3.8",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/cls-hooked/-/cls-hooked-4.3.8.tgz",
"integrity": "sha512-tf/7H883gFA6MPlWI15EQtfNZ+oPL0gLKkOlx9UHFrun1fC/FkuyNBpTKq1B5E3T4fbvjId6WifHUdSGsMMuPg==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/connect": {
"version": "3.4.35",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/connect/-/connect-3.4.35.tgz",
"integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/cookie-session": {
"version": "2.0.44",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/cookie-session/-/cookie-session-2.0.44.tgz",
"integrity": "sha512-3DheOZ41pql6raSIkqEPphJdhA2dX2bkS+s2Qacv8YMKkoCbAIEXbsDil7351ARzMqvfyDUGNeHGiRZveIzhqQ==",
"dev": true,
"dependencies": {
"@types/express": "*",
"@types/keygrip": "*"
}
},
"node_modules/@types/express": {
"version": "4.17.17",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/express/-/express-4.17.17.tgz",
"integrity": "sha512-Q4FmmuLGBG58btUnfS1c1r/NQdlp3DMfGDGig8WhfpA2YRUtEkxAjkZb0yvplJGYdF1fsQ81iMDcH24sSCNC/Q==",
"dependencies": {
"@types/body-parser": "*",
"@types/express-serve-static-core": "^4.17.33",
"@types/qs": "*",
"@types/serve-static": "*"
}
},
"node_modules/@types/express-serve-static-core": {
"version": "4.17.36",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/express-serve-static-core/-/express-serve-static-core-4.17.36.tgz",
"integrity": "sha512-zbivROJ0ZqLAtMzgzIUC4oNqDG9iF0lSsAqpOD9kbs5xcIM3dTiyuHvBc7R8MtWBp3AAWGaovJa+wzWPjLYW7Q==",
"dependencies": {
"@types/node": "*",
"@types/qs": "*",
"@types/range-parser": "*",
"@types/send": "*"
}
},
"node_modules/@types/http-errors": {
"version": "2.0.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/http-errors/-/http-errors-2.0.1.tgz",
"integrity": "sha512-/K3ds8TRAfBvi5vfjuz8y6+GiAYBZ0x4tXv1Av6CWBWn0IlADc+ZX9pMq7oU0fNQPnBwIZl3rmeLp6SBApbxSQ=="
},
"node_modules/@types/http-link-header": {
"version": "1.0.3",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/http-link-header/-/http-link-header-1.0.3.tgz",
"integrity": "sha512-y8HkoD/vyid+5MrJ3aas0FvU3/BVBGcyG9kgxL0Zn4JwstA8CglFPnrR0RuzOjRCXwqzL5uxWC2IO7Ub0rMU2A==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/jsonwebtoken": {
"version": "9.0.5",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/jsonwebtoken/-/jsonwebtoken-9.0.5.tgz",
"integrity": "sha512-VRLSGzik+Unrup6BsouBeHsf4d1hOEgYWTm/7Nmw1sXoN1+tRly/Gy/po3yeahnP4jfnQWWAhQAqcNfH7ngOkA==",
"dependencies": {
"@types/node": "*"
}
},
"node_modules/@types/keygrip": {
"version": "1.0.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/keygrip/-/keygrip-1.0.2.tgz",
"integrity": "sha512-GJhpTepz2udxGexqos8wgaBx4I/zWIDPh/KOGEwAqtuGDkOUJu5eFvwmdBX4AmB8Odsr+9pHCQqiAqDL/yKMKw==",
"dev": true
},
"node_modules/@types/mime": {
"version": "1.3.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/mime/-/mime-1.3.2.tgz",
"integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw=="
},
"node_modules/@types/n3": {
"version": "1.16.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/n3/-/n3-1.16.0.tgz",
"integrity": "sha512-g/67NVSihmIoIZT3/J462NhJrmpCw+5WUkkKqpCE9YxNEWzBwKavGPP+RUmG6DIm5GrW4GPunuxLJ0Yn/GgNjQ==",
"dev": true,
"dependencies": {
"@rdfjs/types": "^1.1.0",
"@types/node": "*"
}
},
"node_modules/@types/node": {
"version": "20.5.9",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/node/-/node-20.5.9.tgz",
"integrity": "sha512-PcGNd//40kHAS3sTlzKB9C9XL4K0sTup8nbG5lC14kzEteTNuAFh9u5nA0o5TWnSG2r/JNPRXFVcHJIIeRlmqQ=="
},
"node_modules/@types/pem-jwk": {
"version": "2.0.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/pem-jwk/-/pem-jwk-2.0.2.tgz",
"integrity": "sha512-wkdQZtXBObWNxv8Uo1N6SiNU/ZkhvK7UkrBPr0yNvEUlI6/zx2FuQJ95njlw/1jmlKE+cHAFDVB26Z9vNuebfg==",
"dev": true
},
"node_modules/@types/qs": {
"version": "6.9.8",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/qs/-/qs-6.9.8.tgz",
"integrity": "sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg=="
},
"node_modules/@types/range-parser": {
"version": "1.2.4",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/range-parser/-/range-parser-1.2.4.tgz",
"integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw=="
},
"node_modules/@types/rdfjs__dataset": {
"version": "1.0.5",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/rdfjs__dataset/-/rdfjs__dataset-1.0.5.tgz",
"integrity": "sha512-8OBC9Kr/ZSgNoUTe5mHTDPHaPt8Xen4XbYfqcbYv56d+4WdKliHXaFmFc0L4I5vsynE5JGu21Hvg2zWgX1Az6Q==",
"dependencies": {
"rdf-js": "^4.0.2"
}
},
"node_modules/@types/readable-stream": {
"version": "2.3.15",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/readable-stream/-/readable-stream-2.3.15.tgz",
"integrity": "sha512-oM5JSKQCcICF1wvGgmecmHldZ48OZamtMxcGGVICOJA8o8cahXC1zEVAif8iwoc5j8etxFaRFnf095+CDsuoFQ==",
"dependencies": {
"@types/node": "*",
"safe-buffer": "~5.1.1"
}
},
"node_modules/@types/readable-stream/node_modules/safe-buffer": {
"version": "5.1.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/safe-buffer/-/safe-buffer-5.1.2.tgz",
"integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
},
"node_modules/@types/send": {
"version": "0.17.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/send/-/send-0.17.1.tgz",
"integrity": "sha512-Cwo8LE/0rnvX7kIIa3QHCkcuF21c05Ayb0ZfxPiv0W8VRiZiNW/WuRupHKpqqGVGf7SUA44QSOUKaEd9lIrd/Q==",
"dependencies": {
"@types/mime": "^1",
"@types/node": "*"
}
},
"node_modules/@types/serve-static": {
"version": "1.15.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/serve-static/-/serve-static-1.15.2.tgz",
"integrity": "sha512-J2LqtvFYCzaj8pVYKw8klQXrLLk7TBZmQ4ShlcdkELFKGwGMfevMLneMMRkMgZxotOD9wg497LpC7O8PcvAmfw==",
"dependencies": {
"@types/http-errors": "*",
"@types/mime": "*",
"@types/node": "*"
}
},
"node_modules/@types/uuid": {
"version": "9.0.8",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@types/uuid/-/uuid-9.0.8.tgz",
"integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==",
"dev": true
},
"node_modules/@weare/weare-libs": {
"version": "1.0.26",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@weare/weare-libs/-/@weare/weare-libs-1.0.26.tgz",
"integrity": "sha512-/cdYLiFXjhTE+qeH3eBAs/L1W5yZQJsLaxJH+gc03jZGoXcKKBfxyxNC/fjDW9OBdIuxIZr3NfM/LIXg9W0Jww==",
"dependencies": {
"@inrupt/solid-client": "^1.30.2",
"@inrupt/solid-client-access-grants": "^2.6.1",
"@inrupt/solid-client-authn-node": "^1.17.4",
"@jeswr/pretty-turtle": "^1.4.0",
"@rdfjs/dataset": "^2.0.1",
"axios": "^1.3.3",
"cross-fetch": "^4.0.0",
"dotenv": "^16.0.3",
"express-http-context": "^1.2.4",
"express-mysql-session": "^3.0.0",
"express-session": "^1.17.3",
"jose": "^4.14.4",
"loglevel": "^1.8.1",
"n3": "^1.16.3",
"rxjs": "^7.4.0",
"uuid": "^9.0.0"
}
},
"node_modules/@weare/weare-libs/node_modules/@inrupt/solid-client-access-grants": {
"version": "2.6.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@inrupt/solid-client-access-grants/-/solid-client-access-grants-2.6.2.tgz",
"integrity": "sha512-lHklLHGSjLKQXAflH0q1ciMcrChiVu6CkFvmNKCMuMNTTeIAQDNw7+sZviXgnkxgxqHtLE9kRlkcOEPqTYM+KQ==",
"dependencies": {
"@inrupt/solid-client": "^1.25.1",
"@inrupt/solid-client-vc": "^0.7.0",
"@inrupt/universal-fetch": "^1.0.1",
"@types/rdfjs__dataset": "^1.0.5",
"auth-header": "^1.0.0",
"base64url": "^3.0.1",
"rdf-namespaces": "^1.9.2"
},
"engines": {
"node": "^16.0.0 || ^18.0.0 || ^20.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
},
"node_modules/@weare/weare-libs/node_modules/@inrupt/solid-client-vc": {
"version": "0.7.4",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/@inrupt/solid-client-vc/-/solid-client-vc-0.7.4.tgz",
"integrity": "sha512-VmwSVmembRhhuTvykhOaH070HGdrfo/aYCGDzbI+9EhtikADfRqN95lNFPTsX1Lp7Ftc+6YR9o+/zkZJlKblsA==",
"dependencies": {
"@inrupt/solid-client": "^1.25.2",
"@inrupt/universal-fetch": "^1.0.1"
},
"engines": {
"node": "^16.0.0 || ^18.0.0 || ^20.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
},
"node_modules/@weare/weare-libs/node_modules/jose": {
"version": "4.15.4",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/jose/-/jose-4.15.4.tgz",
"integrity": "sha512-W+oqK4H+r5sITxfxpSU+MMdr/YSWGvgZMQDIsNoBDGGy4i7GBPTtvFKibQzW06n3U3TqHjhvBJsirShsEJ6eeQ=="
},
"node_modules/abbrev": {
"version": "1.1.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/abbrev/-/abbrev-1.1.1.tgz",
"integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
"dev": true
},
"node_modules/abort-controller": {
"version": "3.0.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/abort-controller/-/abort-controller-3.0.0.tgz",
"integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==",
"dependencies": {
"event-target-shim": "^5.0.0"
},
"engines": {
"node": ">=6.5"
}
},
"node_modules/accepts": {
"version": "1.3.8",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/accepts/-/accepts-1.3.8.tgz",
"integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
"dependencies": {
"mime-types": "~2.1.34",
"negotiator": "0.6.3"
},
"engines": {
"node": ">= 0.6"
}
},
"node_modules/acorn": {
"version": "8.10.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/acorn/-/acorn-8.10.0.tgz",
"integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==",
"dev": true,
"bin": {
"acorn": "bin/acorn"
},
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/acorn-walk": {
"version": "8.2.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/acorn-walk/-/acorn-walk-8.2.0.tgz",
"integrity": "sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==",
"dev": true,
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/anymatch": {
"version": "3.1.3",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/anymatch/-/anymatch-3.1.3.tgz",
"integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
"dev": true,
"dependencies": {
"normalize-path": "^3.0.0",
"picomatch": "^2.0.4"
},
"engines": {
"node": ">= 8"
}
},
"node_modules/arg": {
"version": "4.1.3",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/arg/-/arg-4.1.3.tgz",
"integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==",
"dev": true
},
"node_modules/array-flatten": {
"version": "1.1.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/array-flatten/-/array-flatten-1.1.1.tgz",
"integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="
},
"node_modules/asn1.js": {
"version": "5.4.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/asn1.js/-/asn1.js-5.4.1.tgz",
"integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==",
"dependencies": {
"bn.js": "^4.0.0",
"inherits": "^2.0.1",
"minimalistic-assert": "^1.0.0",
"safer-buffer": "^2.1.0"
}
},
"node_modules/async-hook-jl": {
"version": "1.7.6",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/async-hook-jl/-/async-hook-jl-1.7.6.tgz",
"integrity": "sha512-gFaHkFfSxTjvoxDMYqDuGHlcRyUuamF8s+ZTtJdDzqjws4mCt7v0vuV79/E2Wr2/riMQgtG4/yUtXWs1gZ7JMg==",
"dependencies": {
"stack-chain": "^1.3.7"
},
"engines": {
"node": "^4.7 || >=6.9 || >=7.3"
}
},
"node_modules/asynckit": {
"version": "0.4.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/asynckit/-/asynckit-0.4.0.tgz",
"integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
},
"node_modules/auth-header": {
"version": "1.0.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/auth-header/-/auth-header-1.0.0.tgz",
"integrity": "sha512-CPPazq09YVDUNNVWo4oSPTQmtwIzHusZhQmahCKvIsk0/xH6U3QsMAv3sM+7+Q0B1K2KJ/Q38OND317uXs4NHA=="
},
"node_modules/axios": {
"version": "1.6.7",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/axios/-/axios-1.6.7.tgz",
"integrity": "sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==",
"dependencies": {
"follow-redirects": "^1.15.4",
"form-data": "^4.0.0",
"proxy-from-env": "^1.1.0"
}
},
"node_modules/balanced-match": {
"version": "1.0.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
"dev": true
},
"node_modules/base64-js": {
"version": "1.5.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/base64-js/-/base64-js-1.5.1.tgz",
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="
},
"node_modules/base64url": {
"version": "3.0.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/base64url/-/base64url-3.0.1.tgz",
"integrity": "sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==",
"engines": {
"node": ">=6.0.0"
}
},
"node_modules/binary-extensions": {
"version": "2.2.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/binary-extensions/-/binary-extensions-2.2.0.tgz",
"integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
"dev": true,
"engines": {
"node": ">=8"
}
},
"node_modules/bn.js": {
"version": "4.12.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/bn.js/-/bn.js-4.12.0.tgz",
"integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="
},
"node_modules/body-parser": {
"version": "1.20.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/body-parser/-/body-parser-1.20.2.tgz",
"integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==",
"dependencies": {
"bytes": "3.1.2",
"content-type": "~1.0.5",
"debug": "2.6.9",
"depd": "2.0.0",
"destroy": "1.2.0",
"http-errors": "2.0.0",
"iconv-lite": "0.4.24",
"on-finished": "2.4.1",
"qs": "6.11.0",
"raw-body": "2.5.2",
"type-is": "~1.6.18",
"unpipe": "1.0.0"
},
"engines": {
"node": ">= 0.8",
"npm": "1.2.8000 || >= 1.4.16"
}
},
"node_modules/brace-expansion": {
"version": "1.1.11",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/brace-expansion/-/brace-expansion-1.1.11.tgz",
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
"dev": true,
"dependencies": {
"balanced-match": "^1.0.0",
"concat-map": "0.0.1"
}
},
"node_modules/braces": {
"version": "3.0.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/braces/-/braces-3.0.2.tgz",
"integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
"dev": true,
"dependencies": {
"fill-range": "^7.0.1"
},
"engines": {
"node": ">=8"
}
},
"node_modules/buffer": {
"version": "6.0.3",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/buffer/-/buffer-6.0.3.tgz",
"integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==",
"dependencies": {
"base64-js": "^1.3.1",
"ieee754": "^1.2.1"
}
},
"node_modules/buffer-equal-constant-time": {
"version": "1.0.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz",
"integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA=="
},
"node_modules/bytes": {
"version": "3.1.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/bytes/-/bytes-3.1.2.tgz",
"integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/call-bind": {
"version": "1.0.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/call-bind/-/call-bind-1.0.2.tgz",
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
"dependencies": {
"function-bind": "^1.1.1",
"get-intrinsic": "^1.0.2"
}
},
"node_modules/canonicalize": {
"version": "1.0.8",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/canonicalize/-/canonicalize-1.0.8.tgz",
"integrity": "sha512-0CNTVCLZggSh7bc5VkX5WWPWO+cyZbNd07IHIsSXLia/eAq+r836hgk+8BKoEh7949Mda87VUOitx5OddVj64A=="
},
"node_modules/charenc": {
"version": "0.0.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/charenc/-/charenc-0.0.2.tgz",
"integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==",
"engines": {
"node": "*"
}
},
"node_modules/chokidar": {
"version": "3.5.3",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/chokidar/-/chokidar-3.5.3.tgz",
"integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
"dev": true,
"dependencies": {
"anymatch": "~3.1.2",
"braces": "~3.0.2",
"glob-parent": "~5.1.2",
"is-binary-path": "~2.1.0",
"is-glob": "~4.0.1",
"normalize-path": "~3.0.0",
"readdirp": "~3.6.0"
},
"engines": {
"node": ">= 8.10.0"
},
"optionalDependencies": {
"fsevents": "~2.3.2"
}
},
"node_modules/cls-hooked": {
"version": "4.2.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/cls-hooked/-/cls-hooked-4.2.2.tgz",
"integrity": "sha512-J4Xj5f5wq/4jAvcdgoGsL3G103BtWpZrMo8NEinRltN+xpTZdI+M38pyQqhuFU/P792xkMFvnKSf+Lm81U1bxw==",
"dependencies": {
"async-hook-jl": "^1.7.6",
"emitter-listener": "^1.0.1",
"semver": "^5.4.1"
},
"engines": {
"node": "^4.7 || >=6.9 || >=7.3 || >=8.2.1"
}
},
"node_modules/cls-hooked/node_modules/semver": {
"version": "5.7.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/semver/-/semver-5.7.2.tgz",
"integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==",
"bin": {
"semver": "bin/semver"
}
},
"node_modules/combined-stream": {
"version": "1.0.8",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/combined-stream/-/combined-stream-1.0.8.tgz",
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
"dependencies": {
"delayed-stream": "~1.0.0"
},
"engines": {
"node": ">= 0.8"
}
},
"node_modules/concat-map": {
"version": "0.0.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
"dev": true
},
"node_modules/content-disposition": {
"version": "0.5.4",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/content-disposition/-/content-disposition-0.5.4.tgz",
"integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
"dependencies": {
"safe-buffer": "5.2.1"
},
"engines": {
"node": ">= 0.6"
}
},
"node_modules/content-type": {
"version": "1.0.5",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/content-type/-/content-type-1.0.5.tgz",
"integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/cookie": {
"version": "0.5.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/cookie/-/cookie-0.5.0.tgz",
"integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
"engines": {
"node": ">= 0.6"
}
},
"node_modules/cookie-session": {
"version": "2.0.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/cookie-session/-/cookie-session-2.0.0.tgz",
"integrity": "sha512-hKvgoThbw00zQOleSlUr2qpvuNweoqBtxrmx0UFosx6AGi9lYtLoA+RbsvknrEX8Pr6MDbdWAb2j6SnMn+lPsg==",
"dependencies": {
"cookies": "0.8.0",
"debug": "3.2.7",
"on-headers": "~1.0.2",
"safe-buffer": "5.2.1"
},
"engines": {
"node": ">= 0.10"
}
},
"node_modules/cookie-session/node_modules/debug": {
"version": "3.2.7",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dependencies": {
"ms": "^2.1.1"
}
},
"node_modules/cookie-session/node_modules/ms": {
"version": "2.1.3",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/ms/-/ms-2.1.3.tgz",
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
},
"node_modules/cookie-signature": {
"version": "1.0.6",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/cookie-signature/-/cookie-signature-1.0.6.tgz",
"integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="
},
"node_modules/cookies": {
"version": "0.8.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/cookies/-/cookies-0.8.0.tgz",
"integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==",
"dependencies": {
"depd": "~2.0.0",
"keygrip": "~1.1.0"
},
"engines": {
"node": ">= 0.8"
}
},
"node_modules/cors": {
"version": "2.8.5",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/cors/-/cors-2.8.5.tgz",
"integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==",
"dependencies": {
"object-assign": "^4",
"vary": "^1"
},
"engines": {
"node": ">= 0.10"
}
},
"node_modules/create-require": {
"version": "1.1.1",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/create-require/-/create-require-1.1.1.tgz",
"integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==",
"dev": true
},
"node_modules/cross-fetch": {
"version": "4.0.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/cross-fetch/-/cross-fetch-4.0.0.tgz",
"integrity": "sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==",
"dependencies": {
"node-fetch": "^2.6.12"
}
},
"node_modules/crypt": {
"version": "0.0.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/crypt/-/crypt-0.0.2.tgz",
"integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==",
"engines": {
"node": "*"
}
},
"node_modules/debug": {
"version": "2.6.9",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/debug/-/debug-2.6.9.tgz",
"integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
"dependencies": {
"ms": "2.0.0"
}
},
"node_modules/delayed-stream": {
"version": "1.0.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/delayed-stream/-/delayed-stream-1.0.0.tgz",
"integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
"engines": {
"node": ">=0.4.0"
}
},
"node_modules/denque": {
"version": "2.1.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/denque/-/denque-2.1.0.tgz",
"integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==",
"engines": {
"node": ">=0.10"
}
},
"node_modules/depd": {
"version": "2.0.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/depd/-/depd-2.0.0.tgz",
"integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/destroy": {
"version": "1.2.0",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/destroy/-/destroy-1.2.0.tgz",
"integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
"engines": {
"node": ">= 0.8",
"npm": "1.2.8000 || >= 1.4.16"
}
},
"node_modules/diff": {
"version": "4.0.2",
"resolved": "https://repo.vito.be:443/artifactory/api/npm/sas-weare-npm-virtual/diff/-/diff-4.0.2.tgz",
"integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==",
"dev": true,
"engines": {
"node": ">=0.3.1"
}