forked from richardwolfmayr/jupyterlab_nbprovenance
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package-lock.json
9144 lines (9144 loc) · 359 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": "@jku-icg/jupyterlab_nbprovenance",
"version": "1.0.0-beta.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/code-frame": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.14.5.tgz",
"integrity": "sha512-9pzDqyc6OLDaqe+zbACgFkb6fKMNG6CObKpnYXChRsvYGyEdc7CA2BaqeOM+vOtCS5ndmJicPJhKAwYRI6UfFw==",
"dev": true,
"requires": {
"@babel/highlight": "^7.14.5"
}
},
"@babel/helper-validator-identifier": {
"version": "7.14.9",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.9.tgz",
"integrity": "sha512-pQYxPY0UP6IHISRitNe8bsijHex4TWZXi2HwKVsjPiltzlhse2znVcm9Ace510VT1kxIHjGJCZZQBX2gJDbo0g==",
"dev": true
},
"@babel/highlight": {
"version": "7.14.5",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz",
"integrity": "sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.14.5",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
}
},
"@babel/runtime": {
"version": "7.15.4",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz",
"integrity": "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@blueprintjs/colors": {
"version": "4.0.0-alpha.1",
"resolved": "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.0-alpha.1.tgz",
"integrity": "sha512-i95xW/cAIijJAMIBDrXw1WLbGVXVaRDRG1Ga0CxOtMVwL20zvdXlQj7EMqhkgVEJo9LaKNIDliPI+jsh7h5Lag=="
},
"@blueprintjs/core": {
"version": "3.50.4",
"resolved": "https://registry.npmjs.org/@blueprintjs/core/-/core-3.50.4.tgz",
"integrity": "sha512-FYGr1ZMH1si2acdZaTI4gqhvwgb0yOWcv7otYdi/tvC4ReId2gsm2i+bDw/eBMYsH+OSFYZT0C6hFvHV3HrkPA==",
"requires": {
"@blueprintjs/colors": "^4.0.0-alpha.1",
"@blueprintjs/icons": "^3.30.2",
"@types/dom4": "^2.0.1",
"classnames": "^2.2",
"dom4": "^2.1.5",
"normalize.css": "^8.0.1",
"popper.js": "^1.16.1",
"react-lifecycles-compat": "^3.0.4",
"react-popper": "^1.3.7",
"react-transition-group": "^2.9.0",
"resize-observer-polyfill": "^1.5.1",
"tslib": "~1.13.0"
},
"dependencies": {
"tslib": {
"version": "1.13.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
"integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
}
}
},
"@blueprintjs/icons": {
"version": "3.30.2",
"resolved": "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.30.2.tgz",
"integrity": "sha512-t0coke9JWLtAt4eQuGfTD2KQSjD+Q5V9JLnRwt1sEyV9/CHXgeoTvsEEqpiXe6gWOW72Rok6Uo86yLyICRW7wQ==",
"requires": {
"classnames": "^2.2",
"tslib": "~1.13.0"
},
"dependencies": {
"tslib": {
"version": "1.13.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
"integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
}
}
},
"@blueprintjs/select": {
"version": "3.18.6",
"resolved": "https://registry.npmjs.org/@blueprintjs/select/-/select-3.18.6.tgz",
"integrity": "sha512-xxhtxKIYxSDjnaUyzNAaM0ffHHW02FU0VuEG2A9IxueX3sfGNN5HQKKxFHIEfCWabRApEILGTzRx42uvfdSUww==",
"requires": {
"@blueprintjs/core": "^3.50.4",
"classnames": "^2.2",
"tslib": "~1.13.0"
},
"dependencies": {
"tslib": {
"version": "1.13.0",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz",
"integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q=="
}
}
},
"@cypress/request": {
"version": "2.88.6",
"resolved": "https://registry.npmjs.org/@cypress/request/-/request-2.88.6.tgz",
"integrity": "sha512-z0UxBE/+qaESAHY9p9sM2h8Y4XqtsbDCt0/DPOrqA/RZgKi4PkxdpXyK4wCCnSk1xHqWHZZAE+gV6aDAR6+caQ==",
"dev": true,
"requires": {
"aws-sign2": "~0.7.0",
"aws4": "^1.8.0",
"caseless": "~0.12.0",
"combined-stream": "~1.0.6",
"extend": "~3.0.2",
"forever-agent": "~0.6.1",
"form-data": "~2.3.2",
"har-validator": "~5.1.3",
"http-signature": "~1.2.0",
"is-typedarray": "~1.0.0",
"isstream": "~0.1.2",
"json-stringify-safe": "~5.0.1",
"mime-types": "~2.1.19",
"performance-now": "^2.1.0",
"qs": "~6.5.2",
"safe-buffer": "^5.1.2",
"tough-cookie": "~2.5.0",
"tunnel-agent": "^0.6.0",
"uuid": "^8.3.2"
},
"dependencies": {
"uuid": {
"version": "8.3.2",
"resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz",
"integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==",
"dev": true
}
}
},
"@cypress/xvfb": {
"version": "1.2.4",
"resolved": "https://registry.npmjs.org/@cypress/xvfb/-/xvfb-1.2.4.tgz",
"integrity": "sha512-skbBzPggOVYCbnGgV+0dmBdW/s77ZkAOXIC1knS8NagwDjBrNC1LuXtQJeiN6l+m7lzmHtaoUw/ctJKdqkG57Q==",
"dev": true,
"requires": {
"debug": "^3.1.0",
"lodash.once": "^4.1.1"
},
"dependencies": {
"debug": {
"version": "3.2.7",
"resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
"integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
"dev": true,
"requires": {
"ms": "^2.1.1"
}
}
}
},
"@firebase/analytics": {
"version": "0.6.0",
"resolved": "https://registry.npmjs.org/@firebase/analytics/-/analytics-0.6.0.tgz",
"integrity": "sha512-6qYEOPUVYrMhqvJ46Z5Uf1S4uULd6d7vGpMP5Qz+u8kIWuOQGcPdJKQap+Hla6Rq164or9gC2HRXuYXKlgWfpw==",
"requires": {
"@firebase/analytics-types": "0.4.0",
"@firebase/component": "0.1.19",
"@firebase/installations": "0.4.17",
"@firebase/logger": "0.2.6",
"@firebase/util": "0.3.2",
"tslib": "^1.11.1"
}
},
"@firebase/analytics-types": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@firebase/analytics-types/-/analytics-types-0.4.0.tgz",
"integrity": "sha512-Jj2xW+8+8XPfWGkv9HPv/uR+Qrmq37NPYT352wf7MvE9LrstpLVmFg3LqG6MCRr5miLAom5sen2gZ+iOhVDeRA=="
},
"@firebase/app": {
"version": "0.6.11",
"resolved": "https://registry.npmjs.org/@firebase/app/-/app-0.6.11.tgz",
"integrity": "sha512-FH++PaoyTzfTAVuJ0gITNYEIcjT5G+D0671La27MU8Vvr6MTko+5YUZ4xS9QItyotSeRF4rMJ1KR7G8LSyySiA==",
"requires": {
"@firebase/app-types": "0.6.1",
"@firebase/component": "0.1.19",
"@firebase/logger": "0.2.6",
"@firebase/util": "0.3.2",
"dom-storage": "2.1.0",
"tslib": "^1.11.1",
"xmlhttprequest": "1.8.0"
}
},
"@firebase/app-types": {
"version": "0.6.1",
"resolved": "https://registry.npmjs.org/@firebase/app-types/-/app-types-0.6.1.tgz",
"integrity": "sha512-L/ZnJRAq7F++utfuoTKX4CLBG5YR7tFO3PLzG1/oXXKEezJ0kRL3CMRoueBEmTCzVb/6SIs2Qlaw++uDgi5Xyg=="
},
"@firebase/auth": {
"version": "0.15.0",
"resolved": "https://registry.npmjs.org/@firebase/auth/-/auth-0.15.0.tgz",
"integrity": "sha512-IFuzhxS+HtOQl7+SZ/Mhaghy/zTU7CENsJFWbC16tv2wfLZbayKF5jYGdAU3VFLehgC8KjlcIWd10akc3XivfQ==",
"requires": {
"@firebase/auth-types": "0.10.1"
}
},
"@firebase/auth-interop-types": {
"version": "0.1.5",
"resolved": "https://registry.npmjs.org/@firebase/auth-interop-types/-/auth-interop-types-0.1.5.tgz",
"integrity": "sha512-88h74TMQ6wXChPA6h9Q3E1Jg6TkTHep2+k63OWg3s0ozyGVMeY+TTOti7PFPzq5RhszQPQOoCi59es4MaRvgCw=="
},
"@firebase/auth-types": {
"version": "0.10.1",
"resolved": "https://registry.npmjs.org/@firebase/auth-types/-/auth-types-0.10.1.tgz",
"integrity": "sha512-/+gBHb1O9x/YlG7inXfxff/6X3BPZt4zgBv4kql6HEmdzNQCodIRlEYnI+/da+lN+dha7PjaFH7C7ewMmfV7rw=="
},
"@firebase/component": {
"version": "0.1.19",
"resolved": "https://registry.npmjs.org/@firebase/component/-/component-0.1.19.tgz",
"integrity": "sha512-L0S3g8eqaerg8y0zox3oOHSTwn/FE8RbcRHiurnbESvDViZtP5S5WnhuAPd7FnFxa8ElWK0z1Tr3ikzWDv1xdQ==",
"requires": {
"@firebase/util": "0.3.2",
"tslib": "^1.11.1"
}
},
"@firebase/database": {
"version": "0.6.13",
"resolved": "https://registry.npmjs.org/@firebase/database/-/database-0.6.13.tgz",
"integrity": "sha512-NommVkAPzU7CKd1gyehmi3lz0K78q0KOfiex7Nfy7MBMwknLm7oNqKovXSgQV1PCLvKXvvAplDSFhDhzIf9obA==",
"requires": {
"@firebase/auth-interop-types": "0.1.5",
"@firebase/component": "0.1.19",
"@firebase/database-types": "0.5.2",
"@firebase/logger": "0.2.6",
"@firebase/util": "0.3.2",
"faye-websocket": "0.11.3",
"tslib": "^1.11.1"
}
},
"@firebase/database-types": {
"version": "0.5.2",
"resolved": "https://registry.npmjs.org/@firebase/database-types/-/database-types-0.5.2.tgz",
"integrity": "sha512-ap2WQOS3LKmGuVFKUghFft7RxXTyZTDr0Xd8y2aqmWsbJVjgozi0huL/EUMgTjGFrATAjcf2A7aNs8AKKZ2a8g==",
"requires": {
"@firebase/app-types": "0.6.1"
}
},
"@firebase/firestore": {
"version": "1.18.0",
"resolved": "https://registry.npmjs.org/@firebase/firestore/-/firestore-1.18.0.tgz",
"integrity": "sha512-maMq4ltkrwjDRusR2nt0qS4wldHQMp+0IDSfXIjC+SNmjnWY/t/+Skn9U3Po+dB38xpz3i7nsKbs+8utpDnPSw==",
"requires": {
"@firebase/component": "0.1.19",
"@firebase/firestore-types": "1.14.0",
"@firebase/logger": "0.2.6",
"@firebase/util": "0.3.2",
"@firebase/webchannel-wrapper": "0.4.0",
"@grpc/grpc-js": "^1.0.0",
"@grpc/proto-loader": "^0.5.0",
"node-fetch": "2.6.1",
"tslib": "^1.11.1"
}
},
"@firebase/firestore-types": {
"version": "1.14.0",
"resolved": "https://registry.npmjs.org/@firebase/firestore-types/-/firestore-types-1.14.0.tgz",
"integrity": "sha512-WF8IBwHzZDhwyOgQnmB0pheVrLNP78A8PGxk1nxb/Nrgh1amo4/zYvFMGgSsTeaQK37xMYS/g7eS948te/dJxw=="
},
"@firebase/functions": {
"version": "0.5.1",
"resolved": "https://registry.npmjs.org/@firebase/functions/-/functions-0.5.1.tgz",
"integrity": "sha512-yyjPZXXvzFPjkGRSqFVS5Hc2Y7Y48GyyMH+M3i7hLGe69r/59w6wzgXKqTiSYmyE1pxfjxU4a1YqBDHNkQkrYQ==",
"requires": {
"@firebase/component": "0.1.19",
"@firebase/functions-types": "0.3.17",
"@firebase/messaging-types": "0.5.0",
"node-fetch": "2.6.1",
"tslib": "^1.11.1"
}
},
"@firebase/functions-types": {
"version": "0.3.17",
"resolved": "https://registry.npmjs.org/@firebase/functions-types/-/functions-types-0.3.17.tgz",
"integrity": "sha512-DGR4i3VI55KnYk4IxrIw7+VG7Q3gA65azHnZxo98Il8IvYLr2UTBlSh72dTLlDf25NW51HqvJgYJDKvSaAeyHQ=="
},
"@firebase/installations": {
"version": "0.4.17",
"resolved": "https://registry.npmjs.org/@firebase/installations/-/installations-0.4.17.tgz",
"integrity": "sha512-AE/TyzIpwkC4UayRJD419xTqZkKzxwk0FLht3Dci8WI2OEKHSwoZG9xv4hOBZebe+fDzoV2EzfatQY8c/6Avig==",
"requires": {
"@firebase/component": "0.1.19",
"@firebase/installations-types": "0.3.4",
"@firebase/util": "0.3.2",
"idb": "3.0.2",
"tslib": "^1.11.1"
}
},
"@firebase/installations-types": {
"version": "0.3.4",
"resolved": "https://registry.npmjs.org/@firebase/installations-types/-/installations-types-0.3.4.tgz",
"integrity": "sha512-RfePJFovmdIXb6rYwtngyxuEcWnOrzdZd9m7xAW0gRxDIjBT20n3BOhjpmgRWXo/DAxRmS7bRjWAyTHY9cqN7Q=="
},
"@firebase/logger": {
"version": "0.2.6",
"resolved": "https://registry.npmjs.org/@firebase/logger/-/logger-0.2.6.tgz",
"integrity": "sha512-KIxcUvW/cRGWlzK9Vd2KB864HlUnCfdTH0taHE0sXW5Xl7+W68suaeau1oKNEqmc3l45azkd4NzXTCWZRZdXrw=="
},
"@firebase/messaging": {
"version": "0.7.1",
"resolved": "https://registry.npmjs.org/@firebase/messaging/-/messaging-0.7.1.tgz",
"integrity": "sha512-iev/ST9v0xd/8YpGYrZtDcqdD9J6ZWzSuceRn8EKy5vIgQvW/rk2eTQc8axzvDpQ36ZfphMYuhW6XuNrR3Pd2Q==",
"requires": {
"@firebase/component": "0.1.19",
"@firebase/installations": "0.4.17",
"@firebase/messaging-types": "0.5.0",
"@firebase/util": "0.3.2",
"idb": "3.0.2",
"tslib": "^1.11.1"
}
},
"@firebase/messaging-types": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/@firebase/messaging-types/-/messaging-types-0.5.0.tgz",
"integrity": "sha512-QaaBswrU6umJYb/ZYvjR5JDSslCGOH6D9P136PhabFAHLTR4TWjsaACvbBXuvwrfCXu10DtcjMxqfhdNIB1Xfg=="
},
"@firebase/performance": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/@firebase/performance/-/performance-0.4.2.tgz",
"integrity": "sha512-irHTCVWJ/sxJo0QHg+yQifBeVu8ZJPihiTqYzBUz/0AGc51YSt49FZwqSfknvCN2+OfHaazz/ARVBn87g7Ex8g==",
"requires": {
"@firebase/component": "0.1.19",
"@firebase/installations": "0.4.17",
"@firebase/logger": "0.2.6",
"@firebase/performance-types": "0.0.13",
"@firebase/util": "0.3.2",
"tslib": "^1.11.1"
}
},
"@firebase/performance-types": {
"version": "0.0.13",
"resolved": "https://registry.npmjs.org/@firebase/performance-types/-/performance-types-0.0.13.tgz",
"integrity": "sha512-6fZfIGjQpwo9S5OzMpPyqgYAUZcFzZxHFqOyNtorDIgNXq33nlldTL/vtaUZA8iT9TT5cJlCrF/jthKU7X21EA=="
},
"@firebase/polyfill": {
"version": "0.3.36",
"resolved": "https://registry.npmjs.org/@firebase/polyfill/-/polyfill-0.3.36.tgz",
"integrity": "sha512-zMM9oSJgY6cT2jx3Ce9LYqb0eIpDE52meIzd/oe/y70F+v9u1LDqk5kUF5mf16zovGBWMNFmgzlsh6Wj0OsFtg==",
"requires": {
"core-js": "3.6.5",
"promise-polyfill": "8.1.3",
"whatwg-fetch": "2.0.4"
}
},
"@firebase/remote-config": {
"version": "0.1.28",
"resolved": "https://registry.npmjs.org/@firebase/remote-config/-/remote-config-0.1.28.tgz",
"integrity": "sha512-4zSdyxpt94jAnFhO8toNjG8oMKBD+xTuBIcK+Nw8BdQWeJhEamgXlupdBARUk1uf3AvYICngHH32+Si/dMVTbw==",
"requires": {
"@firebase/component": "0.1.19",
"@firebase/installations": "0.4.17",
"@firebase/logger": "0.2.6",
"@firebase/remote-config-types": "0.1.9",
"@firebase/util": "0.3.2",
"tslib": "^1.11.1"
}
},
"@firebase/remote-config-types": {
"version": "0.1.9",
"resolved": "https://registry.npmjs.org/@firebase/remote-config-types/-/remote-config-types-0.1.9.tgz",
"integrity": "sha512-G96qnF3RYGbZsTRut7NBX0sxyczxt1uyCgXQuH/eAfUCngxjEGcZQnBdy6mvSdqdJh5mC31rWPO4v9/s7HwtzA=="
},
"@firebase/storage": {
"version": "0.3.43",
"resolved": "https://registry.npmjs.org/@firebase/storage/-/storage-0.3.43.tgz",
"integrity": "sha512-Jp54jcuyimLxPhZHFVAhNbQmgTu3Sda7vXjXrNpPEhlvvMSq4yuZBR6RrZxe/OrNVprLHh/6lTCjwjOVSo3bWA==",
"requires": {
"@firebase/component": "0.1.19",
"@firebase/storage-types": "0.3.13",
"@firebase/util": "0.3.2",
"tslib": "^1.11.1"
}
},
"@firebase/storage-types": {
"version": "0.3.13",
"resolved": "https://registry.npmjs.org/@firebase/storage-types/-/storage-types-0.3.13.tgz",
"integrity": "sha512-pL7b8d5kMNCCL0w9hF7pr16POyKkb3imOW7w0qYrhBnbyJTdVxMWZhb0HxCFyQWC0w3EiIFFmxoz8NTFZDEFog=="
},
"@firebase/util": {
"version": "0.3.2",
"resolved": "https://registry.npmjs.org/@firebase/util/-/util-0.3.2.tgz",
"integrity": "sha512-Dqs00++c8rwKky6KCKLLY2T1qYO4Q+X5t+lF7DInXDNF4ae1Oau35bkD+OpJ9u7l1pEv7KHowP6CUKuySCOc8g==",
"requires": {
"tslib": "^1.11.1"
}
},
"@firebase/webchannel-wrapper": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/@firebase/webchannel-wrapper/-/webchannel-wrapper-0.4.0.tgz",
"integrity": "sha512-8cUA/mg0S+BxIZ72TdZRsXKBP5n5uRcE3k29TZhZw6oIiHBt9JA7CTb/4pE1uKtE/q5NeTY2tBDcagoZ+1zjXQ=="
},
"@fortawesome/fontawesome-free": {
"version": "5.15.4",
"resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.4.tgz",
"integrity": "sha512-eYm8vijH/hpzr/6/1CJ/V/Eb1xQFW2nnUKArb3z+yUWv7HTwj6M7SP957oMjfZjAHU6qpoNc2wQvIxBLWYa/Jg=="
},
"@grpc/grpc-js": {
"version": "1.3.7",
"resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.3.7.tgz",
"integrity": "sha512-CKQVuwuSPh40tgOkR7c0ZisxYRiN05PcKPW72mQL5y++qd7CwBRoaJZvU5xfXnCJDFBmS3qZGQ71Frx6Ofo2XA==",
"requires": {
"@types/node": ">=12.12.47"
}
},
"@grpc/proto-loader": {
"version": "0.5.6",
"resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.5.6.tgz",
"integrity": "sha512-DT14xgw3PSzPxwS13auTEwxhMMOoz33DPUKNtmYK/QYbBSpLXJy78FGGs5yVoxVobEqPm4iW9MOIoz0A3bLTRQ==",
"requires": {
"lodash.camelcase": "^4.3.0",
"protobufjs": "^6.8.6"
}
},
"@hypnosphi/create-react-context": {
"version": "0.3.1",
"resolved": "https://registry.npmjs.org/@hypnosphi/create-react-context/-/create-react-context-0.3.1.tgz",
"integrity": "sha512-V1klUed202XahrWJLLOT3EXNeCpFHCcJntdFGI15ntCwau+jfT386w7OFTMaCqOgXUH1fa0w/I1oZs+i/Rfr0A==",
"requires": {
"gud": "^1.0.0",
"warning": "^4.0.3"
}
},
"@jku-icg/trrack-notebook-vis": {
"version": "1.0.0-alpha.5",
"resolved": "https://registry.npmjs.org/@jku-icg/trrack-notebook-vis/-/trrack-notebook-vis-1.0.0-alpha.5.tgz",
"integrity": "sha512-o8NlShUxZk9+oe8+DuFp+oP3v6KDncvp962PR2Zb3BMqwlvG+JpFAVzgCxRwC02OoElfpm1CiktPApCCyW5mPg==",
"requires": {
"@visdesignlab/trrack": "^2.0.0-alpha.10",
"d3": "^5.15.0",
"mobx": "^5.15.4",
"mobx-react": "^6.1.7",
"react-move": "^6.1.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.88.2",
"typestyle": "^2.0.4"
}
},
"@jupyterlab/application": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/application/-/application-3.1.13.tgz",
"integrity": "sha512-gToXmrPQwfGjZ9H5I9QskZ51qF1QtGUq84V12ePUBeefYlMgiTfoSYU5W6eUof2QGsWXup0rzX6vE/+CrRPtZA==",
"requires": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@jupyterlab/apputils": "^3.1.13",
"@jupyterlab/coreutils": "^5.1.13",
"@jupyterlab/docregistry": "^3.1.13",
"@jupyterlab/rendermime": "^3.1.13",
"@jupyterlab/rendermime-interfaces": "^3.1.13",
"@jupyterlab/services": "^6.1.13",
"@jupyterlab/statedb": "^3.1.13",
"@jupyterlab/translation": "^3.1.13",
"@jupyterlab/ui-components": "^3.1.13",
"@lumino/algorithm": "^1.3.3",
"@lumino/application": "^1.16.0",
"@lumino/commands": "^1.12.0",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/messaging": "^1.4.3",
"@lumino/polling": "^1.3.3",
"@lumino/properties": "^1.2.3",
"@lumino/signaling": "^1.4.3",
"@lumino/widgets": "^1.19.0"
}
},
"@jupyterlab/apputils": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-3.1.13.tgz",
"integrity": "sha512-miulmpss0wsJLEF1IfKKn95miVi0d5kAaxFF+5FbhOpHmzVduwguxkMZ4B7uads4ti3I7Ayjh6bHVwO7A/UKuQ==",
"requires": {
"@jupyterlab/coreutils": "^5.1.13",
"@jupyterlab/services": "^6.1.13",
"@jupyterlab/settingregistry": "^3.1.13",
"@jupyterlab/statedb": "^3.1.13",
"@jupyterlab/translation": "^3.1.13",
"@jupyterlab/ui-components": "^3.1.13",
"@lumino/algorithm": "^1.3.3",
"@lumino/commands": "^1.12.0",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/domutils": "^1.2.3",
"@lumino/messaging": "^1.4.3",
"@lumino/properties": "^1.2.3",
"@lumino/signaling": "^1.4.3",
"@lumino/virtualdom": "^1.8.0",
"@lumino/widgets": "^1.19.0",
"@types/react": "^17.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sanitize-html": "~2.3.3",
"url": "^0.11.0"
},
"dependencies": {
"@types/react": {
"version": "17.0.27",
"resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.27.tgz",
"integrity": "sha512-zgiJwtsggVGtr53MndV7jfiUESTqrbxOcBvwfe6KS/9bzaVPCTDieTWnFNecVNx6EAaapg5xsLLWFfHHR437AA==",
"requires": {
"@types/prop-types": "*",
"@types/scheduler": "*",
"csstype": "^3.0.2"
}
},
"csstype": {
"version": "3.0.9",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz",
"integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw=="
},
"react": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
"integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
"requires": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1"
}
},
"react-dom": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.2.tgz",
"integrity": "sha512-s4h96KtLDUQlsENhMn1ar8t2bEa+q/YAtj8pPPdIjPDGBDIVNsrD9aXNWqspUe6AzKCIG0C1HZZLqLV7qpOBGA==",
"requires": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1",
"scheduler": "^0.20.2"
}
}
}
},
"@jupyterlab/attachments": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/attachments/-/attachments-3.1.13.tgz",
"integrity": "sha512-0nxbWQiTxQw0oC789RqNcg8DqDtW/NDn8oy+FL3b5eEGBF8WwYFCaQwIzx7zrijzMfSrquWpqrDSvfIUuLz/3w==",
"requires": {
"@jupyterlab/nbformat": "^3.1.13",
"@jupyterlab/observables": "^4.1.13",
"@jupyterlab/rendermime": "^3.1.13",
"@jupyterlab/rendermime-interfaces": "^3.1.13",
"@lumino/disposable": "^1.4.3",
"@lumino/signaling": "^1.4.3"
}
},
"@jupyterlab/cells": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/cells/-/cells-3.1.13.tgz",
"integrity": "sha512-DqRoKTIkCbsVqcAnDif03Grcp0Kb+yMTLSdZMvwmbi6j50BORSztArxDQIoVSeKWeEa8LwhUmdOITWEZZcse+Q==",
"requires": {
"@jupyterlab/apputils": "^3.1.13",
"@jupyterlab/attachments": "^3.1.13",
"@jupyterlab/codeeditor": "^3.1.13",
"@jupyterlab/codemirror": "^3.1.13",
"@jupyterlab/coreutils": "^5.1.13",
"@jupyterlab/filebrowser": "^3.1.13",
"@jupyterlab/nbformat": "^3.1.13",
"@jupyterlab/observables": "^4.1.13",
"@jupyterlab/outputarea": "^3.1.13",
"@jupyterlab/rendermime": "^3.1.13",
"@jupyterlab/services": "^6.1.13",
"@jupyterlab/shared-models": "^3.1.13",
"@jupyterlab/ui-components": "^3.1.13",
"@lumino/algorithm": "^1.3.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/domutils": "^1.2.3",
"@lumino/dragdrop": "^1.7.1",
"@lumino/messaging": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"@lumino/virtualdom": "^1.8.0",
"@lumino/widgets": "^1.19.0",
"marked": "^2.0.0",
"react": "^17.0.1"
},
"dependencies": {
"@jupyterlab/filebrowser": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-3.1.13.tgz",
"integrity": "sha512-wSeSt628LUDOgcxpfeXAUv8+AJQYZMiwdpmzZI3q6E1hzR0zAGhz9pUh4amQ3+M/tP8JZ8f4+Rvkx5F5o+CzVw==",
"requires": {
"@jupyterlab/apputils": "^3.1.13",
"@jupyterlab/coreutils": "^5.1.13",
"@jupyterlab/docmanager": "^3.1.13",
"@jupyterlab/docregistry": "^3.1.13",
"@jupyterlab/services": "^6.1.13",
"@jupyterlab/statedb": "^3.1.13",
"@jupyterlab/statusbar": "^3.1.13",
"@jupyterlab/translation": "^3.1.13",
"@jupyterlab/ui-components": "^3.1.13",
"@lumino/algorithm": "^1.3.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/domutils": "^1.2.3",
"@lumino/dragdrop": "^1.7.1",
"@lumino/messaging": "^1.4.3",
"@lumino/polling": "^1.3.3",
"@lumino/signaling": "^1.4.3",
"@lumino/virtualdom": "^1.8.0",
"@lumino/widgets": "^1.19.0",
"react": "^17.0.1"
}
},
"react": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
"integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
"requires": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1"
}
}
}
},
"@jupyterlab/codeeditor": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-3.1.13.tgz",
"integrity": "sha512-aVyw64+Hmes91ENUVZzVcKvyXrwHfKovI3b3wQwCRxkfJH28n8bsROoPsVVDroTCDtw3G2rbmjSBam1oVBWnaA==",
"requires": {
"@jupyterlab/coreutils": "^5.1.13",
"@jupyterlab/nbformat": "^3.1.13",
"@jupyterlab/observables": "^4.1.13",
"@jupyterlab/shared-models": "^3.1.13",
"@jupyterlab/translation": "^3.1.13",
"@jupyterlab/ui-components": "^3.1.13",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/dragdrop": "^1.7.1",
"@lumino/messaging": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"@lumino/widgets": "^1.19.0"
}
},
"@jupyterlab/codemirror": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-3.1.13.tgz",
"integrity": "sha512-NOHgI78THsOficie79UlhlD3uiPyrt3Bs/cYtxf7CiqURP1ieAMoKiCoWvsptqaqjNG4tyW980oav3wTa7Xrdg==",
"requires": {
"@jupyterlab/apputils": "^3.1.13",
"@jupyterlab/codeeditor": "^3.1.13",
"@jupyterlab/coreutils": "^5.1.13",
"@jupyterlab/nbformat": "^3.1.13",
"@jupyterlab/observables": "^4.1.13",
"@jupyterlab/shared-models": "^3.1.13",
"@jupyterlab/statusbar": "^3.1.13",
"@jupyterlab/translation": "^3.1.13",
"@lumino/algorithm": "^1.3.3",
"@lumino/commands": "^1.12.0",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/polling": "^1.3.3",
"@lumino/signaling": "^1.4.3",
"@lumino/widgets": "^1.19.0",
"codemirror": "~5.61.0",
"react": "^17.0.1",
"y-codemirror": "^2.1.1"
},
"dependencies": {
"react": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
"integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
"requires": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1"
}
}
}
},
"@jupyterlab/coreutils": {
"version": "5.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-5.1.13.tgz",
"integrity": "sha512-FBtlNTOKRhyhi1sECOpinNvfX6dVM3r8gwElRaMRFfpBwlffn9tQIC3RYzRSqQ+6+cyuCpQzXPuGHQT63ciM/w==",
"requires": {
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"minimist": "~1.2.0",
"moment": "^2.24.0",
"path-browserify": "^1.0.0",
"url-parse": "~1.5.1"
},
"dependencies": {
"path-browserify": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz",
"integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g=="
}
}
},
"@jupyterlab/docmanager": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-3.1.13.tgz",
"integrity": "sha512-LO+Bb1WKn6ZyvupJsYegeYZ31osN6BUE/s2/2soXVJtB8kh/hflMMpbIbZQIY07pgyFZJejKvWwg51RkpfAc+Q==",
"requires": {
"@jupyterlab/apputils": "^3.1.13",
"@jupyterlab/coreutils": "^5.1.13",
"@jupyterlab/docprovider": "^3.1.13",
"@jupyterlab/docregistry": "^3.1.13",
"@jupyterlab/services": "^6.1.13",
"@jupyterlab/statusbar": "^3.1.13",
"@jupyterlab/translation": "^3.1.13",
"@lumino/algorithm": "^1.3.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/messaging": "^1.4.3",
"@lumino/properties": "^1.2.3",
"@lumino/signaling": "^1.4.3",
"@lumino/widgets": "^1.19.0",
"react": "^17.0.1"
},
"dependencies": {
"react": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
"integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
"requires": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1"
}
}
}
},
"@jupyterlab/docprovider": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/docprovider/-/docprovider-3.1.13.tgz",
"integrity": "sha512-VgokFCK8Z+qpwgf+3ZXlT96KtAaWxBAJgQVtfSoQ/a/6S6rbjjHErgwduT3I8/GDxsNWm8LlovCTDR2kMZJGuA==",
"requires": {
"@jupyterlab/shared-models": "^3.1.13",
"@lumino/coreutils": "^1.5.3",
"lib0": "^0.2.42",
"y-websocket": "^1.3.15",
"yjs": "^13.5.6"
}
},
"@jupyterlab/docregistry": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-3.1.13.tgz",
"integrity": "sha512-J2WjpcUaomWyg/KYtMIoIkjs9FLxgzkIFHTmPyU6XOyxPAOus75K8y9umbxDvpewg93DqawTut4k+VOOBOZz+A==",
"requires": {
"@jupyterlab/apputils": "^3.1.13",
"@jupyterlab/codeeditor": "^3.1.13",
"@jupyterlab/codemirror": "^3.1.13",
"@jupyterlab/coreutils": "^5.1.13",
"@jupyterlab/docprovider": "^3.1.13",
"@jupyterlab/observables": "^4.1.13",
"@jupyterlab/rendermime": "^3.1.13",
"@jupyterlab/rendermime-interfaces": "^3.1.13",
"@jupyterlab/services": "^6.1.13",
"@jupyterlab/shared-models": "^3.1.13",
"@jupyterlab/translation": "^3.1.13",
"@jupyterlab/ui-components": "^3.1.13",
"@lumino/algorithm": "^1.3.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/messaging": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"@lumino/widgets": "^1.19.0",
"yjs": "^13.5.6"
}
},
"@jupyterlab/nbformat": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-3.1.13.tgz",
"integrity": "sha512-oCHMA6Cna3IWfMjrGTlbvSV1vcDzjLxGQGcgxXD5C5mJoJJOQal/39mhPXLBAaKirB/D6NRrSX5PXGX1sKQozA==",
"requires": {
"@lumino/coreutils": "^1.5.3"
}
},
"@jupyterlab/notebook": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/notebook/-/notebook-3.1.13.tgz",
"integrity": "sha512-rrWNIn5qECBCUkyiLzQGDrGGdcxZEjKZJLrwGhEQ7RqH4EGySskvb7TtFEitigjru1E0gGTpSrDXWMvJECOpIQ==",
"requires": {
"@jupyterlab/apputils": "^3.1.13",
"@jupyterlab/cells": "^3.1.13",
"@jupyterlab/codeeditor": "^3.1.13",
"@jupyterlab/coreutils": "^5.1.13",
"@jupyterlab/docregistry": "^3.1.13",
"@jupyterlab/nbformat": "^3.1.13",
"@jupyterlab/observables": "^4.1.13",
"@jupyterlab/rendermime": "^3.1.13",
"@jupyterlab/services": "^6.1.13",
"@jupyterlab/shared-models": "^3.1.13",
"@jupyterlab/statusbar": "^3.1.13",
"@jupyterlab/translation": "^3.1.13",
"@jupyterlab/ui-components": "^3.1.13",
"@lumino/algorithm": "^1.3.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/domutils": "^1.2.3",
"@lumino/dragdrop": "^1.7.1",
"@lumino/messaging": "^1.4.3",
"@lumino/properties": "^1.2.3",
"@lumino/signaling": "^1.4.3",
"@lumino/virtualdom": "^1.8.0",
"@lumino/widgets": "^1.19.0",
"react": "^17.0.1"
},
"dependencies": {
"react": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
"integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
"requires": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1"
}
}
}
},
"@jupyterlab/observables": {
"version": "4.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/observables/-/observables-4.1.13.tgz",
"integrity": "sha512-mFc7sdVBKoz21A2yooW7XsZ3xu152OFFnEapqDE6FkclSmDeYT+FjENJxxyamlvbK/12kGDNVqNThP1YVlno1w==",
"requires": {
"@lumino/algorithm": "^1.3.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/messaging": "^1.4.3",
"@lumino/signaling": "^1.4.3"
}
},
"@jupyterlab/outputarea": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/outputarea/-/outputarea-3.1.13.tgz",
"integrity": "sha512-KbRgAzJfhbdJqVweJhL34Wnezkzm9fQsIIYdqCis7uBFeSSUgTru1ASLDk1TqkJ99VmUcKwcsl/7X/cTy6gX7Q==",
"requires": {
"@jupyterlab/apputils": "^3.1.13",
"@jupyterlab/nbformat": "^3.1.13",
"@jupyterlab/observables": "^4.1.13",
"@jupyterlab/rendermime": "^3.1.13",
"@jupyterlab/rendermime-interfaces": "^3.1.13",
"@jupyterlab/services": "^6.1.13",
"@lumino/algorithm": "^1.3.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/messaging": "^1.4.3",
"@lumino/properties": "^1.2.3",
"@lumino/signaling": "^1.4.3",
"@lumino/widgets": "^1.19.0",
"resize-observer-polyfill": "^1.5.1"
}
},
"@jupyterlab/rendermime": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-3.1.13.tgz",
"integrity": "sha512-GbChw+PCZCG2xPJx0i+PNb666SDpc2cuUBjhQNxvMnlNm/Z+otClsGM/zKB09XaAub7+wGDjBvNRt7feINA6MA==",
"requires": {
"@jupyterlab/apputils": "^3.1.13",
"@jupyterlab/codemirror": "^3.1.13",
"@jupyterlab/coreutils": "^5.1.13",
"@jupyterlab/nbformat": "^3.1.13",
"@jupyterlab/observables": "^4.1.13",
"@jupyterlab/rendermime-interfaces": "^3.1.13",
"@jupyterlab/services": "^6.1.13",
"@jupyterlab/translation": "^3.1.13",
"@lumino/algorithm": "^1.3.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/messaging": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"@lumino/widgets": "^1.19.0",
"lodash.escape": "^4.0.1",
"marked": "^2.0.0"
}
},
"@jupyterlab/rendermime-interfaces": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.1.13.tgz",
"integrity": "sha512-ZtsVeknBtHqQSRxRSDiMDpvo3VCO4iUgnW28pEsqaqW8tmBg/ul+RFQIJsr2+SoA4Zlzxl29/OL/jiD/XOmJqA==",
"requires": {
"@jupyterlab/translation": "^3.1.13",
"@lumino/coreutils": "^1.5.3",
"@lumino/widgets": "^1.19.0"
}
},
"@jupyterlab/services": {
"version": "6.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-6.1.13.tgz",
"integrity": "sha512-fc4BTU4OvQ794wJ1VVjGaGmOfGjQblTDLDvO8BSu4wJEIp10EUfqEgqdvwdvOW0EKf4+Y+DDVRF7QcLHy4u08Q==",
"requires": {
"@jupyterlab/coreutils": "^5.1.13",
"@jupyterlab/nbformat": "^3.1.13",
"@jupyterlab/observables": "^4.1.13",
"@jupyterlab/settingregistry": "^3.1.13",
"@jupyterlab/statedb": "^3.1.13",
"@lumino/algorithm": "^1.3.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/polling": "^1.3.3",
"@lumino/signaling": "^1.4.3",
"node-fetch": "^2.6.0",
"ws": "^7.4.6"
}
},
"@jupyterlab/settingregistry": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-3.1.13.tgz",
"integrity": "sha512-IcgdAt6Rd95R1WXvUYxggLyWJSqi/K+xVq4iP0+BjhXRnxaeQQzRfkGcS6VcA4tnnLlndUW4GLFTFpyJY3bl6A==",
"requires": {
"@jupyterlab/statedb": "^3.1.13",
"@lumino/commands": "^1.12.0",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"ajv": "^6.12.3",
"json5": "^2.1.1"
}
},
"@jupyterlab/shared-models": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/shared-models/-/shared-models-3.1.13.tgz",
"integrity": "sha512-SBiWwF9g8Rak+iY02TEBNY+jmOOoleCLWdmjnLITskik2vNkuCASvUx+MR3KR+rPX0dleYBqhtJ0K04CC6ORow==",
"requires": {
"@jupyterlab/nbformat": "^3.1.13",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"y-protocols": "^1.0.5",
"yjs": "^13.5.6"
}
},
"@jupyterlab/statedb": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-3.1.13.tgz",
"integrity": "sha512-MZfNc5FpPv7VxOj2WR0RgIgRi/qsYqJieny8A9p+llL7haiW9vp94zaudIgn8elPDBnLMEwawn7KT2AQ8hSNdA==",
"requires": {
"@lumino/commands": "^1.12.0",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/properties": "^1.2.3",
"@lumino/signaling": "^1.4.3"
}
},
"@jupyterlab/statusbar": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-3.1.13.tgz",
"integrity": "sha512-KOlu5h3GER7Vn/BCbfpsBF4pmAqO3XcBWR3xqLaoqMVi7lH4j6cdOtreVFdU67i6vNOg0jaPc5FVkcNH3X8d/g==",
"requires": {
"@jupyterlab/apputils": "^3.1.13",
"@jupyterlab/codeeditor": "^3.1.13",
"@jupyterlab/services": "^6.1.13",
"@jupyterlab/translation": "^3.1.13",
"@jupyterlab/ui-components": "^3.1.13",
"@lumino/algorithm": "^1.3.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/messaging": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"@lumino/widgets": "^1.19.0",
"csstype": "~3.0.3",
"react": "^17.0.1",
"typestyle": "^2.0.4"
},
"dependencies": {
"csstype": {
"version": "3.0.9",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.9.tgz",
"integrity": "sha512-rpw6JPxK6Rfg1zLOYCSwle2GFOOsnjmDYDaBwEcwoOg4qlsIVCN789VkBZDJAGi4T07gI4YSutR43t9Zz4Lzuw=="
},
"react": {
"version": "17.0.2",
"resolved": "https://registry.npmjs.org/react/-/react-17.0.2.tgz",
"integrity": "sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==",
"requires": {
"loose-envify": "^1.1.0",
"object-assign": "^4.1.1"
}
}
}
},
"@jupyterlab/translation": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/translation/-/translation-3.1.13.tgz",
"integrity": "sha512-kZj/iL0iYfHAQoNcI611zMivQrGtW3kWbiamlZD7iw0yB9sd+GLm++mfyWOdqmVD6M/RCFQEEwfNGuQixfPyyw==",
"requires": {
"@jupyterlab/coreutils": "^5.1.13",
"@jupyterlab/services": "^6.1.13",
"@jupyterlab/statedb": "^3.1.13",
"@lumino/coreutils": "^1.5.3"
}
},
"@jupyterlab/ui-components": {
"version": "3.1.13",
"resolved": "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-3.1.13.tgz",
"integrity": "sha512-BZfCUlrNmL1iV9oHmJgLL6SPXOUJYV77okV7IKarel/4nt9dM/sJOdvVC7B6SwfjBiB+cPvVwQdVjbwVbYRjWg==",
"requires": {
"@blueprintjs/core": "^3.36.0",
"@blueprintjs/select": "^3.15.0",
"@jupyterlab/coreutils": "^5.1.13",
"@lumino/algorithm": "^1.3.3",
"@lumino/commands": "^1.12.0",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"@lumino/virtualdom": "^1.8.0",
"@lumino/widgets": "^1.19.0",
"react": "^17.0.1",