-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage-lock.json
7752 lines (7752 loc) · 301 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": "AWSConnector",
"version": "0.1.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@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/helper-validator-identifier": {
"version": "7.14.0",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz",
"integrity": "sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A==",
"dev": true
},
"@babel/highlight": {
"version": "7.14.0",
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.0.tgz",
"integrity": "sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg==",
"dev": true,
"requires": {
"@babel/helper-validator-identifier": "^7.14.0",
"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"
}
},
"color-convert": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
"dev": true,
"requires": {
"color-name": "1.1.3"
}
},
"color-name": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
"dev": true
},
"escape-string-regexp": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
"dev": true
},
"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/runtime": {
"version": "7.14.0",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.14.0.tgz",
"integrity": "sha512-JELkvo/DlpNdJ7dlyw/eY7E0suy5i5GQH+Vlxaq1nsNJ+H7f4Vtv3jMeCEgRhZZQFXTjldYfQgv2qmM6M1v5wA==",
"requires": {
"regenerator-runtime": "^0.13.4"
}
},
"@blueprintjs/core": {
"version": "3.44.3",
"resolved": "https://registry.npmjs.org/@blueprintjs/core/-/core-3.44.3.tgz",
"integrity": "sha512-95BYF5xI7d47jKJKQFXJ+UkJ8pS6qT6/U4Hj/UCuHPJhtBTfUQKaCeHYroA+LtCAEEb9p9oFkQwlXI+QHMmZeA==",
"requires": {
"@blueprintjs/icons": "^3.26.1",
"@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"
}
},
"@blueprintjs/icons": {
"version": "3.26.1",
"resolved": "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.26.1.tgz",
"integrity": "sha512-qxAnqhzt5WqYuWN+7p3Pk7bOrhj56YXzD8n79Met8+VIQ14IpKnxr7YAYmNB5X/dVweqXpEk6tKyUjnDjBhulw==",
"requires": {
"classnames": "^2.2",
"tslib": "~1.13.0"
}
},
"@blueprintjs/select": {
"version": "3.16.3",
"resolved": "https://registry.npmjs.org/@blueprintjs/select/-/select-3.16.3.tgz",
"integrity": "sha512-V7agrVgvWVFyRXUv8OFjTJB5ZfUnYAAqzxvpdx6WQcdQTkMjRD0B7pWcZol+grbP1MJGFVAXP1Mqj2PW3BVCbg==",
"requires": {
"@blueprintjs/core": "^3.44.3",
"classnames": "^2.2",
"tslib": "~1.13.0"
}
},
"@discoveryjs/json-ext": {
"version": "0.5.5",
"resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.5.tgz",
"integrity": "sha512-6nFkfkmSeV/rqSaS4oWHgmpnYw194f6hmWF5is6b0J1naJZoiD0NTc9AiUwPHvWsowkjuHErCZT1wa0jg+BLIA==",
"dev": true
},
"@eslint/eslintrc": {
"version": "0.4.1",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.1.tgz",
"integrity": "sha512-5v7TDE9plVhvxQeWLXDTvFvJBdH6pEsdnl2g/dAptmuFEPedQ4Erq5rsDsX+mvAM610IhNaO2W5V1dOOnDKxkQ==",
"dev": true,
"requires": {
"ajv": "^6.12.4",
"debug": "^4.1.1",
"espree": "^7.3.0",
"globals": "^12.1.0",
"ignore": "^4.0.6",
"import-fresh": "^3.2.1",
"js-yaml": "^3.13.1",
"minimatch": "^3.0.4",
"strip-json-comments": "^3.1.1"
},
"dependencies": {
"globals": {
"version": "12.4.0",
"resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz",
"integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==",
"dev": true,
"requires": {
"type-fest": "^0.8.1"
}
},
"ignore": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz",
"integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==",
"dev": true
},
"strip-json-comments": {
"version": "3.1.1",
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
"dev": true
},
"type-fest": {
"version": "0.8.1",
"resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz",
"integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==",
"dev": true
}
}
},
"@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=="
},
"@gar/promisify": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz",
"integrity": "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==",
"dev": true
},
"@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"
}
},
"@jupyterlab/application": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/application/-/application-3.2.3.tgz",
"integrity": "sha512-YcgxgRiYHOaUMbxevcUQn8QP0WN2JsCg4Q7Qtl1JOypLTsvoC66yqTzXcWsR/xtPUB4Ox0ka/EBGRHrH5aHA/g==",
"requires": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@jupyterlab/apputils": "^3.2.3",
"@jupyterlab/coreutils": "^5.2.3",
"@jupyterlab/docregistry": "^3.2.3",
"@jupyterlab/rendermime": "^3.2.3",
"@jupyterlab/rendermime-interfaces": "^3.2.3",
"@jupyterlab/services": "^6.2.3",
"@jupyterlab/statedb": "^3.2.3",
"@jupyterlab/translation": "^3.2.3",
"@jupyterlab/ui-components": "^3.2.3",
"@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"
},
"dependencies": {
"@jupyterlab/apputils": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-3.2.3.tgz",
"integrity": "sha512-Mar07EgmCqS+Y1xPeAaUOZshEaLCNrIXilcBWyCGYfspvZv7W1ERGYsomy9ZMhlHmEaOcT1n4Y8T/iE6l/0gLQ==",
"requires": {
"@jupyterlab/coreutils": "^5.2.3",
"@jupyterlab/services": "^6.2.3",
"@jupyterlab/settingregistry": "^3.2.3",
"@jupyterlab/statedb": "^3.2.3",
"@jupyterlab/translation": "^3.2.3",
"@jupyterlab/ui-components": "^3.2.3",
"@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/polling": "^1.3.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"
}
},
"@jupyterlab/codeeditor": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-3.2.3.tgz",
"integrity": "sha512-uPN6j7emO9uv777Eh4yeNHgAMUdKViDdnoK1cw0Snhf0O2wmPbqygMsCyfZ9cmDzOGPvB7NbVbsDkXLQgzoJpQ==",
"requires": {
"@jupyterlab/coreutils": "^5.2.3",
"@jupyterlab/nbformat": "^3.2.3",
"@jupyterlab/observables": "^4.2.3",
"@jupyterlab/shared-models": "^3.2.3",
"@jupyterlab/translation": "^3.2.3",
"@jupyterlab/ui-components": "^3.2.3",
"@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.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-3.2.3.tgz",
"integrity": "sha512-PwsxhPINXOW4naMkkQrAxwB/S9kZYEa/2fKetEpGcoI9zX691gxw8Am4fjBo94JBYftw7JG6pNpVcUovm0Q7ZQ==",
"requires": {
"@jupyterlab/apputils": "^3.2.3",
"@jupyterlab/codeeditor": "^3.2.3",
"@jupyterlab/coreutils": "^5.2.3",
"@jupyterlab/nbformat": "^3.2.3",
"@jupyterlab/observables": "^4.2.3",
"@jupyterlab/shared-models": "^3.2.3",
"@jupyterlab/statusbar": "^3.2.3",
"@jupyterlab/translation": "^3.2.3",
"@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": "^3.0.0"
}
},
"@jupyterlab/coreutils": {
"version": "5.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-5.2.3.tgz",
"integrity": "sha512-NoxK4r8VPX1Z/Fe9q+00tGTeY73sywSS0s0HObZCp9a7OScamnpxonHZ5ptms1XXHtr93uLgwkfROpQNFOYF3w==",
"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"
}
},
"@jupyterlab/docregistry": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-3.2.3.tgz",
"integrity": "sha512-wHBetaMVGsw9+ryFDm9GyroveOsTL4HO5Entpjseqa/dDkbIjS9r3f5Q2+lONdmZaCMkBFAZmIZmR4c0bCi8qg==",
"requires": {
"@jupyterlab/apputils": "^3.2.3",
"@jupyterlab/codeeditor": "^3.2.3",
"@jupyterlab/codemirror": "^3.2.3",
"@jupyterlab/coreutils": "^5.2.3",
"@jupyterlab/docprovider": "^3.2.3",
"@jupyterlab/observables": "^4.2.3",
"@jupyterlab/rendermime": "^3.2.3",
"@jupyterlab/rendermime-interfaces": "^3.2.3",
"@jupyterlab/services": "^6.2.3",
"@jupyterlab/shared-models": "^3.2.3",
"@jupyterlab/translation": "^3.2.3",
"@jupyterlab/ui-components": "^3.2.3",
"@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.17"
}
},
"@jupyterlab/nbformat": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-3.2.3.tgz",
"integrity": "sha512-ywsXaeBVrEVyvyOkFhqcWlOHge1gsSrTOnF7v8c7ENcwDf1aU73Koa+RFoNom5LopJBlgu5yzHQaSCI9Jist+g==",
"requires": {
"@lumino/coreutils": "^1.5.3"
}
},
"@jupyterlab/observables": {
"version": "4.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/observables/-/observables-4.2.3.tgz",
"integrity": "sha512-0zw4+KfhFXYPAGbh9WFUp5s4h7nDoDtizWYACN/LQ67BF0E7gz70QDj/1VClc1roYA7yUEPVomZfUKQZ3sFZ9g==",
"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/rendermime": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-3.2.3.tgz",
"integrity": "sha512-/pciOXHkU3HyhkJT8EuRQgWa6Cc248D41KH6IqyiLQv5DHi/wYWkXXBZhiVPX/gDkT1owf5Wr3i5h/NbMfozEw==",
"requires": {
"@jupyterlab/apputils": "^3.2.3",
"@jupyterlab/codemirror": "^3.2.3",
"@jupyterlab/coreutils": "^5.2.3",
"@jupyterlab/nbformat": "^3.2.3",
"@jupyterlab/observables": "^4.2.3",
"@jupyterlab/rendermime-interfaces": "^3.2.3",
"@jupyterlab/services": "^6.2.3",
"@jupyterlab/translation": "^3.2.3",
"@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.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.2.3.tgz",
"integrity": "sha512-NQz/0Iz+E5VlbffrmtLENXZCAMU8ihZSz4PYhQRFMEkpsrpRelHLxxG+0vSeZpWG94abSuboSs5tgIUFGPNf7A==",
"requires": {
"@jupyterlab/translation": "^3.2.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/widgets": "^1.19.0"
}
},
"@jupyterlab/services": {
"version": "6.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-6.2.3.tgz",
"integrity": "sha512-ckhZfBmveQzQnsGcf9Ka6A1Rr+Lj5PSzn6yHQktMdP8PXdTag4y3IIV/6MAtNAnuKrbArwUrHGiSmUtZD7lylA==",
"requires": {
"@jupyterlab/coreutils": "^5.2.3",
"@jupyterlab/nbformat": "^3.2.3",
"@jupyterlab/observables": "^4.2.3",
"@jupyterlab/settingregistry": "^3.2.3",
"@jupyterlab/statedb": "^3.2.3",
"@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.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-3.2.3.tgz",
"integrity": "sha512-z+//IitEe82gD5ZTQkMiIb13/d0CACyW5TKdgp0A3CfK9TZuSFyVMd4j2YrWevWDVuisHU5n8fLuN57S/d9fRw==",
"requires": {
"@jupyterlab/statedb": "^3.2.3",
"@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/statedb": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-3.2.3.tgz",
"integrity": "sha512-pQmZwgaxXLQPtN7milGedOh/4t34HkxOqhJW0GjL8lWhkxuvjWdZHrnwOclj0HScp4bXj9puMn8/MDPUx32mbg==",
"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.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-3.2.3.tgz",
"integrity": "sha512-hyrVaKQ2qJiY18i+MtqU8QwWpar8CaCRXriWLoGjiqGy0V/21z72T1BJidwB/dVvCf2RcMYdM9scnNHYasT5KA==",
"requires": {
"@jupyterlab/apputils": "^3.2.3",
"@jupyterlab/codeeditor": "^3.2.3",
"@jupyterlab/services": "^6.2.3",
"@jupyterlab/translation": "^3.2.3",
"@jupyterlab/ui-components": "^3.2.3",
"@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"
}
},
"@jupyterlab/translation": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/translation/-/translation-3.2.3.tgz",
"integrity": "sha512-1pjLSbKhfAK0pZwd0iSCpMgJO4RB7wvrbpw8RC3vwhXYoRV5YTmqwIt4e3n/O1FUzG8UxD+XWeZqlBCbpAsQ3Q==",
"requires": {
"@jupyterlab/coreutils": "^5.2.3",
"@jupyterlab/services": "^6.2.3",
"@jupyterlab/statedb": "^3.2.3",
"@lumino/coreutils": "^1.5.3"
}
},
"@jupyterlab/ui-components": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-3.2.3.tgz",
"integrity": "sha512-DWS/kasCoWzE9tK/GJtIO3F9nZGkZOCAA+YiZwJbHqwZhHcpVP/RrzSYFQdQSOpTd2yPumprDhjID4Wcsgk6Fw==",
"requires": {
"@blueprintjs/core": "^3.36.0",
"@blueprintjs/select": "^3.15.0",
"@jupyterlab/coreutils": "^5.2.3",
"@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",
"react-dom": "^17.0.1",
"typestyle": "^2.0.4"
}
},
"codemirror": {
"version": "5.61.1",
"resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.61.1.tgz",
"integrity": "sha512-+D1NZjAucuzE93vJGbAaXzvoBHwp9nJZWWWF9utjv25+5AZUiah6CIlfb4ikG4MoDsFsCG8niiJH5++OO2LgIQ=="
},
"csstype": {
"version": "3.0.10",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz",
"integrity": "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA=="
},
"ws": {
"version": "7.5.5",
"resolved": "https://registry.npmjs.org/ws/-/ws-7.5.5.tgz",
"integrity": "sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w=="
}
}
},
"@jupyterlab/apputils": {
"version": "3.0.9",
"resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-3.0.9.tgz",
"integrity": "sha512-fsJjl+NX2+e+1FM7SMfpI1VsaPQsaIPnPGsdpQoboJJqdQJHuj1oPXNwc/aI1daEElirB15fYGCUGc2oUrv6RQ==",
"requires": {
"@jupyterlab/coreutils": "^5.0.6",
"@jupyterlab/services": "^6.0.9",
"@jupyterlab/settingregistry": "^3.0.6",
"@jupyterlab/statedb": "^3.0.6",
"@jupyterlab/translation": "^3.0.9",
"@jupyterlab/ui-components": "^3.0.7",
"@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.16.1",
"@types/react": "^17.0.0",
"buffer": "^5.6.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sanitize-html": "~2.3.3",
"url": "^0.11.0"
}
},
"@jupyterlab/attachments": {
"version": "3.0.10",
"resolved": "https://registry.npmjs.org/@jupyterlab/attachments/-/attachments-3.0.10.tgz",
"integrity": "sha512-o/CF7kF9NOCRp2+N+lkki0xJzG6znbJBtH70NTJ2lvyI2yzlbAr9TvIQWDCKLplb3n0UvmH6RDMaf+nB7NfhmQ==",
"requires": {
"@jupyterlab/nbformat": "^3.0.6",
"@jupyterlab/observables": "^4.0.6",
"@jupyterlab/rendermime": "^3.0.10",
"@jupyterlab/rendermime-interfaces": "^3.0.9",
"@lumino/disposable": "^1.4.3",
"@lumino/signaling": "^1.4.3"
}
},
"@jupyterlab/builder": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/builder/-/builder-3.2.3.tgz",
"integrity": "sha512-pIzNrmXLgkhKH9CH1tTxEMg6zO1RP2TAel6NVy8GPez6fLPVVpI1bKXn7uP1SjTJaEhAednwEjln+QMzR3revQ==",
"dev": true,
"requires": {
"@jupyterlab/buildutils": "^3.2.3",
"@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/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",
"ajv": "^6.12.3",
"commander": "~6.0.0",
"css-loader": "^5.0.1",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"file-loader": "~6.0.0",
"fs-extra": "^9.0.1",
"glob": "~7.1.6",
"license-webpack-plugin": "^2.3.14",
"mini-css-extract-plugin": "~1.3.2",
"path-browserify": "^1.0.0",
"process": "^0.11.10",
"raw-loader": "~4.0.0",
"style-loader": "~2.0.0",
"supports-color": "^7.2.0",
"svg-url-loader": "~6.0.0",
"terser-webpack-plugin": "^4.1.0",
"to-string-loader": "^1.1.6",
"url-loader": "~4.1.0",
"webpack": "^5.41.1",
"webpack-cli": "^4.1.0",
"webpack-merge": "^5.1.2",
"worker-loader": "^3.0.2"
}
},
"@jupyterlab/buildutils": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/buildutils/-/buildutils-3.2.3.tgz",
"integrity": "sha512-4mXEmPKsxja+1SLumcu1T9QYc+CiCQWUyjDsuGEAKBys56chnTrFERzR9XJrPXJTUnif5dzdyIIte0sptwD6Gw==",
"dev": true,
"requires": {
"@lumino/coreutils": "^1.5.3",
"@yarnpkg/lockfile": "^1.1.0",
"child_process": "~1.0.2",
"commander": "~6.0.0",
"crypto": "~1.0.1",
"dependency-graph": "^0.9.0",
"fs-extra": "^9.0.1",
"glob": "~7.1.6",
"inquirer": "^7.1.0",
"minimatch": "~3.0.4",
"os": "~0.1.1",
"package-json": "^6.5.0",
"prettier": "~2.1.1",
"process": "^0.11.10",
"semver": "^7.3.2",
"sort-package-json": "~1.44.0",
"typescript": "~4.1.3",
"verdaccio": "^5.1.1"
},
"dependencies": {
"prettier": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.1.2.tgz",
"integrity": "sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==",
"dev": true
}
}
},
"@jupyterlab/cells": {
"version": "3.0.11",
"resolved": "https://registry.npmjs.org/@jupyterlab/cells/-/cells-3.0.11.tgz",
"integrity": "sha512-mDnHzm2HhY3OZazgC1XIE0HG553nNutX3AESPXvnioLfFZfHz1RzijceUs8+jYx1Hl27UZuL9Ah/1J2NZuDqfg==",
"requires": {
"@jupyterlab/apputils": "^3.0.9",
"@jupyterlab/attachments": "^3.0.10",
"@jupyterlab/codeeditor": "^3.0.9",
"@jupyterlab/codemirror": "^3.0.9",
"@jupyterlab/coreutils": "^5.0.6",
"@jupyterlab/filebrowser": "^3.0.11",
"@jupyterlab/nbformat": "^3.0.6",
"@jupyterlab/observables": "^4.0.6",
"@jupyterlab/outputarea": "^3.0.10",
"@jupyterlab/rendermime": "^3.0.10",
"@jupyterlab/services": "^6.0.9",
"@jupyterlab/ui-components": "^3.0.7",
"@lumino/algorithm": "^1.3.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/dragdrop": "^1.7.1",
"@lumino/messaging": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"@lumino/virtualdom": "^1.8.0",
"@lumino/widgets": "^1.16.1",
"react": "^17.0.1"
}
},
"@jupyterlab/codeeditor": {
"version": "3.0.9",
"resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-3.0.9.tgz",
"integrity": "sha512-OUymghTH6CsAXc4z8EA7BqwdT99mdjJ/X488EOgXCBgeKz3QKB1gQ3GpH26soUv4S0prAs8RKU7rHjfb+DLYBQ==",
"requires": {
"@jupyterlab/coreutils": "^5.0.6",
"@jupyterlab/nbformat": "^3.0.6",
"@jupyterlab/observables": "^4.0.6",
"@jupyterlab/translation": "^3.0.9",
"@jupyterlab/ui-components": "^3.0.7",
"@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.16.1"
}
},
"@jupyterlab/codemirror": {
"version": "3.0.9",
"resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-3.0.9.tgz",
"integrity": "sha512-RgB4ZS1Rhzvk20VDvnP7oQ8Bh9fC0dWDO/hZZwLJamlJLgtQNsCnU3Qw/K2dxhCMWBexI3n+E+0mcv1IXbEtLQ==",
"requires": {
"@jupyterlab/apputils": "^3.0.9",
"@jupyterlab/codeeditor": "^3.0.9",
"@jupyterlab/coreutils": "^5.0.6",
"@jupyterlab/nbformat": "^3.0.6",
"@jupyterlab/observables": "^4.0.6",
"@jupyterlab/statusbar": "^3.0.9",
"@jupyterlab/translation": "^3.0.9",
"@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.16.1",
"codemirror": "~5.58.0",
"react": "^17.0.1"
}
},
"@jupyterlab/coreutils": {
"version": "5.0.6",
"resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-5.0.6.tgz",
"integrity": "sha512-nXGpI1IJw+4pNq6Afy+oI3LrTsaQ14xG7Kxbhg9UPfoDgsNt2rdG4pwYe4NZyj2GJHAkUj00lcUD9eBTrxMWvw==",
"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"
}
},
"@jupyterlab/docmanager": {
"version": "3.0.11",
"resolved": "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-3.0.11.tgz",
"integrity": "sha512-TCMw9eHOeWyOkg5MoSL8GbrqBRbnvP6TrR4q8k6YHntVOCZc3uTBZ0PIWuY0dxNXw0vhJGd0W5OBqquY5btVCw==",
"requires": {
"@jupyterlab/apputils": "^3.0.9",
"@jupyterlab/coreutils": "^5.0.6",
"@jupyterlab/docregistry": "^3.0.11",
"@jupyterlab/services": "^6.0.9",
"@jupyterlab/statusbar": "^3.0.9",
"@jupyterlab/translation": "^3.0.9",
"@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.16.1",
"react": "^17.0.1"
}
},
"@jupyterlab/docprovider": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/docprovider/-/docprovider-3.2.3.tgz",
"integrity": "sha512-cqtVuSIQL3HMM1qeoasSNKmdLYAhtSFr4kO9KaTI9I0DEfD6XeI1Y5e5tsK8bpkv0QgsYPQb8lUIgNztzG+m+w==",
"requires": {
"@jupyterlab/shared-models": "^3.2.3",
"@lumino/coreutils": "^1.5.3",
"lib0": "^0.2.42",
"y-websocket": "^1.3.15",
"yjs": "^13.5.17"
}
},
"@jupyterlab/docregistry": {
"version": "3.0.11",
"resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-3.0.11.tgz",
"integrity": "sha512-kx+ZXgM2UcBXvy+LDwGOVa/zP3+CjKMj0jM5qaUW+sHFZzkFIV/ke/MuiX2p6J+78s2VY5Hyy2Tq07jZhMEACg==",
"requires": {
"@jupyterlab/apputils": "^3.0.9",
"@jupyterlab/codeeditor": "^3.0.9",
"@jupyterlab/codemirror": "^3.0.9",
"@jupyterlab/coreutils": "^5.0.6",
"@jupyterlab/observables": "^4.0.6",
"@jupyterlab/rendermime": "^3.0.10",
"@jupyterlab/rendermime-interfaces": "^3.0.9",
"@jupyterlab/services": "^6.0.9",
"@jupyterlab/translation": "^3.0.9",
"@jupyterlab/ui-components": "^3.0.7",
"@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.16.1"
}
},
"@jupyterlab/filebrowser": {
"version": "3.0.11",
"resolved": "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-3.0.11.tgz",
"integrity": "sha512-64K/acTwS4ABCmWyBKNDztypA+WtjU8dFA6yfXSE1TE6gryDwEcFGmUdvTGLQ5WihK5XmM7rEi7ZlJ05mhJ7UQ==",
"requires": {
"@jupyterlab/apputils": "^3.0.9",
"@jupyterlab/coreutils": "^5.0.6",
"@jupyterlab/docmanager": "^3.0.11",
"@jupyterlab/docregistry": "^3.0.11",
"@jupyterlab/services": "^6.0.9",
"@jupyterlab/statedb": "^3.0.6",
"@jupyterlab/statusbar": "^3.0.9",
"@jupyterlab/translation": "^3.0.9",
"@jupyterlab/ui-components": "^3.0.7",
"@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.16.1",
"react": "^17.0.1"
}
},
"@jupyterlab/nbformat": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-3.0.6.tgz",
"integrity": "sha512-4+u770JYPmRpLyEPpnG0crj8ePUkg/vCF1W4hnDDxnLTVjzKw5kv6KVb5yJGEHAihUOf51bjceNUOp/+nLVBTg==",
"requires": {
"@lumino/coreutils": "^1.5.3"
}
},
"@jupyterlab/notebook": {
"version": "3.0.11",
"resolved": "https://registry.npmjs.org/@jupyterlab/notebook/-/notebook-3.0.11.tgz",
"integrity": "sha512-e92hjd0ebwxoAOfm2efy1WQVvgTKXfxeHuaf0CkH/fLBmT8WU7f1rz8n39ycaxRon5QOF8ugDK0Sbu7uq2IkwA==",
"requires": {
"@jupyterlab/apputils": "^3.0.9",
"@jupyterlab/cells": "^3.0.11",
"@jupyterlab/codeeditor": "^3.0.9",
"@jupyterlab/coreutils": "^5.0.6",
"@jupyterlab/docregistry": "^3.0.11",
"@jupyterlab/nbformat": "^3.0.6",
"@jupyterlab/observables": "^4.0.6",
"@jupyterlab/rendermime": "^3.0.10",
"@jupyterlab/services": "^6.0.9",
"@jupyterlab/statusbar": "^3.0.9",
"@jupyterlab/translation": "^3.0.9",
"@jupyterlab/ui-components": "^3.0.7",
"@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.16.1",
"react": "^17.0.1"
}
},
"@jupyterlab/observables": {
"version": "4.0.6",
"resolved": "https://registry.npmjs.org/@jupyterlab/observables/-/observables-4.0.6.tgz",
"integrity": "sha512-PYJosNXGSkLExaEXqpUuDjEXTEcxTpvM6kG8I6NFJyDQVD6E50LggC6NofY5EIcEsJsO771BLvI4kwNk7LRQSA==",
"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.0.10",
"resolved": "https://registry.npmjs.org/@jupyterlab/outputarea/-/outputarea-3.0.10.tgz",
"integrity": "sha512-GW2/q9ShK7rSEKA2KeMKT+FiAZkRmOeSQ0PYhXjjrMNFPPTURtzuztMRF7NMVH1QWiYABn03qx1IKHvt1hvdDQ==",
"requires": {
"@jupyterlab/apputils": "^3.0.9",
"@jupyterlab/nbformat": "^3.0.6",
"@jupyterlab/observables": "^4.0.6",
"@jupyterlab/rendermime": "^3.0.10",
"@jupyterlab/rendermime-interfaces": "^3.0.9",
"@jupyterlab/services": "^6.0.9",
"@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.16.1",
"resize-observer-polyfill": "^1.5.1"
}
},
"@jupyterlab/rendermime": {
"version": "3.0.10",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-3.0.10.tgz",
"integrity": "sha512-9Q32zYpBkbrlAkuHJ7760ZETWQYZkKT9UcJWOMVF7iNgoBfRohAYvPHsoc6JFZyFEFhKzkLwa+CTcL48aGjg7A==",
"requires": {
"@jupyterlab/apputils": "^3.0.9",
"@jupyterlab/codemirror": "^3.0.9",
"@jupyterlab/coreutils": "^5.0.6",
"@jupyterlab/nbformat": "^3.0.6",
"@jupyterlab/observables": "^4.0.6",
"@jupyterlab/rendermime-interfaces": "^3.0.9",
"@jupyterlab/services": "^6.0.9",
"@jupyterlab/translation": "^3.0.9",
"@lumino/algorithm": "^1.3.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/messaging": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"@lumino/widgets": "^1.16.1",
"lodash.escape": "^4.0.1",
"marked": "^2.0.0"
}
},
"@jupyterlab/rendermime-interfaces": {
"version": "3.0.9",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.0.9.tgz",
"integrity": "sha512-KvoDcIzgvDhvCGDYqFhRM753iOryWFujAEzXjpzvYz/1yNUh5weYsdwdmdCjUTkToM9rFiIDMwjferJPU54thw==",
"requires": {
"@jupyterlab/translation": "^3.0.9",
"@lumino/coreutils": "^1.5.3",
"@lumino/widgets": "^1.16.1"
}
},
"@jupyterlab/services": {
"version": "6.0.9",
"resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-6.0.9.tgz",
"integrity": "sha512-zeN9roqwbYo6b2I5BXWx+Mr4KzTpe2UcVwrcAGw9NXqIieb0ZnvtHqtNj/vcHCM2xQKuPup9W1X1bE5b3wF5Yw==",
"requires": {
"@jupyterlab/coreutils": "^5.0.6",
"@jupyterlab/nbformat": "^3.0.6",
"@jupyterlab/observables": "^4.0.6",
"@jupyterlab/settingregistry": "^3.0.6",
"@jupyterlab/statedb": "^3.0.6",
"@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.2.0"
}
},
"@jupyterlab/settingregistry": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-3.0.6.tgz",
"integrity": "sha512-fIeVJjkaf8FYSJ4jwJobwNeco8J2CEuWzmEJKiDjhmzmRZApS9Jjx+CJXDkTxoSMDQ41ELxQKJq5bcbih/90zQ==",
"requires": {
"@jupyterlab/statedb": "^3.0.6",
"@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.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/shared-models/-/shared-models-3.2.3.tgz",
"integrity": "sha512-nNQQeQ4d2UK0DwnUyn1IPgJ1eYRsBkoz5zj/nH+WxjscWIA8ldz295l7HGQNcXlO5tvLFTQMZ7nC1XVcko76iA==",
"requires": {
"@jupyterlab/nbformat": "^3.2.3",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"y-protocols": "^1.0.5",
"yjs": "^13.5.17"
},
"dependencies": {
"@jupyterlab/nbformat": {
"version": "3.2.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-3.2.3.tgz",
"integrity": "sha512-ywsXaeBVrEVyvyOkFhqcWlOHge1gsSrTOnF7v8c7ENcwDf1aU73Koa+RFoNom5LopJBlgu5yzHQaSCI9Jist+g==",
"requires": {
"@lumino/coreutils": "^1.5.3"
}
}
}
},
"@jupyterlab/statedb": {
"version": "3.0.6",
"resolved": "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-3.0.6.tgz",
"integrity": "sha512-hXewp5TAKneWJcYXenTZuzSUagGjyWv5vRHDFarw1O4pkEg7zz8IyN2yAvbYH6+GDqIhF/91rgGu9alkx/yjjA==",
"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.0.9",
"resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-3.0.9.tgz",
"integrity": "sha512-MaA6GVi59mH3YRkV5iJPcpdS9opMTgFvcfMQLzKeMJvEQvM2fFGMVixp+q2U6Pa8iJsCp59CUoTyuQQdkw1UFw==",
"requires": {
"@jupyterlab/apputils": "^3.0.9",
"@jupyterlab/codeeditor": "^3.0.9",
"@jupyterlab/coreutils": "^5.0.6",
"@jupyterlab/services": "^6.0.9",
"@jupyterlab/translation": "^3.0.9",
"@jupyterlab/ui-components": "^3.0.7",
"@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.16.1",
"csstype": "~3.0.3",
"react": "^17.0.1",
"typestyle": "^2.0.4"
},
"dependencies": {
"csstype": {
"version": "3.0.8",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.8.tgz",
"integrity": "sha512-jXKhWqXPmlUeoQnF/EhTtTl4C9SnrxSH/jZUih3jmO6lBKr99rP3/+FmrMj4EFpOXzMtXHAZkd3x0E6h6Fgflw=="
}
}
},
"@jupyterlab/translation": {
"version": "3.0.9",
"resolved": "https://registry.npmjs.org/@jupyterlab/translation/-/translation-3.0.9.tgz",
"integrity": "sha512-XsIUt08HDpA2zqhJFmNV9iuxMriV4sAdx4rM1rA0tEUuvWSXerLvpzNUw4LAz+iaJgyUgqqV1gKrOgoMTjtvWA==",