-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage-lock.json
3719 lines (3719 loc) · 145 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": "jupyterlab_3dmol",
"version": "0.1.3",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "jupyterlab_3dmol",
"version": "0.1.3",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/application": "^3.2.5",
"@jupyterlab/docregistry": "^3.2.5",
"@jupyterlab/notebook": "^3.2.5",
"@jupyterlab/rendermime-interfaces": "^3.2.5",
"@jupyterlab/services": "^6.2.5",
"@lumino/coreutils": "^1.3.1",
"@lumino/widgets": "^1.9.3"
},
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "~4.1.3"
}
},
"node_modules/@babel/runtime": {
"version": "7.16.7",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz",
"integrity": "sha512-9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ==",
"dependencies": {
"regenerator-runtime": "^0.13.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@blueprintjs/colors": {
"version": "4.0.0-alpha.2",
"resolved": "https://registry.npmjs.org/@blueprintjs/colors/-/colors-4.0.0-alpha.2.tgz",
"integrity": "sha512-B8NX2oKVTPGVJd7ZCbm9FMPoEdQiLKceo0/UxsJ+gwqNiuo45RzdmrXACI6oFO4hGHL2WiLU0oysLNj2zpHDkA=="
},
"node_modules/@blueprintjs/core": {
"version": "3.52.0",
"resolved": "https://registry.npmjs.org/@blueprintjs/core/-/core-3.52.0.tgz",
"integrity": "sha512-92Tsr0uw1ey8ZsdYSfPyeN1hbjI8PC+HWyXUSNG+nM4g5AYTuKXVXKTxxGBtZN9hG2LlmUld8YIMFWtuLBErDQ==",
"dependencies": {
"@blueprintjs/colors": "^4.0.0-alpha.2",
"@blueprintjs/icons": "^3.31.0",
"@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"
},
"bin": {
"upgrade-blueprint-2.0.0-rename": "scripts/upgrade-blueprint-2.0.0-rename.sh",
"upgrade-blueprint-3.0.0-rename": "scripts/upgrade-blueprint-3.0.0-rename.sh"
},
"peerDependencies": {
"react": "^15.3.0 || 16 || 17",
"react-dom": "^15.3.0 || 16 || 17"
}
},
"node_modules/@blueprintjs/icons": {
"version": "3.31.0",
"resolved": "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.31.0.tgz",
"integrity": "sha512-6pXhHC8zEvoDKN5KNsIHNuCRKsemmRbXNv1jweB95VaFzR1M+Mik+Qi+13Wd+VtZrzes2ZcWttIeyuK91NoLCw==",
"dependencies": {
"classnames": "^2.2",
"tslib": "~1.13.0"
}
},
"node_modules/@blueprintjs/select": {
"version": "3.18.11",
"resolved": "https://registry.npmjs.org/@blueprintjs/select/-/select-3.18.11.tgz",
"integrity": "sha512-pEwx/ioJ7JxQV3abTlLx2+4RghCeYKTzT2QLf7Wr5a5CrLilz/utQ3jMSG0hlS6HM4/5q4zSclkVsI3zv+Tp3w==",
"dependencies": {
"@blueprintjs/core": "^3.52.0",
"classnames": "^2.2",
"tslib": "~1.13.0"
},
"peerDependencies": {
"react": "^15.3.0 || 16 || 17",
"react-dom": "^15.3.0 || 16 || 17"
}
},
"node_modules/@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==",
"hasInstallScript": true,
"engines": {
"node": ">=6"
}
},
"node_modules/@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==",
"dependencies": {
"gud": "^1.0.0",
"warning": "^4.0.3"
},
"peerDependencies": {
"prop-types": "^15.0.0",
"react": ">=0.14.0"
}
},
"node_modules/@jupyterlab/application": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/application/-/application-3.2.5.tgz",
"integrity": "sha512-4sjbmHqqf2rOCG+/zzT5irdlMsS+pPTMPSoUR9bnDFH57D/skZrXW+rAIk+ttI9sylYKPXoqWWSYUWPPK7m63w==",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@jupyterlab/apputils": "^3.2.5",
"@jupyterlab/coreutils": "^5.2.5",
"@jupyterlab/docregistry": "^3.2.5",
"@jupyterlab/rendermime": "^3.2.5",
"@jupyterlab/rendermime-interfaces": "^3.2.5",
"@jupyterlab/services": "^6.2.5",
"@jupyterlab/statedb": "^3.2.5",
"@jupyterlab/translation": "^3.2.5",
"@jupyterlab/ui-components": "^3.2.5",
"@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"
}
},
"node_modules/@jupyterlab/apputils": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-3.2.5.tgz",
"integrity": "sha512-8sOqI34rP9oOghmhUOGuKFryWsrsn4mU1fhuas+96FY5okacvk8ybhGkGoNoRhxI2my8QBjfk60IsZjI9Pemqw==",
"dependencies": {
"@jupyterlab/coreutils": "^5.2.5",
"@jupyterlab/services": "^6.2.5",
"@jupyterlab/settingregistry": "^3.2.5",
"@jupyterlab/statedb": "^3.2.5",
"@jupyterlab/translation": "^3.2.5",
"@jupyterlab/ui-components": "^3.2.5",
"@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.5.3",
"url": "^0.11.0"
}
},
"node_modules/@jupyterlab/attachments": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/attachments/-/attachments-3.2.5.tgz",
"integrity": "sha512-5fyDLZ5rZnqOBlBFo8APUP16OIi84AqMF20PE/Fmz06i0fHaKPWTecJpXsb2EA7XPdi5b76M+8eAc9GQqH0LUQ==",
"dependencies": {
"@jupyterlab/nbformat": "^3.2.5",
"@jupyterlab/observables": "^4.2.5",
"@jupyterlab/rendermime": "^3.2.5",
"@jupyterlab/rendermime-interfaces": "^3.2.5",
"@lumino/disposable": "^1.4.3",
"@lumino/signaling": "^1.4.3"
}
},
"node_modules/@jupyterlab/cells": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/cells/-/cells-3.2.5.tgz",
"integrity": "sha512-JpNBMkyQ4prmtrvC4TVEJVsM8L1ohDyHxDlzEVwHBdUCz8jwY0rZ96YYqz0PnSDiTDx8UYzlIKeoSh4J5qP/Yw==",
"dependencies": {
"@jupyterlab/apputils": "^3.2.5",
"@jupyterlab/attachments": "^3.2.5",
"@jupyterlab/codeeditor": "^3.2.5",
"@jupyterlab/codemirror": "^3.2.5",
"@jupyterlab/coreutils": "^5.2.5",
"@jupyterlab/filebrowser": "^3.2.5",
"@jupyterlab/nbformat": "^3.2.5",
"@jupyterlab/observables": "^4.2.5",
"@jupyterlab/outputarea": "^3.2.5",
"@jupyterlab/rendermime": "^3.2.5",
"@jupyterlab/services": "^6.2.5",
"@jupyterlab/shared-models": "^3.2.5",
"@jupyterlab/ui-components": "^3.2.5",
"@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"
}
},
"node_modules/@jupyterlab/codeeditor": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-3.2.5.tgz",
"integrity": "sha512-SSJA86zJ4/j/LetIGx8IZRkG9MfmHB+Ulgy1PYB6YdJPcAsKbuDdsSmQU+xpxcJSGIALTB/oEZxFY0SaTb0r3Q==",
"dependencies": {
"@jupyterlab/coreutils": "^5.2.5",
"@jupyterlab/nbformat": "^3.2.5",
"@jupyterlab/observables": "^4.2.5",
"@jupyterlab/shared-models": "^3.2.5",
"@jupyterlab/translation": "^3.2.5",
"@jupyterlab/ui-components": "^3.2.5",
"@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"
}
},
"node_modules/@jupyterlab/codemirror": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-3.2.5.tgz",
"integrity": "sha512-O4TlQ2CMcZyPVYrBQ7LBwt3BaBteuakQJnca6Pz/6g3qXxuF9MZ+ouMEoPvs8YuHhOOdOhjmQ8yZayYEzOPoSQ==",
"dependencies": {
"@jupyterlab/apputils": "^3.2.5",
"@jupyterlab/codeeditor": "^3.2.5",
"@jupyterlab/coreutils": "^5.2.5",
"@jupyterlab/nbformat": "^3.2.5",
"@jupyterlab/observables": "^4.2.5",
"@jupyterlab/shared-models": "^3.2.5",
"@jupyterlab/statusbar": "^3.2.5",
"@jupyterlab/translation": "^3.2.5",
"@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.1"
}
},
"node_modules/@jupyterlab/coreutils": {
"version": "5.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-5.2.5.tgz",
"integrity": "sha512-Twr7WxdghsJUQrd/hApd6p+4d9klnbyYd9WW9F/AGfH3usMQUqVAlygYR0jJHDPLFeiP2Zx4ppfwmBLAc037yQ==",
"dependencies": {
"@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"
}
},
"node_modules/@jupyterlab/docmanager": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-3.2.5.tgz",
"integrity": "sha512-brhfgx/YpWDecYFkCiVDl7IW74yr9NWeQ6b+FaLBVYYnhP4MiyTnfxd0qI67QNH71kUcGt4vRYaG3xXhKAidFg==",
"dependencies": {
"@jupyterlab/apputils": "^3.2.5",
"@jupyterlab/coreutils": "^5.2.5",
"@jupyterlab/docprovider": "^3.2.5",
"@jupyterlab/docregistry": "^3.2.5",
"@jupyterlab/services": "^6.2.5",
"@jupyterlab/statusbar": "^3.2.5",
"@jupyterlab/translation": "^3.2.5",
"@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"
}
},
"node_modules/@jupyterlab/docprovider": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/docprovider/-/docprovider-3.2.5.tgz",
"integrity": "sha512-uTKrbxvQgjtLAY9yzRzjz+j5LU2J+jv1Aa82+1qg84CowHpmMLzSf+eMj7vWVlnVnwcZsmmWueIiEAQpOuj8PA==",
"dependencies": {
"@jupyterlab/shared-models": "^3.2.5",
"@lumino/coreutils": "^1.5.3",
"lib0": "^0.2.42",
"y-websocket": "^1.3.15",
"yjs": "^13.5.17"
}
},
"node_modules/@jupyterlab/docregistry": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-3.2.5.tgz",
"integrity": "sha512-KKzWE5YByrXJF70Hi0eiFcy9XcRmp3Yya7EVOb6oKXtsJlSbnGW81y2EPen0rHG88bv0BzowRu8WINKdG8XO6w==",
"dependencies": {
"@jupyterlab/apputils": "^3.2.5",
"@jupyterlab/codeeditor": "^3.2.5",
"@jupyterlab/codemirror": "^3.2.5",
"@jupyterlab/coreutils": "^5.2.5",
"@jupyterlab/docprovider": "^3.2.5",
"@jupyterlab/observables": "^4.2.5",
"@jupyterlab/rendermime": "^3.2.5",
"@jupyterlab/rendermime-interfaces": "^3.2.5",
"@jupyterlab/services": "^6.2.5",
"@jupyterlab/shared-models": "^3.2.5",
"@jupyterlab/translation": "^3.2.5",
"@jupyterlab/ui-components": "^3.2.5",
"@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"
}
},
"node_modules/@jupyterlab/filebrowser": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-3.2.5.tgz",
"integrity": "sha512-wAZI1JmX9PklEQoK4aqHYnhzV59mqEXdcfK+/fNQBizhn6gTzTEMBePyn/zyhzz0fsZ7h0KK8dc1Tcjb+pbYEQ==",
"dependencies": {
"@jupyterlab/apputils": "^3.2.5",
"@jupyterlab/coreutils": "^5.2.5",
"@jupyterlab/docmanager": "^3.2.5",
"@jupyterlab/docregistry": "^3.2.5",
"@jupyterlab/services": "^6.2.5",
"@jupyterlab/statedb": "^3.2.5",
"@jupyterlab/statusbar": "^3.2.5",
"@jupyterlab/translation": "^3.2.5",
"@jupyterlab/ui-components": "^3.2.5",
"@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"
}
},
"node_modules/@jupyterlab/nbformat": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-3.2.5.tgz",
"integrity": "sha512-sIBSKAmDW7zjmGbve5PnEG6a7q7PwsvoJH5+jNYaqUd5Aa14Z/12I/DKlEzyJA+62h1gYPuUHxJscK4Al7lyww==",
"dependencies": {
"@lumino/coreutils": "^1.5.3"
}
},
"node_modules/@jupyterlab/notebook": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/notebook/-/notebook-3.2.5.tgz",
"integrity": "sha512-P4eCqquZlaFY6VtjG1HKTYpk4euLvAUNP1mi80W7aNBq2zI3bzStzCQQWr3RwBkK599Rc5BQgOVjbKD5TQcmsw==",
"dependencies": {
"@jupyterlab/apputils": "^3.2.5",
"@jupyterlab/cells": "^3.2.5",
"@jupyterlab/codeeditor": "^3.2.5",
"@jupyterlab/coreutils": "^5.2.5",
"@jupyterlab/docregistry": "^3.2.5",
"@jupyterlab/nbformat": "^3.2.5",
"@jupyterlab/observables": "^4.2.5",
"@jupyterlab/rendermime": "^3.2.5",
"@jupyterlab/services": "^6.2.5",
"@jupyterlab/shared-models": "^3.2.5",
"@jupyterlab/statusbar": "^3.2.5",
"@jupyterlab/translation": "^3.2.5",
"@jupyterlab/ui-components": "^3.2.5",
"@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"
}
},
"node_modules/@jupyterlab/observables": {
"version": "4.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/observables/-/observables-4.2.5.tgz",
"integrity": "sha512-1o2jPJ813A9yb6I4wF1vAKeHIIxFp3jjPDntjQCDEFUfyzDJl3jIoKGKmrdKoGbIBayPNjPh+ghIBcahiZua/Q==",
"dependencies": {
"@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"
}
},
"node_modules/@jupyterlab/outputarea": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/outputarea/-/outputarea-3.2.5.tgz",
"integrity": "sha512-tPhZooPkRQKRoZsPLK+XHvsQ5u43k7lfoNklnvVDo9LhIiJGgCRkeWxpHjQwphIEDneQnDvuBvBDnO9BECLdwQ==",
"dependencies": {
"@jupyterlab/apputils": "^3.2.5",
"@jupyterlab/nbformat": "^3.2.5",
"@jupyterlab/observables": "^4.2.5",
"@jupyterlab/rendermime": "^3.2.5",
"@jupyterlab/rendermime-interfaces": "^3.2.5",
"@jupyterlab/services": "^6.2.5",
"@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"
}
},
"node_modules/@jupyterlab/rendermime": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-3.2.5.tgz",
"integrity": "sha512-NL1luoBLLk3ahrW3ICFvAY2nt7nBd9ml/mUzXYVmq/04Oqk3OM089abRkJeuRj/yoPi20LEoK+I/WGUrn1XU/w==",
"dependencies": {
"@jupyterlab/apputils": "^3.2.5",
"@jupyterlab/codemirror": "^3.2.5",
"@jupyterlab/coreutils": "^5.2.5",
"@jupyterlab/nbformat": "^3.2.5",
"@jupyterlab/observables": "^4.2.5",
"@jupyterlab/rendermime-interfaces": "^3.2.5",
"@jupyterlab/services": "^6.2.5",
"@jupyterlab/translation": "^3.2.5",
"@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"
}
},
"node_modules/@jupyterlab/rendermime-interfaces": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.2.5.tgz",
"integrity": "sha512-jNlpZ5VI5MhborqAUlMOHVtrGXwMQqVl0QcV2Z/3pC5a1PlYc3c+xnSvukd9WU8dlRYwKT7Qt3nDiAdNW12WKA==",
"dependencies": {
"@jupyterlab/translation": "^3.2.5",
"@lumino/coreutils": "^1.5.3",
"@lumino/widgets": "^1.19.0"
}
},
"node_modules/@jupyterlab/services": {
"version": "6.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-6.2.5.tgz",
"integrity": "sha512-UCauDQKPGKlGJQTe24iVre1kpV/IosJ9QETye+egZGLwCZBHJwTs7wVOxVlRNWiMinHe6Zz6rpfwcbPQs75AcQ==",
"dependencies": {
"@jupyterlab/coreutils": "^5.2.5",
"@jupyterlab/nbformat": "^3.2.5",
"@jupyterlab/observables": "^4.2.5",
"@jupyterlab/settingregistry": "^3.2.5",
"@jupyterlab/statedb": "^3.2.5",
"@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"
}
},
"node_modules/@jupyterlab/settingregistry": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-3.2.5.tgz",
"integrity": "sha512-wjG+tGYQsFOYZmgvU73u+jSFlpTskWzUakTEAOggtr+muQnEgXm29+T46K7OSdoeISJH7WGkM8x9gezVJsiWaQ==",
"dependencies": {
"@jupyterlab/statedb": "^3.2.5",
"@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"
}
},
"node_modules/@jupyterlab/shared-models": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/shared-models/-/shared-models-3.2.5.tgz",
"integrity": "sha512-ZwteydaVtViN2Njh3Aie0Ewmn9FMPekyzxurYDQXtAARVQF4OWKAm850DpVpj2GSUEVKbC821YupnWw6EFQVAg==",
"dependencies": {
"@jupyterlab/nbformat": "^3.2.5",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"y-protocols": "^1.0.5",
"yjs": "^13.5.17"
}
},
"node_modules/@jupyterlab/statedb": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-3.2.5.tgz",
"integrity": "sha512-RARtCRHPJd90Mz6UmaSGZzHjEY8CUS9sJnJjfpJC1wE7b1WYKqQsMsMH8ikcw+gaYez/G3XGISJ+hNQny5LfKQ==",
"dependencies": {
"@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"
}
},
"node_modules/@jupyterlab/statusbar": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-3.2.5.tgz",
"integrity": "sha512-/KOFxiblrCahTRXiKHZ4s0woN56tRpUHRGmwLQSWH1L7273/yGmNyYfGJr24yrXin1zsVgvJ6AnO5frSHDjUwQ==",
"dependencies": {
"@jupyterlab/apputils": "^3.2.5",
"@jupyterlab/codeeditor": "^3.2.5",
"@jupyterlab/services": "^6.2.5",
"@jupyterlab/translation": "^3.2.5",
"@jupyterlab/ui-components": "^3.2.5",
"@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"
}
},
"node_modules/@jupyterlab/translation": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/translation/-/translation-3.2.5.tgz",
"integrity": "sha512-J+J7MaezEsfBfe6dbqpxo00l4yvJT2Hr0EOZMJh3c6XKWA2rSRUEOFyVONAeDAgVczWMJTitqBK408KLCNCyVg==",
"dependencies": {
"@jupyterlab/coreutils": "^5.2.5",
"@jupyterlab/services": "^6.2.5",
"@jupyterlab/statedb": "^3.2.5",
"@lumino/coreutils": "^1.5.3"
}
},
"node_modules/@jupyterlab/ui-components": {
"version": "3.2.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-3.2.5.tgz",
"integrity": "sha512-G0FxorCH3CmRgbElIntjpvzfzg1VTZuJWQFkyn/fhJmtz2lr8/nhPgrfbV5Lcp9Ny1CJ0QDW3q8Bi1XYN7pc4w==",
"dependencies": {
"@blueprintjs/core": "^3.36.0",
"@blueprintjs/select": "^3.15.0",
"@jupyterlab/coreutils": "^5.2.5",
"@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"
},
"peerDependencies": {
"react": "^17.0.1"
}
},
"node_modules/@lumino/algorithm": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@lumino/algorithm/-/algorithm-1.9.1.tgz",
"integrity": "sha512-d0rj7IYRzYj6WbWSrbJbKvrfO4H0NUnXT2yjSWS/sCklpTpSp0IGmndK/X4r6gG+ev5lb5+wBg9ofUDBvoAlAw=="
},
"node_modules/@lumino/application": {
"version": "1.27.1",
"resolved": "https://registry.npmjs.org/@lumino/application/-/application-1.27.1.tgz",
"integrity": "sha512-jEQweb3bxt1kBLUjcw3A787xjdMbe8TbOFOug9H53Ld/VftVitrt2ETALTB+RugX8Mhp+nZ/Sb8glko/fHJ2IA==",
"dependencies": {
"@lumino/commands": "^1.19.1",
"@lumino/coreutils": "^1.11.1",
"@lumino/widgets": "^1.30.1"
}
},
"node_modules/@lumino/collections": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@lumino/collections/-/collections-1.9.1.tgz",
"integrity": "sha512-5RaRGUY7BJ/1j173sc9DCfiVf70Z0hopRnBV8/AeAaK9bJJRAYjDhlZ9O8xTyouegh6krkOfiDyjl3pwogLrQw==",
"dependencies": {
"@lumino/algorithm": "^1.9.1"
}
},
"node_modules/@lumino/commands": {
"version": "1.19.1",
"resolved": "https://registry.npmjs.org/@lumino/commands/-/commands-1.19.1.tgz",
"integrity": "sha512-jWNvwpOEPnWLP1i1cgzJr/ZCqzitLYIRW5n+xJgvSd3T9I+lraWl44uXvg2DDHs4QdfRTu2tnMafl0ynFg1Hfg==",
"dependencies": {
"@lumino/algorithm": "^1.9.1",
"@lumino/coreutils": "^1.11.1",
"@lumino/disposable": "^1.10.1",
"@lumino/domutils": "^1.8.1",
"@lumino/keyboard": "^1.8.1",
"@lumino/signaling": "^1.10.1",
"@lumino/virtualdom": "^1.14.1"
}
},
"node_modules/@lumino/coreutils": {
"version": "1.11.1",
"resolved": "https://registry.npmjs.org/@lumino/coreutils/-/coreutils-1.11.1.tgz",
"integrity": "sha512-TbXeYnUChSMN8SmuOwT+bADS3kMhsVaQC0sZie0ZeGaLYxVqvd7NEDRZATDtjdw7QGHK0TwH5+XzuSdNkAXpFw==",
"peerDependencies": {
"crypto": "1.0.1"
}
},
"node_modules/@lumino/disposable": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@lumino/disposable/-/disposable-1.10.1.tgz",
"integrity": "sha512-mZQILc8sVGZC7mJNOGVmehDRO9/u3sIRdjZ+pCYjDgXKcINLd6HoPhZDquKCWiRBfHTL1B3tOHjnBhahBc2N/Q==",
"dependencies": {
"@lumino/algorithm": "^1.9.1",
"@lumino/signaling": "^1.10.1"
}
},
"node_modules/@lumino/domutils": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/@lumino/domutils/-/domutils-1.8.1.tgz",
"integrity": "sha512-QUVXwmDMIfcHC3yslhmyGK4HYBKaJ3xX5MTwDrjsSX7J7AZ4jwL4zfsxyF9ntdqEKraoJhLQ6BaUBY+Ur1cnYw=="
},
"node_modules/@lumino/dragdrop": {
"version": "1.13.1",
"resolved": "https://registry.npmjs.org/@lumino/dragdrop/-/dragdrop-1.13.1.tgz",
"integrity": "sha512-78tvTLwUkGbxrVentok7J4M1y+QHml3+Z+N5urxpXZMqVaLCeLxXfQO5QbWKiQjRWuPSoXhCB/PNBrlZeqzK+A==",
"dependencies": {
"@lumino/coreutils": "^1.11.1",
"@lumino/disposable": "^1.10.1"
}
},
"node_modules/@lumino/keyboard": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/@lumino/keyboard/-/keyboard-1.8.1.tgz",
"integrity": "sha512-8x0y2ZQtEvOsblpI2gfTgf+gboftusP+5aukKEsgNQtzFl28RezQXEOSVd8iD3K6+Q1MaPQF0OALYP0ASqBjBg=="
},
"node_modules/@lumino/messaging": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@lumino/messaging/-/messaging-1.10.1.tgz",
"integrity": "sha512-XZSdt9ih94rdeeLL0cryUw6HHD51D7TP8c+MFf+YRF6VKwOFB9RoajfQWadeqpmH+schTs3EsrFfA9KHduzC7w==",
"dependencies": {
"@lumino/algorithm": "^1.9.1",
"@lumino/collections": "^1.9.1"
}
},
"node_modules/@lumino/polling": {
"version": "1.9.1",
"resolved": "https://registry.npmjs.org/@lumino/polling/-/polling-1.9.1.tgz",
"integrity": "sha512-eZbkLcEJmx+1ABekXchiWbZGKuaEfBvCYb0swWHFrHYi48dtmVsJtyLMDmLGPDZC7cOxoQ3YoSCYiCKmgSIQCA==",
"dependencies": {
"@lumino/coreutils": "^1.11.1",
"@lumino/disposable": "^1.10.1",
"@lumino/signaling": "^1.10.1"
}
},
"node_modules/@lumino/properties": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/@lumino/properties/-/properties-1.8.1.tgz",
"integrity": "sha512-O+CCcAqP64Di32DUZ4Jqq0DtUyE5RJREN5vbkgGZGu+WauJ/RYoiLDe1ubbAeSaHk71OrS60ZBV7QyC8ZaBVsA=="
},
"node_modules/@lumino/signaling": {
"version": "1.10.1",
"resolved": "https://registry.npmjs.org/@lumino/signaling/-/signaling-1.10.1.tgz",
"integrity": "sha512-GZVbX4cfk/ZqLwkemPD/NwqToaTL/6q7qdLpEhgkiPlaH1S5/V7fDpP7N1uFy4n3BDITId8cpYgH/Ds32Mdp3A==",
"dependencies": {
"@lumino/algorithm": "^1.9.1"
}
},
"node_modules/@lumino/virtualdom": {
"version": "1.14.1",
"resolved": "https://registry.npmjs.org/@lumino/virtualdom/-/virtualdom-1.14.1.tgz",
"integrity": "sha512-imIJd/wtRkoR1onEiG5nxPEaIrf70nn4PgD/56ri3/Lo6AJEX2CusF6iIA27GVB8yl/7CxgTHUnzzCwTFPypcA==",
"dependencies": {
"@lumino/algorithm": "^1.9.1"
}
},
"node_modules/@lumino/widgets": {
"version": "1.30.1",
"resolved": "https://registry.npmjs.org/@lumino/widgets/-/widgets-1.30.1.tgz",
"integrity": "sha512-d0YfV1bKTQKJdEZgqkWLVQ0EXsLjPyu1HFW/pMflvge/alimT8Dn2DNIPSYu7VfsMAzspxyZv9n2Gm49qYNjtA==",
"dependencies": {
"@lumino/algorithm": "^1.9.1",
"@lumino/commands": "^1.19.1",
"@lumino/coreutils": "^1.11.1",
"@lumino/disposable": "^1.10.1",
"@lumino/domutils": "^1.8.1",
"@lumino/dragdrop": "^1.13.1",
"@lumino/keyboard": "^1.8.1",
"@lumino/messaging": "^1.10.1",
"@lumino/properties": "^1.8.1",
"@lumino/signaling": "^1.10.1",
"@lumino/virtualdom": "^1.14.1"
}
},
"node_modules/@types/dom4": {
"version": "2.0.2",
"resolved": "https://registry.npmjs.org/@types/dom4/-/dom4-2.0.2.tgz",
"integrity": "sha512-Rt4IC1T7xkCWa0OG1oSsPa0iqnxlDeQqKXZAHrQGLb7wFGncWm85MaxKUjAGejOrUynOgWlFi4c6S6IyJwoK4g=="
},
"node_modules/@types/prop-types": {
"version": "15.7.4",
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.4.tgz",
"integrity": "sha512-rZ5drC/jWjrArrS8BR6SIr4cWpW09RNTYt9AMZo3Jwwif+iacXAqgVjm0B0Bv/S1jhDXKHqRVNCbACkJ89RAnQ=="
},
"node_modules/@types/react": {
"version": "17.0.38",
"resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.38.tgz",
"integrity": "sha512-SI92X1IA+FMnP3qM5m4QReluXzhcmovhZnLNm3pyeQlooi02qI7sLiepEYqT678uNiyc25XfCqxREFpy3W7YhQ==",
"dependencies": {
"@types/prop-types": "*",
"@types/scheduler": "*",
"csstype": "^3.0.2"
}
},
"node_modules/@types/scheduler": {
"version": "0.16.2",
"resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz",
"integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew=="
},
"node_modules/abstract-leveldown": {
"version": "6.2.3",
"resolved": "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-6.2.3.tgz",
"integrity": "sha512-BsLm5vFMRUrrLeCcRc+G0t2qOaTzpoJQLOubq2XM72eNpjF5UdU5o/5NvlNhx95XHcAvcl8OMXr4mlg/fRgUXQ==",
"optional": true,
"dependencies": {
"buffer": "^5.5.0",
"immediate": "^3.2.3",
"level-concat-iterator": "~2.0.0",
"level-supports": "~1.0.0",
"xtend": "~4.0.0"
},
"engines": {
"node": ">=6"
}
},
"node_modules/ajv": {
"version": "6.12.6",
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
"dependencies": {
"fast-deep-equal": "^3.1.1",
"fast-json-stable-stringify": "^2.0.0",
"json-schema-traverse": "^0.4.1",
"uri-js": "^4.2.2"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/epoberezkin"
}
},
"node_modules/async-limiter": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz",
"integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==",
"optional": true
},
"node_modules/balanced-match": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
"dev": true
},
"node_modules/base64-js": {
"version": "1.5.1",
"resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz",
"integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"optional": true
},
"node_modules/brace-expansion": {
"version": "1.1.11",
"resolved": "https://registry.npmjs.org/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/buffer": {
"version": "5.7.1",
"resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
"integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"optional": true,
"dependencies": {
"base64-js": "^1.3.1",
"ieee754": "^1.1.13"
}
},
"node_modules/call-bind": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
"dependencies": {
"function-bind": "^1.1.1",
"get-intrinsic": "^1.0.2"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/classnames": {
"version": "2.3.1",
"resolved": "https://registry.npmjs.org/classnames/-/classnames-2.3.1.tgz",
"integrity": "sha512-OlQdbZ7gLfGarSqxesMesDa5uz7KFbID8Kpq/SxIoNGDqY8lSYs0D+hhtBXhcdB3rcbXArFr7vlHheLk1voeNA=="
},
"node_modules/codemirror": {
"version": "5.61.1",
"resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.61.1.tgz",
"integrity": "sha512-+D1NZjAucuzE93vJGbAaXzvoBHwp9nJZWWWF9utjv25+5AZUiah6CIlfb4ikG4MoDsFsCG8niiJH5++OO2LgIQ=="
},
"node_modules/concat-map": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
"dev": true
},
"node_modules/crypto": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/crypto/-/crypto-1.0.1.tgz",
"integrity": "sha512-VxBKmeNcqQdiUQUW2Tzq0t377b54N2bMtXO/qiLa+6eRRmmC4qT3D4OnTGoT/U6O9aklQ/jTwbOtRMTTY8G0Ig==",
"deprecated": "This package is no longer supported. It's now a built-in Node module. If you've depended on crypto, you should switch to the one that's built-in.",
"peer": true
},
"node_modules/csstype": {
"version": "3.0.10",
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.10.tgz",
"integrity": "sha512-2u44ZG2OcNUO9HDp/Jl8C07x6pU/eTR3ncV91SiK3dhG9TWvRVsCoJw14Ckx5DgWkzGA3waZWO3d7pgqpUI/XA=="
},
"node_modules/deep-equal": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz",
"integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==",
"dependencies": {
"is-arguments": "^1.0.4",
"is-date-object": "^1.0.1",
"is-regex": "^1.0.4",
"object-is": "^1.0.1",
"object-keys": "^1.1.1",
"regexp.prototype.flags": "^1.2.0"
},
"funding": {
"url": "https://github.com/sponsors/ljharb"
}
},
"node_modules/deepmerge": {
"version": "4.2.2",
"resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz",
"integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==",
"engines": {
"node": ">=0.10.0"
}
},
"node_modules/deferred-leveldown": {
"version": "5.3.0",
"resolved": "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-5.3.0.tgz",
"integrity": "sha512-a59VOT+oDy7vtAbLRCZwWgxu2BaCfd5Hk7wxJd48ei7I+nsg8Orlb9CLG0PMZienk9BSUKgeAqkO2+Lw+1+Ukw==",
"optional": true,
"dependencies": {
"abstract-leveldown": "~6.2.1",
"inherits": "^2.0.3"
},
"engines": {
"node": ">=6"
}
},
"node_modules/define-properties": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz",
"integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==",
"dependencies": {
"object-keys": "^1.0.12"
},
"engines": {
"node": ">= 0.4"
}
},
"node_modules/dom-helpers": {
"version": "3.4.0",
"resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz",
"integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==",
"dependencies": {
"@babel/runtime": "^7.1.2"
}
},
"node_modules/dom-serializer": {
"version": "1.3.2",
"resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.2.tgz",
"integrity": "sha512-5c54Bk5Dw4qAxNOI1pFEizPSjVsx5+bpJKmL2kPn8JhBUq2q09tTCa3mjijun2NfK78NMouDYNMBkOrPZiS+ig==",
"dependencies": {
"domelementtype": "^2.0.1",
"domhandler": "^4.2.0",
"entities": "^2.0.0"
},
"funding": {
"url": "https://github.com/cheeriojs/dom-serializer?sponsor=1"
}
},
"node_modules/dom4": {
"version": "2.1.6",
"resolved": "https://registry.npmjs.org/dom4/-/dom4-2.1.6.tgz",
"integrity": "sha512-JkCVGnN4ofKGbjf5Uvc8mmxaATIErKQKSgACdBXpsQ3fY6DlIpAyWfiBSrGkttATssbDCp3psiAKWXk5gmjycA=="
},
"node_modules/domelementtype": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.2.0.tgz",
"integrity": "sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A==",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fb55"
}
]
},
"node_modules/domhandler": {
"version": "4.3.0",
"resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.0.tgz",
"integrity": "sha512-fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g==",
"dependencies": {
"domelementtype": "^2.2.0"
},
"engines": {
"node": ">= 4"
},
"funding": {
"url": "https://github.com/fb55/domhandler?sponsor=1"
}
},
"node_modules/domutils": {
"version": "2.8.0",
"resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz",
"integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==",
"dependencies": {
"dom-serializer": "^1.0.1",
"domelementtype": "^2.2.0",
"domhandler": "^4.2.0"
},
"funding": {
"url": "https://github.com/fb55/domutils?sponsor=1"
}
},
"node_modules/encoding-down": {
"version": "6.3.0",
"resolved": "https://registry.npmjs.org/encoding-down/-/encoding-down-6.3.0.tgz",
"integrity": "sha512-QKrV0iKR6MZVJV08QY0wp1e7vF6QbhnbQhb07bwpEyuz4uZiZgPlEGdkCROuFkUwdxlFaiPIhjyarH1ee/3vhw==",
"optional": true,
"dependencies": {
"abstract-leveldown": "^6.2.1",
"inherits": "^2.0.3",
"level-codec": "^9.0.0",
"level-errors": "^2.0.0"
},
"engines": {
"node": ">=6"
}
},
"node_modules/entities": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz",
"integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==",
"funding": {
"url": "https://github.com/fb55/entities?sponsor=1"
}
},