-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage-lock.json
18019 lines (18019 loc) · 654 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": "@educational-technology-collective/etc_jupyterlab_telemetry_library",
"version": "2.0.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@educational-technology-collective/etc_jupyterlab_telemetry_library",
"version": "2.0.1",
"license": "BSD-3-Clause",
"dependencies": {
"@educational-technology-collective/etc_jupyterlab_notebook_state_provider": "^2.0.0",
"@jupyterlab/application": "^3.0.9",
"@jupyterlab/coreutils": "^5.0.5",
"@jupyterlab/docregistry": "^3.0.9",
"@jupyterlab/nbformat": "^3.0.5",
"@jupyterlab/notebook": "^3.0.9",
"@jupyterlab/observables": "^4.0.5",
"@jupyterlab/outputarea": "^3.0.8",
"@jupyterlab/services": "^6.0.7",
"@jupyterlab/settingregistry": "^3.0.5",
"@lumino/signaling": "^1.4.3"
},
"devDependencies": {
"@jupyterlab/builder": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"mkdirp": "^1.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"typescript": "~4.1.3"
}
},
"node_modules/@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,
"license": "MIT",
"dependencies": {
"@babel/highlight": "^7.10.4"
}
},
"node_modules/@babel/helper-validator-identifier": {
"version": "7.15.7",
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz",
"integrity": "sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==",
"dev": true,
"license": "MIT",
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@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,
"license": "MIT",
"dependencies": {
"@babel/helper-validator-identifier": "^7.14.5",
"chalk": "^2.0.0",
"js-tokens": "^4.0.0"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@babel/runtime": {
"version": "7.15.4",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz",
"integrity": "sha512-99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==",
"license": "MIT",
"dependencies": {
"regenerator-runtime": "^0.13.4"
},
"engines": {
"node": ">=6.9.0"
}
},
"node_modules/@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==",
"license": "Apache-2.0"
},
"node_modules/@blueprintjs/core": {
"version": "3.51.2",
"resolved": "https://registry.npmjs.org/@blueprintjs/core/-/core-3.51.2.tgz",
"integrity": "sha512-Jj7WXbMLJ/D7asi0fzelXUVtDBFCOhpkbJFArSghF0M2ssgnLQbE8r00SWH9l1zeGKdvHt6XzKP4DI4g79RXEg==",
"license": "Apache-2.0",
"dependencies": {
"@blueprintjs/colors": "^4.0.0-alpha.1",
"@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==",
"license": "Apache-2.0",
"dependencies": {
"classnames": "^2.2",
"tslib": "~1.13.0"
}
},
"node_modules/@blueprintjs/select": {
"version": "3.18.9",
"resolved": "https://registry.npmjs.org/@blueprintjs/select/-/select-3.18.9.tgz",
"integrity": "sha512-qpDbOPwQn0FeagkNAmu3VbAehjX3rMY9Az7DCn90Jwp9T1Iy5D/kqYDV0+IibYcbK8r09L0MET0q68dUdkbnEQ==",
"license": "Apache-2.0",
"dependencies": {
"@blueprintjs/core": "^3.51.2",
"classnames": "^2.2",
"tslib": "~1.13.0"
},
"peerDependencies": {
"react": "^15.3.0 || 16 || 17",
"react-dom": "^15.3.0 || 16 || 17"
}
},
"node_modules/@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,
"license": "MIT",
"engines": {
"node": ">=10.0.0"
}
},
"node_modules/@educational-technology-collective/etc_jupyterlab_notebook_state_provider": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@educational-technology-collective/etc_jupyterlab_notebook_state_provider/-/etc_jupyterlab_notebook_state_provider-2.0.1.tgz",
"integrity": "sha512-3gskgb5ziYSr4ymbRtT4RjT31ahJyITVjTPX7QRui8WaLFhnvsJyKmQuzuAeHozmvKqi+wVvUWdsdPK4eBIlmA==",
"dependencies": {
"@jupyterlab/application": "^3.1.0",
"@jupyterlab/coreutils": "^5.1.0",
"@jupyterlab/notebook": "^3.0.9",
"@jupyterlab/services": "^6.1.0",
"@jupyterlab/settingregistry": "^3.1.0"
}
},
"node_modules/@eslint/eslintrc": {
"version": "0.4.3",
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz",
"integrity": "sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==",
"dev": true,
"license": "MIT",
"dependencies": {
"ajv": "^6.12.4",
"debug": "^4.1.1",
"espree": "^7.3.0",
"globals": "^13.9.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"
},
"engines": {
"node": "^10.12.0 || >=12.0.0"
}
},
"node_modules/@eslint/eslintrc/node_modules/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,
"license": "MIT",
"engines": {
"node": ">= 4"
}
},
"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,
"license": "(CC-BY-4.0 AND OFL-1.1 AND MIT)",
"engines": {
"node": ">=6"
}
},
"node_modules/@gar/promisify": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.2.tgz",
"integrity": "sha512-82cpyJyKRoQoRi+14ibCeGPu0CwypgtBAdBhq1WfvagpCZNKqwXbKwXllYSMG91DhmG4jt9gN8eP6lGOtozuaw==",
"dev": true,
"license": "MIT"
},
"node_modules/@humanwhocodes/config-array": {
"version": "0.5.0",
"resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.5.0.tgz",
"integrity": "sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==",
"dev": true,
"license": "Apache-2.0",
"dependencies": {
"@humanwhocodes/object-schema": "^1.2.0",
"debug": "^4.1.1",
"minimatch": "^3.0.4"
},
"engines": {
"node": ">=10.10.0"
}
},
"node_modules/@humanwhocodes/object-schema": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz",
"integrity": "sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==",
"dev": true,
"license": "BSD-3-Clause"
},
"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==",
"license": "MIT",
"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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/application/-/application-3.2.1.tgz",
"integrity": "sha512-5+mL1w7bomKr0TmXYazsOkVVjaejoYBHca9w6TueHZSUtev0lvGdJJZKKKhhzsnm49bN3Nay4VLLM0Cv1LHR9Q==",
"license": "BSD-3-Clause",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.12.0",
"@jupyterlab/apputils": "^3.2.1",
"@jupyterlab/coreutils": "^5.2.1",
"@jupyterlab/docregistry": "^3.2.1",
"@jupyterlab/rendermime": "^3.2.1",
"@jupyterlab/rendermime-interfaces": "^3.2.1",
"@jupyterlab/services": "^6.2.1",
"@jupyterlab/statedb": "^3.2.1",
"@jupyterlab/translation": "^3.2.1",
"@jupyterlab/ui-components": "^3.2.1",
"@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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-3.2.1.tgz",
"integrity": "sha512-JY2YiwtFerqZHlLanp1F2o6sXIK9wRQt+ribifgMDeegQk+5ndERaT+aTKqDd1M0wGqAZlC38COrOiqyVeHKYg==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/coreutils": "^5.2.1",
"@jupyterlab/services": "^6.2.1",
"@jupyterlab/settingregistry": "^3.2.1",
"@jupyterlab/statedb": "^3.2.1",
"@jupyterlab/translation": "^3.2.1",
"@jupyterlab/ui-components": "^3.2.1",
"@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": "^18.0.26",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"sanitize-html": "~2.3.3",
"url": "^0.11.0"
}
},
"node_modules/@jupyterlab/attachments": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/attachments/-/attachments-3.2.1.tgz",
"integrity": "sha512-CeqiIsEU5zJXHoR8DSr5IQ5sCHv/C5cYkrlZDaJ+SlWMjX83dsmepfCHKS2Krl5ptBFS4jVmuE31kIrlh2WFjw==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/nbformat": "^3.2.1",
"@jupyterlab/observables": "^4.2.1",
"@jupyterlab/rendermime": "^3.2.1",
"@jupyterlab/rendermime-interfaces": "^3.2.1",
"@lumino/disposable": "^1.4.3",
"@lumino/signaling": "^1.4.3"
}
},
"node_modules/@jupyterlab/builder": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/builder/-/builder-3.2.1.tgz",
"integrity": "sha512-fqeIspyF4OdXLBcy9C6ykG3rpMh+2qZtRA4ItMxGgsBYDdaOqTbYMhEiDdLJxZ/A0FBo3EPQ7tKhp1pNGYVN6w==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/buildutils": "^3.2.1",
"@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"
},
"bin": {
"build-labextension": "lib/build-labextension.js"
}
},
"node_modules/@jupyterlab/builder/node_modules/glob": {
"version": "7.1.7",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
"integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
"dev": true,
"license": "ISC",
"dependencies": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
"inherits": "2",
"minimatch": "^3.0.4",
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
},
"engines": {
"node": "*"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/@jupyterlab/buildutils": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/buildutils/-/buildutils-3.2.1.tgz",
"integrity": "sha512-iaQ3Qd9L7vN31A2uE3RUXtZ5q3nI/FH6nxQ+C4WRX13tFl4ElmXFNvIS/L42MjZuAHjbwvFZXzLHT/nhPS4Oeg==",
"dev": true,
"license": "BSD-3-Clause",
"dependencies": {
"@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"
},
"bin": {
"get-dependency": "lib/get-dependency.js",
"local-repository": "lib/local-repository.js",
"remove-dependency": "lib/remove-dependency.js",
"update-dependency": "lib/update-dependency.js",
"update-dist-tag": "lib/update-dist-tag.js"
}
},
"node_modules/@jupyterlab/buildutils/node_modules/glob": {
"version": "7.1.7",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
"integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
"dev": true,
"license": "ISC",
"dependencies": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
"inherits": "2",
"minimatch": "^3.0.4",
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
},
"engines": {
"node": "*"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/@jupyterlab/buildutils/node_modules/prettier": {
"version": "2.1.2",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.1.2.tgz",
"integrity": "sha512-16c7K+x4qVlJg9rEbXl7HEGmQyZlG4R9AgP+oHKRMsMsuk8s+ATStlf1NpDqyBI1HpVyfjLOeMhH2LvuNvV5Vg==",
"dev": true,
"license": "MIT",
"bin": {
"prettier": "bin-prettier.js"
},
"engines": {
"node": ">=10.13.0"
}
},
"node_modules/@jupyterlab/cells": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/cells/-/cells-3.2.1.tgz",
"integrity": "sha512-bfpuKBBT96eIbY+Szmdi/IlVr4HMpckQyiuY2zMuKdOOGbePYk/zYYDmCfugHRDVhEtWcGLrMj0L0F+5DN4fyA==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^3.2.1",
"@jupyterlab/attachments": "^3.2.1",
"@jupyterlab/codeeditor": "^3.2.1",
"@jupyterlab/codemirror": "^3.2.1",
"@jupyterlab/coreutils": "^5.2.1",
"@jupyterlab/filebrowser": "^3.2.1",
"@jupyterlab/nbformat": "^3.2.1",
"@jupyterlab/observables": "^4.2.1",
"@jupyterlab/outputarea": "^3.2.1",
"@jupyterlab/rendermime": "^3.2.1",
"@jupyterlab/services": "^6.2.1",
"@jupyterlab/shared-models": "^3.2.1",
"@jupyterlab/ui-components": "^3.2.1",
"@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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-3.2.1.tgz",
"integrity": "sha512-PyZDF6wg34Zz68WHoE3gXIgR0BnJgu1cSFVOc9Byj8pU/tIdxAhLB3BZDO99iy1NDYh4+mONJyYDh1UGqmSNpQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/coreutils": "^5.2.1",
"@jupyterlab/nbformat": "^3.2.1",
"@jupyterlab/observables": "^4.2.1",
"@jupyterlab/shared-models": "^3.2.1",
"@jupyterlab/translation": "^3.2.1",
"@jupyterlab/ui-components": "^3.2.1",
"@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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-3.2.1.tgz",
"integrity": "sha512-szYPqeqvTlpDzN37iBfxMd3b6WReqXmVIqYWrRaCOmuyMn2AFeve831nEWiXGSnUo7hNL5RPXZQ2grw88b4Dcw==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^3.2.1",
"@jupyterlab/codeeditor": "^3.2.1",
"@jupyterlab/coreutils": "^5.2.1",
"@jupyterlab/nbformat": "^3.2.1",
"@jupyterlab/observables": "^4.2.1",
"@jupyterlab/shared-models": "^3.2.1",
"@jupyterlab/statusbar": "^3.2.1",
"@jupyterlab/translation": "^3.2.1",
"@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"
}
},
"node_modules/@jupyterlab/coreutils": {
"version": "5.2.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-5.2.1.tgz",
"integrity": "sha512-BryI6XgSFLprQ0a6BQ8oNdWb4nJYOJJN7VXc5N2XcZYkHb5L3yRMYIb7Aa8aMpuUAVrO2yijg4ItWh28GGXs1Q==",
"license": "BSD-3-Clause",
"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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-3.2.1.tgz",
"integrity": "sha512-kXuCljCd0zgoYSngf7dH6oZ40Mq1ovpWXoC19n9WrkNdZRocmOzGTwJfdnoN7hvfWeIcGoWRDGS5sHWWba5rwg==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^3.2.1",
"@jupyterlab/coreutils": "^5.2.1",
"@jupyterlab/docprovider": "^3.2.1",
"@jupyterlab/docregistry": "^3.2.1",
"@jupyterlab/services": "^6.2.1",
"@jupyterlab/statusbar": "^3.2.1",
"@jupyterlab/translation": "^3.2.1",
"@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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/docprovider/-/docprovider-3.2.1.tgz",
"integrity": "sha512-mjdS7ywYARkxv/QJ8Hr7rq2RY6/bNSuf4pWYCHM13IVnijL1mvrojvgf7EVNuRvDbx0AasluVXeXmku2mZMOIA==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/shared-models": "^3.2.1",
"@lumino/coreutils": "^1.5.3",
"lib0": "^0.2.42",
"y-websocket": "^1.3.15",
"yjs": "^13.5.6"
}
},
"node_modules/@jupyterlab/docregistry": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-3.2.1.tgz",
"integrity": "sha512-nDgHdj/EES4/9WOMBafmFhEB6263wuGApqviztJbgLceFmzVV9IQvRbp6vWtWYk/t3FjlNIw0AfENCqQLKK3ag==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^3.2.1",
"@jupyterlab/codeeditor": "^3.2.1",
"@jupyterlab/codemirror": "^3.2.1",
"@jupyterlab/coreutils": "^5.2.1",
"@jupyterlab/docprovider": "^3.2.1",
"@jupyterlab/observables": "^4.2.1",
"@jupyterlab/rendermime": "^3.2.1",
"@jupyterlab/rendermime-interfaces": "^3.2.1",
"@jupyterlab/services": "^6.2.1",
"@jupyterlab/shared-models": "^3.2.1",
"@jupyterlab/translation": "^3.2.1",
"@jupyterlab/ui-components": "^3.2.1",
"@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"
}
},
"node_modules/@jupyterlab/filebrowser": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-3.2.1.tgz",
"integrity": "sha512-Hg23P/SaN37ENFuPCn76s2QBFSOnAXdo0+b2oZKAS5sk1wdilRrI65vwlz9e/Lv3Sqlt/zz6D/OOAJuNUkMxAw==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^3.2.1",
"@jupyterlab/coreutils": "^5.2.1",
"@jupyterlab/docmanager": "^3.2.1",
"@jupyterlab/docregistry": "^3.2.1",
"@jupyterlab/services": "^6.2.1",
"@jupyterlab/statedb": "^3.2.1",
"@jupyterlab/statusbar": "^3.2.1",
"@jupyterlab/translation": "^3.2.1",
"@jupyterlab/ui-components": "^3.2.1",
"@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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-3.2.1.tgz",
"integrity": "sha512-gZV+hVfL/tD5YxcHvmXhwiLjMGT7jflnrkaRyLHGhkSU5slAyP08lCC3Lw4IE3j+uhPxiK6MFB4mfhnFO71VsQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/coreutils": "^1.5.3"
}
},
"node_modules/@jupyterlab/notebook": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/notebook/-/notebook-3.2.1.tgz",
"integrity": "sha512-8U3iHVJK1QF8xU1uKzPor88CSeh9ktuiOyuPeKqu6k7rWiT+GoBnjLz+ICvQtUNXzCnpsmmkGyB/jlNVFvZUGg==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^3.2.1",
"@jupyterlab/cells": "^3.2.1",
"@jupyterlab/codeeditor": "^3.2.1",
"@jupyterlab/coreutils": "^5.2.1",
"@jupyterlab/docregistry": "^3.2.1",
"@jupyterlab/nbformat": "^3.2.1",
"@jupyterlab/observables": "^4.2.1",
"@jupyterlab/rendermime": "^3.2.1",
"@jupyterlab/services": "^6.2.1",
"@jupyterlab/shared-models": "^3.2.1",
"@jupyterlab/statusbar": "^3.2.1",
"@jupyterlab/translation": "^3.2.1",
"@jupyterlab/ui-components": "^3.2.1",
"@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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/observables/-/observables-4.2.1.tgz",
"integrity": "sha512-TRtL28+ly0Ww3nsUG0cE646eOVss0nT4oC/C/8UwAqRFK6uCy3maZhHKVsVo36OMkUIOvrv4Ln7ROajhPwUHkA==",
"license": "BSD-3-Clause",
"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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/outputarea/-/outputarea-3.2.1.tgz",
"integrity": "sha512-8x+uxATveSv9RuRaEUGyfUZDQgiPWGxqlwtfAp6/69HbXDuFPji7Oaja9Uuf1g8pacMR4DulETE6hXjUI0GU2w==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^3.2.1",
"@jupyterlab/nbformat": "^3.2.1",
"@jupyterlab/observables": "^4.2.1",
"@jupyterlab/rendermime": "^3.2.1",
"@jupyterlab/rendermime-interfaces": "^3.2.1",
"@jupyterlab/services": "^6.2.1",
"@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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-3.2.1.tgz",
"integrity": "sha512-SDXdoyZ8GHGg2hoA7sCR3Wvjx+d5vJc/JADHS1NBFikXy2soYXlFx89TYYh7bDx7+j3zYSRAg/93X9i8UXJFWw==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^3.2.1",
"@jupyterlab/codemirror": "^3.2.1",
"@jupyterlab/coreutils": "^5.2.1",
"@jupyterlab/nbformat": "^3.2.1",
"@jupyterlab/observables": "^4.2.1",
"@jupyterlab/rendermime-interfaces": "^3.2.1",
"@jupyterlab/services": "^6.2.1",
"@jupyterlab/translation": "^3.2.1",
"@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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.2.1.tgz",
"integrity": "sha512-5xCYoRwZNiz8tyFB6qJQvFWTVy8zLgJFXLIzu2K6jR89mXstzIKYU6BsC8NYUbEx51rxWUuSKCuhT5YoqKgdug==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/translation": "^3.2.1",
"@lumino/coreutils": "^1.5.3",
"@lumino/widgets": "^1.19.0"
}
},
"node_modules/@jupyterlab/services": {
"version": "6.2.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-6.2.1.tgz",
"integrity": "sha512-1K/DI/qQYfj6/LuDlpjboQAJUNvt3F0+b7XCM3NdDGgObYMxlzvD9bAK2wHmkh98m1x+d10Cp20xmD+IfPGVlQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/coreutils": "^5.2.1",
"@jupyterlab/nbformat": "^3.2.1",
"@jupyterlab/observables": "^4.2.1",
"@jupyterlab/settingregistry": "^3.2.1",
"@jupyterlab/statedb": "^3.2.1",
"@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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-3.2.1.tgz",
"integrity": "sha512-E6qEaoKE+tFif4e30eT+4FvEcT0fTxkDIJ4JPEOUmmOS1XbH+ylzdmeqMBVxgWd3aCFgsNsV7uEAOEOM2LxXaA==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/statedb": "^3.2.1",
"@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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/shared-models/-/shared-models-3.2.1.tgz",
"integrity": "sha512-ZpQaAJ9Yg7omxuqvm8+Wn+ayK9CWWfufVp210xklX89qf2G7C6Lmu6r55eKrGEw2izxbTQzNRwVx/wPZ6sxBjA==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/nbformat": "^3.2.1",
"@lumino/coreutils": "^1.5.3",
"@lumino/disposable": "^1.4.3",
"@lumino/signaling": "^1.4.3",
"y-protocols": "^1.0.5",
"yjs": "^13.5.6"
}
},
"node_modules/@jupyterlab/statedb": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-3.2.1.tgz",
"integrity": "sha512-YkKjY66uTK/7E4oCAigYCFRIqGud55qVMqgdbR13zPStFw/phjrSxpXQd/e9qYSh8M3DnDjoWOT9YjNP88gFpw==",
"license": "BSD-3-Clause",
"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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-3.2.1.tgz",
"integrity": "sha512-0oW895wLVbZl5955h4ljCQStPG2Ga8whTfua+m0s778x4VQ6ys6MoWFIlYnRRzWIC/lOuK0WrqahxIoCDEA0EA==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/apputils": "^3.2.1",
"@jupyterlab/codeeditor": "^3.2.1",
"@jupyterlab/services": "^6.2.1",
"@jupyterlab/translation": "^3.2.1",
"@jupyterlab/ui-components": "^3.2.1",
"@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.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/translation/-/translation-3.2.1.tgz",
"integrity": "sha512-U0iqdpZ+uzzcY8ZsfsWcG+lZStklBqPtTOVYWXMdsmoZ9e/g9qrbdbmrSFtLt0Bm4LLBgwoiNTurQSSl4L77HQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@jupyterlab/coreutils": "^5.2.1",
"@jupyterlab/services": "^6.2.1",
"@jupyterlab/statedb": "^3.2.1",
"@lumino/coreutils": "^1.5.3"
}
},
"node_modules/@jupyterlab/ui-components": {
"version": "3.2.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-3.2.1.tgz",
"integrity": "sha512-K1ZPyrQDRKU80+zfaJyCR5aC5WNPJCkSn8LaYh/DrJdjpIkkDSTrYsoGI3WHxKdFXUGzBITwDMNO3aYyTBhtXg==",
"license": "BSD-3-Clause",
"dependencies": {
"@blueprintjs/core": "^3.36.0",
"@blueprintjs/select": "^3.15.0",
"@jupyterlab/coreutils": "^5.2.1",
"@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.8.0",
"resolved": "https://registry.npmjs.org/@lumino/algorithm/-/algorithm-1.8.0.tgz",
"integrity": "sha512-6eJ+8Y6UpAbKyCYLNURSK9nJr/oKYvdmlSjOsNu64nEPw/aESr4qc8BPNAonwl4QbMnF2X8tcVMyLbDrUQSrZA==",
"license": "BSD-3-Clause"
},
"node_modules/@lumino/application": {
"version": "1.25.0",
"resolved": "https://registry.npmjs.org/@lumino/application/-/application-1.25.0.tgz",
"integrity": "sha512-iHSkfvGt94d3qZnwejOFMVWRR35h16peBMP0GGRvTTAJZxrcqVB61dpop97gYZSiJDGp5uenGWVZD7vWKsSeng==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/commands": "^1.17.0",
"@lumino/coreutils": "^1.10.0",
"@lumino/widgets": "^1.28.0"
}
},
"node_modules/@lumino/collections": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@lumino/collections/-/collections-1.8.0.tgz",
"integrity": "sha512-pSK/wkbp0Jo0gnyk61xLBySn0ppwXSyEIBFfSKIKnGJWdJq5RAG4f38NawowhSAfARcrMGpDMOySifIM+03y4Q==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/algorithm": "^1.8.0"
}
},
"node_modules/@lumino/commands": {
"version": "1.17.0",
"resolved": "https://registry.npmjs.org/@lumino/commands/-/commands-1.17.0.tgz",
"integrity": "sha512-vRT0QAtkvRP3E3wAAirAveyHZKMusOAp3cUZwGzJpNkS586SGoCrn1I3AZtFnuOquDrJoM3vyYePYnfeCsc/sw==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/algorithm": "^1.8.0",
"@lumino/coreutils": "^1.10.0",
"@lumino/disposable": "^1.9.0",
"@lumino/domutils": "^1.7.0",
"@lumino/keyboard": "^1.7.0",
"@lumino/signaling": "^1.9.0",
"@lumino/virtualdom": "^1.13.0"
}
},
"node_modules/@lumino/coreutils": {
"version": "1.10.0",
"resolved": "https://registry.npmjs.org/@lumino/coreutils/-/coreutils-1.10.0.tgz",
"integrity": "sha512-YtM277oRy+aDe5CPiYH7jWut7ZyfThCKdWgdY9B+cZ4rQl25SRzKiVPZvaz3rmLRGxiNxgawxoFm/1xD4O1LFQ==",
"license": "BSD-3-Clause",
"peerDependencies": {
"crypto": "1.0.1"
}
},
"node_modules/@lumino/disposable": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@lumino/disposable/-/disposable-1.9.0.tgz",
"integrity": "sha512-/e3l9mb+AuZC/i7qwHKGwGttUnKHn2AJ1IfsMk7/1MUA/cvK1Wi18xrphF0QEGB21IIoKqVHGke0rd8oQ1BjLQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/algorithm": "^1.8.0",
"@lumino/signaling": "^1.9.0"
}
},
"node_modules/@lumino/domutils": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/@lumino/domutils/-/domutils-1.7.0.tgz",
"integrity": "sha512-YqLDjy70WigIJDlHmnJOXGRkCTwcTonbBMrVdNwabjZjqtFv1rli4NiInfK3Wm0kueXgn954Dp+bgv/fZ7cOYw==",
"license": "BSD-3-Clause"
},
"node_modules/@lumino/dragdrop": {
"version": "1.12.0",
"resolved": "https://registry.npmjs.org/@lumino/dragdrop/-/dragdrop-1.12.0.tgz",
"integrity": "sha512-LGpHxj9cFr+SIMGZOj8FQojaGSfyI/uvvieuz4TofieaT2Ts5QhmjB2QrIMOYrkZBxBA/htrsB1Jc/yvBY9rjQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/coreutils": "^1.10.0",
"@lumino/disposable": "^1.9.0"
}
},
"node_modules/@lumino/keyboard": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/@lumino/keyboard/-/keyboard-1.7.0.tgz",
"integrity": "sha512-4AhOcBuRbx+7CBeUmg49u9JT+7N3xhSuwLhiYH75Fwibp7nqAq7fdx6QC7F8t/8EkcpuFnZo1m59dAu+bBmQQQ==",
"license": "BSD-3-Clause"
},
"node_modules/@lumino/messaging": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@lumino/messaging/-/messaging-1.9.0.tgz",
"integrity": "sha512-SwSWcLvo1G8FM7kUVP1SnFvQqfNf7OiNHFTofcNk5rFyg1tb+yVPkm6JNmDauyG4H9ZOt/Ai82q4nf+nmdWaeA==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/algorithm": "^1.8.0",
"@lumino/collections": "^1.8.0"
}
},
"node_modules/@lumino/polling": {
"version": "1.8.0",
"resolved": "https://registry.npmjs.org/@lumino/polling/-/polling-1.8.0.tgz",
"integrity": "sha512-04XpbPuyMWG/E7xsIDAwmhLKbmES3dLYHz4VTeFNLP2kxXSNrUEkH9E0WUnRfLCShAG+8/FIdTOeX/0Hng+hPQ==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/coreutils": "^1.10.0",
"@lumino/disposable": "^1.9.0",
"@lumino/signaling": "^1.9.0"
}
},
"node_modules/@lumino/properties": {
"version": "1.7.0",
"resolved": "https://registry.npmjs.org/@lumino/properties/-/properties-1.7.0.tgz",
"integrity": "sha512-H9kZggQMHRZmoZcnMegWIVwCRHBhq6uBlRZr2RmBlBS2lrGMkwdDlwPWPhUN10kkpVi6Wq5HFdrVwxW8eq0s1g==",
"license": "BSD-3-Clause"
},
"node_modules/@lumino/signaling": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@lumino/signaling/-/signaling-1.9.0.tgz",
"integrity": "sha512-nxvBFF7WrpsPUe3zK2VIEYrzCA6IDf9wICuL1vo1lsVAlmlEwER2hF/HXwvaCfd6lThE1y9w5I3JWahLx4XLaw==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/algorithm": "^1.8.0"
}
},
"node_modules/@lumino/virtualdom": {
"version": "1.13.0",
"resolved": "https://registry.npmjs.org/@lumino/virtualdom/-/virtualdom-1.13.0.tgz",
"integrity": "sha512-TDolOVWQPCGiP8iOwUefTIqmDp8ycD7MiYo1g4Q8KUk8+Ce8SBEBILonZytVRTP9ZWazFNTf48jCdlGgKx68gg==",
"license": "BSD-3-Clause",
"dependencies": {
"@lumino/algorithm": "^1.8.0"
}
},
"node_modules/@lumino/widgets": {
"version": "1.28.0",
"resolved": "https://registry.npmjs.org/@lumino/widgets/-/widgets-1.28.0.tgz",
"integrity": "sha512-wcpmXA47qz6YBqHYc3Zbj7fcCZBWX5Wka684pPkNGvpTQY5HbtXceVsGgm/SzL1GzRedVL5EfsnSPcqYfdMV2w==",