forked from jupyterlab-contrib/jupyterlab-variableInspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyarn.lock
4085 lines (3542 loc) · 160 KB
/
yarn.lock
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
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@babel/code-frame@^7.0.0":
"integrity" "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="
"resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"
"version" "7.12.11"
dependencies:
"@babel/highlight" "^7.10.4"
"@babel/helper-validator-identifier@^7.10.4":
"integrity" "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw=="
"resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz"
"version" "7.12.11"
"@babel/highlight@^7.10.4":
"integrity" "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA=="
"resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz"
"version" "7.10.4"
dependencies:
"@babel/helper-validator-identifier" "^7.10.4"
"chalk" "^2.0.0"
"js-tokens" "^4.0.0"
"@babel/runtime@^7.1.2":
"integrity" "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="
"resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz"
"version" "7.12.5"
dependencies:
"regenerator-runtime" "^0.13.4"
"@blueprintjs/core@^3.36.0":
"integrity" "sha512-7VUyF+qWelDysajK0Xowlou+iqbGAFfGaM3znpmm7OEEIli5XRWjG9rhNuEk3sP7zbdOJpyqh5PAPDQvm5Sxmg=="
"resolved" "https://registry.npmjs.org/@blueprintjs/core/-/core-3.36.0.tgz"
"version" "3.36.0"
dependencies:
"@blueprintjs/icons" "^3.23.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"
"@blueprintjs/icons@^3.23.0":
"integrity" "sha512-QOQ3P5bU1FiEwnMBl5Chn433ONSSTIMgC+zZJttyXV0m8R7D1bPBJJqIMuANXtRld/Fj+8IzoQ6jfaVUG16slA=="
"resolved" "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.23.0.tgz"
"version" "3.23.0"
dependencies:
"classnames" "^2.2"
"tslib" "~1.13.0"
"@blueprintjs/select@^3.15.0":
"integrity" "sha512-pRiCVqzrJ+bV/Aac9OouxniD2DJVCVNnkk6KJET7PU9ZxD7Bo/42W9xmTlUCSd7r6FRRarYyKbRRjRXGP7U78g=="
"resolved" "https://registry.npmjs.org/@blueprintjs/select/-/select-3.15.0.tgz"
"version" "3.15.0"
dependencies:
"@blueprintjs/core" "^3.36.0"
"classnames" "^2.2"
"tslib" "~1.13.0"
"@discoveryjs/json-ext@^0.5.0":
"integrity" "sha512-HyYEUDeIj5rRQU2Hk5HTB2uHsbRQpF70nvMhVzi+VJR0X+xNEhjPui4/kBf3VeH/wqD28PT4sVOm8qqLjBrSZg=="
"resolved" "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz"
"version" "0.5.2"
"@eslint/eslintrc@^0.2.2":
"integrity" "sha512-EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ=="
"resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz"
"version" "0.2.2"
dependencies:
"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"
"lodash" "^4.17.19"
"minimatch" "^3.0.4"
"strip-json-comments" "^3.1.1"
"@fortawesome/fontawesome-free@^5.12.0":
"integrity" "sha512-7l/AX41m609L/EXI9EKH3Vs3v0iA8tKlIOGtw+kgcoanI7p+e4I4GYLqW3UXWiTnjSFymKSmTTPKYrivzbxxqA=="
"resolved" "https://registry.npmjs.org/@fortawesome/fontawesome-free/-/fontawesome-free-5.15.2.tgz"
"version" "5.15.2"
"@jupyterlab/application@^3.0.3":
"integrity" "sha512-aJDG5A/Rc1bWnKtoMM77k6hmjZrf0jRioYYFSbZrJ63k0KG27lCYR7EK1XNucRPMw2qz3IolfYJFPf+quYW9Iw=="
"resolved" "https://registry.npmjs.org/@jupyterlab/application/-/application-3.0.3.tgz"
"version" "3.0.3"
dependencies:
"@fortawesome/fontawesome-free" "^5.12.0"
"@jupyterlab/apputils" "^3.0.2"
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/docregistry" "^3.0.3"
"@jupyterlab/rendermime" "^3.0.3"
"@jupyterlab/rendermime-interfaces" "^3.0.2"
"@jupyterlab/services" "^6.0.2"
"@jupyterlab/statedb" "^3.0.1"
"@jupyterlab/translation" "^3.0.2"
"@jupyterlab/ui-components" "^3.0.2"
"@lumino/algorithm" "^1.3.3"
"@lumino/application" "^1.13.1"
"@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.16.1"
"@jupyterlab/apputils@^3.0.2":
"integrity" "sha512-nTXwpRUPSVR3yevQyGZH6kKsl41Df3nkKCjp8nAqwAPjcwv+nuxLIwnBQP1BFZ+JfIKn18aoZ8ULoH79qasKNg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/services" "^6.0.2"
"@jupyterlab/settingregistry" "^3.0.1"
"@jupyterlab/statedb" "^3.0.1"
"@jupyterlab/translation" "^3.0.2"
"@jupyterlab/ui-components" "^3.0.2"
"@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" "~1.27.4"
"url" "^0.11.0"
"@jupyterlab/attachments@^3.0.3":
"integrity" "sha512-U6d6NHXcujCefnQuSY/X0cwPpxRDzMzQbHci5uixdWpgt3wJbmTm5tVahgEUZdsTj2ne0gcEsUOeQBeDy6KjBg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/attachments/-/attachments-3.0.3.tgz"
"version" "3.0.3"
dependencies:
"@jupyterlab/nbformat" "^3.0.1"
"@jupyterlab/observables" "^4.0.1"
"@jupyterlab/rendermime" "^3.0.3"
"@jupyterlab/rendermime-interfaces" "^3.0.2"
"@lumino/disposable" "^1.4.3"
"@lumino/signaling" "^1.4.3"
"@jupyterlab/builder@^3.0.0-rc.13":
"integrity" "sha512-7ytv5UyHDq7bNTtCbFGIeVOa0pxwfTA33N+c/2Ct3qhYa50YMK5UwJhjaPpEOEHLr6yk4rztxKHYTMVaHxR3Kw=="
"resolved" "https://registry.npmjs.org/@jupyterlab/builder/-/builder-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"@jupyterlab/buildutils" "^3.0.1"
"@lumino/algorithm" "^1.3.3"
"@lumino/application" "^1.13.1"
"@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.16.1"
"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"
"mini-css-extract-plugin" "~1.3.2"
"path-browserify" "^1.0.0"
"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.3.1"
"webpack-cli" "^4.1.0"
"webpack-merge" "^5.1.2"
"worker-loader" "^3.0.2"
"@jupyterlab/buildutils@^3.0.1":
"integrity" "sha512-e2SHTmbReftGa+X8r/XY1tNzl65ZmDSGW4eBy8lrhXhVlHsjdj94WFMltX7owSfDLDzXxbBiGUBScIiMU/keHA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/buildutils/-/buildutils-3.0.1.tgz"
"version" "3.0.1"
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.0.0"
"package-json" "^6.5.0"
"prettier" "^2.1.1"
"semver" "^7.3.2"
"sort-package-json" "~1.44.0"
"typescript" "~4.1.3"
"@jupyterlab/cells@^3.0.3":
"integrity" "sha512-NufBnb7y3BiuXZTckj9U6ZOe0gBRMAaSpLXnC04XqtHHrJziZDc0PuiZHEZS7umMdoB04HKui/7/G9y6zjpN3A=="
"resolved" "https://registry.npmjs.org/@jupyterlab/cells/-/cells-3.0.3.tgz"
"version" "3.0.3"
dependencies:
"@jupyterlab/apputils" "^3.0.2"
"@jupyterlab/attachments" "^3.0.3"
"@jupyterlab/codeeditor" "^3.0.2"
"@jupyterlab/codemirror" "^3.0.2"
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/filebrowser" "^3.0.3"
"@jupyterlab/nbformat" "^3.0.1"
"@jupyterlab/observables" "^4.0.1"
"@jupyterlab/outputarea" "^3.0.3"
"@jupyterlab/rendermime" "^3.0.3"
"@jupyterlab/services" "^6.0.2"
"@jupyterlab/ui-components" "^3.0.2"
"@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@^3.0.2":
"integrity" "sha512-0pF/B1G+8l87QRcBCOFWieXGVyuJnTYO2Vp8R/jBKV0hqHljAgao40o1mInt1xGGSkTOcAydETbXEt1J4OCWuA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/nbformat" "^3.0.1"
"@jupyterlab/observables" "^4.0.1"
"@jupyterlab/translation" "^3.0.2"
"@jupyterlab/ui-components" "^3.0.2"
"@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@^3.0.2":
"integrity" "sha512-i6IhCHDTcTCrNK58I4OjNX9S4erkKu285c47hiJTHxO03YFHOjLtl+i0Ly76R8Qc1+3rpyQxztXve0ZA/K+apQ=="
"resolved" "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"@jupyterlab/apputils" "^3.0.2"
"@jupyterlab/codeeditor" "^3.0.2"
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/nbformat" "^3.0.1"
"@jupyterlab/observables" "^4.0.1"
"@jupyterlab/statusbar" "^3.0.2"
"@jupyterlab/translation" "^3.0.2"
"@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.57.0"
"react" "^17.0.1"
"@jupyterlab/console@^3.0.3":
"integrity" "sha512-Pk5eLlsDHppEGRXmvbhUdAByFizU8vxue3CNmmLW1dqBulCoCLMRVdBv+MlbMKhrrKQwvRshQ5u1zz8OMDSBkQ=="
"resolved" "https://registry.npmjs.org/@jupyterlab/console/-/console-3.0.3.tgz"
"version" "3.0.3"
dependencies:
"@jupyterlab/apputils" "^3.0.2"
"@jupyterlab/cells" "^3.0.3"
"@jupyterlab/codeeditor" "^3.0.2"
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/nbformat" "^3.0.1"
"@jupyterlab/observables" "^4.0.1"
"@jupyterlab/rendermime" "^3.0.3"
"@jupyterlab/services" "^6.0.2"
"@jupyterlab/translation" "^3.0.2"
"@jupyterlab/ui-components" "^3.0.2"
"@lumino/algorithm" "^1.3.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.16.1"
"@jupyterlab/coreutils@^5.0.1":
"integrity" "sha512-eYjEtZAgoRx0UJY/wfdm7Og+Z1dkcmEjTL5J6MfTROe164F6OCodEFbKECIyVfGt+hoAOiqs3Jg9cPqMw+DA3Q=="
"resolved" "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-5.0.1.tgz"
"version" "5.0.1"
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.4.7"
"@jupyterlab/csvviewer@^3.0.3":
"integrity" "sha512-vqkclF6jI83OB9JJrst3z5MID7C5AfoRVIVqXOqvfVw5jCOF+DaGig3g7sC0/NEYLJhHL9BAsjaGs+b0+OOmfw=="
"resolved" "https://registry.npmjs.org/@jupyterlab/csvviewer/-/csvviewer-3.0.3.tgz"
"version" "3.0.3"
dependencies:
"@jupyterlab/apputils" "^3.0.2"
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/docregistry" "^3.0.3"
"@jupyterlab/translation" "^3.0.2"
"@lumino/algorithm" "^1.3.3"
"@lumino/coreutils" "^1.5.3"
"@lumino/datagrid" "^0.16.1"
"@lumino/disposable" "^1.4.3"
"@lumino/messaging" "^1.4.3"
"@lumino/signaling" "^1.4.3"
"@lumino/widgets" "^1.16.1"
"@jupyterlab/docmanager@^3.0.3":
"integrity" "sha512-6zId9EWd/X/wlJ7Bhppsdn/5BVuAvMWFSGmv0FtjVPXbPoGN2jZviPwlux4o8cUFS6uj8s0U9eaFfwM5juh9qA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-3.0.3.tgz"
"version" "3.0.3"
dependencies:
"@jupyterlab/apputils" "^3.0.2"
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/docregistry" "^3.0.3"
"@jupyterlab/services" "^6.0.2"
"@jupyterlab/statusbar" "^3.0.2"
"@jupyterlab/translation" "^3.0.2"
"@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/docregistry@^3.0.3":
"integrity" "sha512-9qs8suB5fWpzfR4uUemR2lbEvOH9ROuSWNGZxuO8+mN6XEnI+PLbGDO2WuctGxXsWgkg/6foOxIl6xoceCo9vg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-3.0.3.tgz"
"version" "3.0.3"
dependencies:
"@jupyterlab/apputils" "^3.0.2"
"@jupyterlab/codeeditor" "^3.0.2"
"@jupyterlab/codemirror" "^3.0.2"
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/observables" "^4.0.1"
"@jupyterlab/rendermime" "^3.0.3"
"@jupyterlab/rendermime-interfaces" "^3.0.2"
"@jupyterlab/services" "^6.0.2"
"@jupyterlab/translation" "^3.0.2"
"@jupyterlab/ui-components" "^3.0.2"
"@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@^3.0.3":
"integrity" "sha512-XlOqvk7XinLadd23W45jI9QqRSpPetxwItyatvMqosR+jtSAuUJBBcFpYfu/TiSItBzKwZ8JuDJYlTJ399O7Wg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-3.0.3.tgz"
"version" "3.0.3"
dependencies:
"@jupyterlab/apputils" "^3.0.2"
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/docmanager" "^3.0.3"
"@jupyterlab/docregistry" "^3.0.3"
"@jupyterlab/services" "^6.0.2"
"@jupyterlab/statedb" "^3.0.1"
"@jupyterlab/statusbar" "^3.0.2"
"@jupyterlab/translation" "^3.0.2"
"@jupyterlab/ui-components" "^3.0.2"
"@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@^3.0.1":
"integrity" "sha512-cojRKJPoCPei8XiHqGx9IwjMI5llOumrSSYzyBR5qm/NYGOG1mgFwNW2aTf+MoUrZwhpQo8oW27p/W2k2zQAbQ=="
"resolved" "https://registry.npmjs.org/@jupyterlab/nbformat/-/nbformat-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"@lumino/coreutils" "^1.5.3"
"@jupyterlab/notebook@^3.0.3":
"integrity" "sha512-ennnJaO+fW4Bk6ibotHIYSkb3M3G8NEr+BvrSfIQizlagcuquvk+INO5m2fVL1G623dRaR+2WqNE0UkxK0dBJw=="
"resolved" "https://registry.npmjs.org/@jupyterlab/notebook/-/notebook-3.0.3.tgz"
"version" "3.0.3"
dependencies:
"@jupyterlab/apputils" "^3.0.2"
"@jupyterlab/cells" "^3.0.3"
"@jupyterlab/codeeditor" "^3.0.2"
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/docregistry" "^3.0.3"
"@jupyterlab/nbformat" "^3.0.1"
"@jupyterlab/observables" "^4.0.1"
"@jupyterlab/rendermime" "^3.0.3"
"@jupyterlab/services" "^6.0.2"
"@jupyterlab/statusbar" "^3.0.2"
"@jupyterlab/translation" "^3.0.2"
"@jupyterlab/ui-components" "^3.0.2"
"@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@^4.0.1":
"integrity" "sha512-f+y7w/eBQfw2AWe9cwa6wj5sqKxJMJYlzjUuSlXfSehKp7SR9s+L3d+JOBmfbBF5WHvaF9XA4cGkZM/HZt8ARQ=="
"resolved" "https://registry.npmjs.org/@jupyterlab/observables/-/observables-4.0.1.tgz"
"version" "4.0.1"
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"
"@jupyterlab/outputarea@^3.0.3":
"integrity" "sha512-NBB0aJE0IVPNAEiLj8shLKAX9oAsl1oreKcfd/cfYYQFflKHpWTxlzA25NNv7xcfVqT78i704FemW/k/9kPozA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/outputarea/-/outputarea-3.0.3.tgz"
"version" "3.0.3"
dependencies:
"@jupyterlab/apputils" "^3.0.2"
"@jupyterlab/nbformat" "^3.0.1"
"@jupyterlab/observables" "^4.0.1"
"@jupyterlab/rendermime" "^3.0.3"
"@jupyterlab/rendermime-interfaces" "^3.0.2"
"@jupyterlab/services" "^6.0.2"
"@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-interfaces@^3.0.2":
"integrity" "sha512-BxGXIrGziW+9fvzDF57F4kebJz9p1SWH7Id6VNI21JzCZxJkz7wZpbeUfHzpUiXIh+qogEXEESKKuQg9CzNyqw=="
"resolved" "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"@jupyterlab/translation" "^3.0.2"
"@lumino/coreutils" "^1.5.3"
"@lumino/widgets" "^1.16.1"
"@jupyterlab/rendermime@^3.0.3":
"integrity" "sha512-s72CajNpj0UEe4rJVnm5pVbf/jZXc3c5YuXF39BTxpGtsg0uqSysPpYtc1/VjsBoS3R5Bc73P3NIEvOzl6G5cA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-3.0.3.tgz"
"version" "3.0.3"
dependencies:
"@jupyterlab/apputils" "^3.0.2"
"@jupyterlab/codemirror" "^3.0.2"
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/nbformat" "^3.0.1"
"@jupyterlab/observables" "^4.0.1"
"@jupyterlab/rendermime-interfaces" "^3.0.2"
"@jupyterlab/services" "^6.0.2"
"@jupyterlab/translation" "^3.0.2"
"@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" "^1.1.1"
"@jupyterlab/services@^6.0.2":
"integrity" "sha512-J0wghVeqMlG71VXkOhlh3ZcyG787wzz9hSFHMGu/1ATlIDtn9z8dbdCAn92rd12jD1nDX1L2KcyjH5pLT+CKeA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/services/-/services-6.0.2.tgz"
"version" "6.0.2"
dependencies:
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/nbformat" "^3.0.1"
"@jupyterlab/observables" "^4.0.1"
"@jupyterlab/settingregistry" "^3.0.1"
"@jupyterlab/statedb" "^3.0.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.2.0"
"@jupyterlab/settingregistry@^3.0.1":
"integrity" "sha512-Em/gDygAojndYo7qR4jG0EKCInVQEhTRAnTE/sOYXhwD74Ib3ppFl67N8CvJSr8+jSFhDrLyyVaevI1o6fep9w=="
"resolved" "https://registry.npmjs.org/@jupyterlab/settingregistry/-/settingregistry-3.0.1.tgz"
"version" "3.0.1"
dependencies:
"@jupyterlab/statedb" "^3.0.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"
"@jupyterlab/statedb@^3.0.1":
"integrity" "sha512-+00qBVlboCz945o2CFXrCUJ9oyKcAviA7+dlnE92N5UWBelp8dulMAgWNIW8Uew5O0mvbb1dVAcN9bnbLphGfw=="
"resolved" "https://registry.npmjs.org/@jupyterlab/statedb/-/statedb-3.0.1.tgz"
"version" "3.0.1"
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"
"@jupyterlab/statusbar@^3.0.2":
"integrity" "sha512-71sx7GRR4FGJExBjBB8TMD63h5wv09aRLO+cQj3xMygG47EX9TaW2Q8zAq4ZQM400UNAh/NGVmr7P7EBdH8jhg=="
"resolved" "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"@jupyterlab/apputils" "^3.0.2"
"@jupyterlab/codeeditor" "^3.0.2"
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/services" "^6.0.2"
"@jupyterlab/translation" "^3.0.2"
"@jupyterlab/ui-components" "^3.0.2"
"@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"
"@jupyterlab/translation@^3.0.2":
"integrity" "sha512-OAA3+aD5pxXroB2z3M0xXWRJn246aooAXiPV7lQFFN1IR2Aovb+sBB61TQr+sjqDpHfVA9qADC65RIsr3XOmoA=="
"resolved" "https://registry.npmjs.org/@jupyterlab/translation/-/translation-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"@jupyterlab/coreutils" "^5.0.1"
"@jupyterlab/services" "^6.0.2"
"@jupyterlab/statedb" "^3.0.1"
"@lumino/coreutils" "^1.5.3"
"@jupyterlab/ui-components@^3.0.2":
"integrity" "sha512-QfTMwAMDfHNtJZ0+zCeW8EXPlcPyGKooiMCmZXd1onFIxSpg/mdwV231uiakwARt3on+XBT8JrMgoSf03ywV6w=="
"resolved" "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-3.0.2.tgz"
"version" "3.0.2"
dependencies:
"@blueprintjs/core" "^3.36.0"
"@blueprintjs/select" "^3.15.0"
"@jupyterlab/coreutils" "^5.0.1"
"@lumino/coreutils" "^1.5.3"
"@lumino/signaling" "^1.4.3"
"@lumino/virtualdom" "^1.8.0"
"@lumino/widgets" "^1.16.1"
"react" "^17.0.1"
"react-dom" "^17.0.1"
"typestyle" "^2.0.4"
"@lumino/algorithm@^1.2.3", "@lumino/algorithm@^1.3.3":
"integrity" "sha512-I2BkssbOSLq3rDjgAC3fzf/zAIwkRUnAh60MO0lYcaFdSGyI15w4K3gwZHGIO0p9cKEiNHLXKEODGmOjMLOQ3g=="
"resolved" "https://registry.npmjs.org/@lumino/algorithm/-/algorithm-1.3.3.tgz"
"version" "1.3.3"
"@lumino/application@^1.13.1":
"integrity" "sha512-Q1M+75no4x3OvnmspAs81ANoPCXmPcHz9JyOVAQ8jEVsjhsH4anB/oWo72l/Ud9mLVd2nEFvh432K7tPCmkpuQ=="
"resolved" "https://registry.npmjs.org/@lumino/application/-/application-1.14.0.tgz"
"version" "1.14.0"
dependencies:
"@lumino/commands" "^1.12.0"
"@lumino/coreutils" "^1.5.3"
"@lumino/widgets" "^1.17.0"
"@lumino/collections@^1.3.3":
"integrity" "sha512-vN3GSV5INkgM6tMLd+WqTgaPnQNTY7L/aFUtTOC8TJQm+vg1eSmR4fNXsoGHM3uA85ctSJThvdZr5triu1Iajg=="
"resolved" "https://registry.npmjs.org/@lumino/collections/-/collections-1.3.3.tgz"
"version" "1.3.3"
dependencies:
"@lumino/algorithm" "^1.3.3"
"@lumino/commands@^1.12.0":
"integrity" "sha512-5TFlhDzZk1X8rCBjhh0HH3j6CcJ03mx2Pd/1rGa7MB5R+3+yYYk+gTlfHRqsxdehNRmiISaHRSrMnW8bynW7ZQ=="
"resolved" "https://registry.npmjs.org/@lumino/commands/-/commands-1.12.0.tgz"
"version" "1.12.0"
dependencies:
"@lumino/algorithm" "^1.3.3"
"@lumino/coreutils" "^1.5.3"
"@lumino/disposable" "^1.4.3"
"@lumino/domutils" "^1.2.3"
"@lumino/keyboard" "^1.2.3"
"@lumino/signaling" "^1.4.3"
"@lumino/virtualdom" "^1.8.0"
"@lumino/coreutils@^1.4.2", "@lumino/coreutils@^1.5.3":
"integrity" "sha512-G72jJ6sgOwAUuilz+cri7LpHIJxllK+qz+YZUC3fyyWHK7oRlZemcc43jZAVE+tagTdMxKYSQWNIVzM5lI8sWw=="
"resolved" "https://registry.npmjs.org/@lumino/coreutils/-/coreutils-1.5.3.tgz"
"version" "1.5.3"
"@lumino/datagrid@^0.16.1":
"integrity" "sha512-SUyUdNYwGQgTrM39zAi5D5IBL8wUG3WCuFrRb23yyjp3bgDXon8D7n73+esdn4fXOrFKLJRQU4+7y85mh5pddQ=="
"resolved" "https://registry.npmjs.org/@lumino/datagrid/-/datagrid-0.16.1.tgz"
"version" "0.16.1"
dependencies:
"@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/keyboard" "^1.2.3"
"@lumino/messaging" "^1.4.3"
"@lumino/signaling" "^1.4.3"
"@lumino/widgets" "^1.16.1"
"@lumino/datagrid@^0.5":
"integrity" "sha512-5W86WnbZKrX/P+WkXMPRkToM0yISjmKu2ewJ2CtyKw+OsGsBcgshM147k4wxDskAtIv/+wsgdth7sIdzx6OW+A=="
"resolved" "https://registry.npmjs.org/@lumino/datagrid/-/datagrid-0.5.3.tgz"
"version" "0.5.3"
dependencies:
"@lumino/algorithm" "^1.2.3"
"@lumino/coreutils" "^1.4.2"
"@lumino/disposable" "^1.3.5"
"@lumino/domutils" "^1.1.7"
"@lumino/dragdrop" "^1.5.1"
"@lumino/keyboard" "^1.1.6"
"@lumino/messaging" "^1.3.3"
"@lumino/signaling" "^1.3.5"
"@lumino/widgets" "^1.11.1"
"@lumino/disposable@^1.3.5", "@lumino/disposable@^1.4.3":
"integrity" "sha512-zKQ9N2AEGcYpG6PJkeMWQXvoXU9w1ocji78z+fboM/SmSgtOIVGeQt3fZeldymf0XrlOPpNXs1ZFg54yWUMnXA=="
"resolved" "https://registry.npmjs.org/@lumino/disposable/-/disposable-1.4.3.tgz"
"version" "1.4.3"
dependencies:
"@lumino/algorithm" "^1.3.3"
"@lumino/signaling" "^1.4.3"
"@lumino/domutils@^1.1.7", "@lumino/domutils@^1.2.3":
"integrity" "sha512-SEi8WZSy+DWMkL5CfAY78MHbi3x83AVmRFxjs9+A6qsFPde+Hr1I4DNtLsSDmfAWsobHHgBnjyNp2ZkQEq0IEA=="
"resolved" "https://registry.npmjs.org/@lumino/domutils/-/domutils-1.2.3.tgz"
"version" "1.2.3"
"@lumino/dragdrop@^1.5.1", "@lumino/dragdrop@^1.7.1":
"integrity" "sha512-IeSSOTmpqBSWz+EVsbGVeHe/KIaHaUsQXZ4BJCEbCKgNGHbqMfUOtlneiKq7rEhZGF4wYs7gWWjNhMVZbUGO9Q=="
"resolved" "https://registry.npmjs.org/@lumino/dragdrop/-/dragdrop-1.7.1.tgz"
"version" "1.7.1"
dependencies:
"@lumino/coreutils" "^1.5.3"
"@lumino/disposable" "^1.4.3"
"@lumino/keyboard@^1.1.6", "@lumino/keyboard@^1.2.3":
"integrity" "sha512-ibS0sz0VABeuJXx2JVSz36sUBMUOcQNCNPybVhwzN/GkJFs0dnDKluMu+3Px0tkB2y33bGPZU/RLZY1Xj/faEA=="
"resolved" "https://registry.npmjs.org/@lumino/keyboard/-/keyboard-1.2.3.tgz"
"version" "1.2.3"
"@lumino/messaging@^1.3.3", "@lumino/messaging@^1.4.3":
"integrity" "sha512-wa2Pj2KOuLNLS2n0wVBzUVFGbvjL1FLbuCOAUEYfN6xXVleqqtGGzd08uTF7ebu01KCO3VQ38+dkvoaM/C2qPw=="
"resolved" "https://registry.npmjs.org/@lumino/messaging/-/messaging-1.4.3.tgz"
"version" "1.4.3"
dependencies:
"@lumino/algorithm" "^1.3.3"
"@lumino/collections" "^1.3.3"
"@lumino/polling@^1.3.3":
"integrity" "sha512-uMRi6sPRnKW8m38WUY3qox1jxwzpvceafUbDJATCwyrZ48+YoY5Fxfmd9dqwioHS1aq9np5c6L35a9ZGuS0Maw=="
"resolved" "https://registry.npmjs.org/@lumino/polling/-/polling-1.3.3.tgz"
"version" "1.3.3"
dependencies:
"@lumino/coreutils" "^1.5.3"
"@lumino/disposable" "^1.4.3"
"@lumino/signaling" "^1.4.3"
"@lumino/properties@^1.2.3":
"integrity" "sha512-dbS9V/L+RpQoRjxHMAGh1JYoXaLA6F7xkVbg/vmYXqdXZ7DguO5C3Qteu9tNp7Z7Q31TqFWUCrniTI9UJiJCoQ=="
"resolved" "https://registry.npmjs.org/@lumino/properties/-/properties-1.2.3.tgz"
"version" "1.2.3"
"@lumino/signaling@^1.3.5", "@lumino/signaling@^1.4.3":
"integrity" "sha512-6clc8SMcH0tyKXIX31xw6sxjxJl5hj4YRd1DTHTS62cegQ0FkO8JjJeuv+Nc1pgTg6nEAf65aSOHpUdsFHDAvQ=="
"resolved" "https://registry.npmjs.org/@lumino/signaling/-/signaling-1.4.3.tgz"
"version" "1.4.3"
dependencies:
"@lumino/algorithm" "^1.3.3"
"@lumino/virtualdom@^1.8.0":
"integrity" "sha512-X/1b8b7TxB9tb4+xQiS8oArcA/AK7NBZrsg2dzu/gHa3JC45R8nzQ+0tObD8Nd0gF/e9w9Ps9M62rLfefcbbKw=="
"resolved" "https://registry.npmjs.org/@lumino/virtualdom/-/virtualdom-1.8.0.tgz"
"version" "1.8.0"
dependencies:
"@lumino/algorithm" "^1.3.3"
"@lumino/widgets@^1.11.1", "@lumino/widgets@^1.16.1", "@lumino/widgets@^1.17.0":
"integrity" "sha512-4MBIaYPTRmpAczXe1s7jg1f1pZ5iOnswLsjex32Debctvc2TnB3gAHm6GLKZ6ptiIGKp0N+WJbQyT+cpmNfSyA=="
"resolved" "https://registry.npmjs.org/@lumino/widgets/-/widgets-1.17.0.tgz"
"version" "1.17.0"
dependencies:
"@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/dragdrop" "^1.7.1"
"@lumino/keyboard" "^1.2.3"
"@lumino/messaging" "^1.4.3"
"@lumino/properties" "^1.2.3"
"@lumino/signaling" "^1.4.3"
"@lumino/virtualdom" "^1.8.0"
"@nodelib/fs.scandir@2.1.4":
"integrity" "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz"
"version" "2.1.4"
dependencies:
"@nodelib/fs.stat" "2.0.4"
"run-parallel" "^1.1.9"
"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.4":
"integrity" "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz"
"version" "2.0.4"
"@nodelib/fs.walk@^1.2.3":
"integrity" "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow=="
"resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz"
"version" "1.2.6"
dependencies:
"@nodelib/fs.scandir" "2.1.4"
"fastq" "^1.6.0"
"@npmcli/move-file@^1.0.1":
"integrity" "sha512-Iv2iq0JuyYjKeFkSR4LPaCdDZwlGK9X2cP/01nJcp3yMJ1FjNd9vpiEYvLUgzBxKPg2SFmaOhizoQsPc0LWeOQ=="
"resolved" "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.0.tgz"
"version" "1.1.0"
dependencies:
"mkdirp" "^1.0.4"
"rimraf" "^2.7.1"
"@sindresorhus/is@^0.14.0":
"integrity" "sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ=="
"resolved" "https://registry.npmjs.org/@sindresorhus/is/-/is-0.14.0.tgz"
"version" "0.14.0"
"@szmarczak/http-timer@^1.1.2":
"integrity" "sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="
"resolved" "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-1.1.2.tgz"
"version" "1.1.2"
dependencies:
"defer-to-connect" "^1.0.1"
"@types/dom4@^2.0.1":
"integrity" "sha512-kSkVAvWmMZiCYtvqjqQEwOmvKwcH+V4uiv3qPQ8pAh1Xl39xggGEo8gHUqV4waYGHezdFw0rKBR8Jt0CrQSDZA=="
"resolved" "https://registry.npmjs.org/@types/dom4/-/dom4-2.0.1.tgz"
"version" "2.0.1"
"@types/eslint-scope@^3.7.0":
"integrity" "sha512-O/ql2+rrCUe2W2rs7wMR+GqPRcgB6UiqN5RhrR5xruFlY7l9YLMn0ZkDzjoHLeiFkR8MCQZVudUuuvQ2BLC9Qw=="
"resolved" "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.0.tgz"
"version" "3.7.0"
dependencies:
"@types/eslint" "*"
"@types/estree" "*"
"@types/eslint-visitor-keys@^1.0.0":
"integrity" "sha512-OCutwjDZ4aFS6PB1UZ988C4YgwlBHJd6wCeQqaLdmadZ/7e+w79+hbMUFC1QXDNCmdyoRfAFdm0RypzwR+Qpag=="
"resolved" "https://registry.npmjs.org/@types/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz"
"version" "1.0.0"
"@types/eslint@*":
"integrity" "sha512-I+1sYH+NPQ3/tVqCeUSBwTE/0heyvtXqpIopUUArlBm0Kpocb8FbMa3AZ/ASKIFpN3rnEx932TTXDbt9OXsNDw=="
"resolved" "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.6.tgz"
"version" "7.2.6"
dependencies:
"@types/estree" "*"
"@types/json-schema" "*"
"@types/estree@*", "@types/estree@^0.0.45":
"integrity" "sha512-jnqIUKDUqJbDIUxm0Uj7bnlMnRm1T/eZ9N+AVMqhPgzrba2GhGG5o/jCTwmdPK709nEZsGoMzXEDUjcXHa3W0g=="
"resolved" "https://registry.npmjs.org/@types/estree/-/estree-0.0.45.tgz"
"version" "0.0.45"
"@types/glob@^7.1.1":
"integrity" "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w=="
"resolved" "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz"
"version" "7.1.3"
dependencies:
"@types/minimatch" "*"
"@types/node" "*"
"@types/json-schema@*", "@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6":
"integrity" "sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw=="
"resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz"
"version" "7.0.6"
"@types/minimatch@*":
"integrity" "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA=="
"resolved" "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz"
"version" "3.0.3"
"@types/node@*":
"integrity" "sha512-cHYfKsnwllYhjOzuC5q1VpguABBeecUp24yFluHpn/BQaVxB1CuQ1FSRZCzrPxrkIfWISXV2LbeoBthLWg0+0A=="
"resolved" "https://registry.npmjs.org/@types/node/-/node-14.14.21.tgz"
"version" "14.14.21"
"@types/prop-types@*":
"integrity" "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw=="
"resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz"
"version" "15.7.3"
"@types/react@^17.0.0":
"integrity" "sha512-aj/L7RIMsRlWML3YB6KZiXB3fV2t41+5RBGYF8z+tAKU43Px8C3cYUZsDvf1/+Bm4FK21QWBrDutu8ZJ/70qOw=="
"resolved" "https://registry.npmjs.org/@types/react/-/react-17.0.0.tgz"
"version" "17.0.0"
dependencies:
"@types/prop-types" "*"
"csstype" "^3.0.2"
"@typescript-eslint/eslint-plugin@^2.27.0":
"integrity" "sha512-4zY3Z88rEE99+CNvTbXSyovv2z9PNOVffTWD2W8QF5s2prBQtwN2zadqERcrHpcR7O/+KMI3fcTAmUUhK/iQcQ=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.34.0.tgz"
"version" "2.34.0"
dependencies:
"@typescript-eslint/experimental-utils" "2.34.0"
"functional-red-black-tree" "^1.0.1"
"regexpp" "^3.0.0"
"tsutils" "^3.17.1"
"@typescript-eslint/experimental-utils@2.34.0":
"integrity" "sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz"
"version" "2.34.0"
dependencies:
"@types/json-schema" "^7.0.3"
"@typescript-eslint/typescript-estree" "2.34.0"
"eslint-scope" "^5.0.0"
"eslint-utils" "^2.0.0"
"@typescript-eslint/parser@^2.27.0":
"integrity" "sha512-03ilO0ucSD0EPTw2X4PntSIRFtDPWjrVq7C3/Z3VQHRC7+13YB55rcJI3Jt+YgeHbjUdJPcPa7b23rXCBokuyA=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-2.34.0.tgz"
"version" "2.34.0"
dependencies:
"@types/eslint-visitor-keys" "^1.0.0"
"@typescript-eslint/experimental-utils" "2.34.0"
"@typescript-eslint/typescript-estree" "2.34.0"
"eslint-visitor-keys" "^1.1.0"
"@typescript-eslint/typescript-estree@2.34.0":
"integrity" "sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg=="
"resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz"
"version" "2.34.0"
dependencies:
"debug" "^4.1.1"
"eslint-visitor-keys" "^1.1.0"
"glob" "^7.1.6"
"is-glob" "^4.0.1"
"lodash" "^4.17.15"
"semver" "^7.3.2"
"tsutils" "^3.17.1"
"@webassemblyjs/ast@1.11.0":
"integrity" "sha512-kX2W49LWsbthrmIRMbQZuQDhGtjyqXfEmmHyEi4XWnSZtPmxY0+3anPIzsnRb45VH/J55zlOfWvZuY47aJZTJg=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.0.tgz"
"version" "1.11.0"
dependencies:
"@webassemblyjs/helper-numbers" "1.11.0"
"@webassemblyjs/helper-wasm-bytecode" "1.11.0"
"@webassemblyjs/floating-point-hex-parser@1.11.0":
"integrity" "sha512-Q/aVYs/VnPDVYvsCBL/gSgwmfjeCb4LW8+TMrO3cSzJImgv8lxxEPM2JA5jMrivE7LSz3V+PFqtMbls3m1exDA=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.0.tgz"
"version" "1.11.0"
"@webassemblyjs/helper-api-error@1.11.0":
"integrity" "sha512-baT/va95eXiXb2QflSx95QGT5ClzWpGaa8L7JnJbgzoYeaA27FCvuBXU758l+KXWRndEmUXjP0Q5fibhavIn8w=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.0.tgz"
"version" "1.11.0"
"@webassemblyjs/helper-buffer@1.11.0":
"integrity" "sha512-u9HPBEl4DS+vA8qLQdEQ6N/eJQ7gT7aNvMIo8AAWvAl/xMrcOSiI2M0MAnMCy3jIFke7bEee/JwdX1nUpCtdyA=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.0.tgz"
"version" "1.11.0"
"@webassemblyjs/helper-numbers@1.11.0":
"integrity" "sha512-DhRQKelIj01s5IgdsOJMKLppI+4zpmcMQ3XboFPLwCpSNH6Hqo1ritgHgD0nqHeSYqofA6aBN/NmXuGjM1jEfQ=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.0.tgz"
"version" "1.11.0"
dependencies:
"@webassemblyjs/floating-point-hex-parser" "1.11.0"
"@webassemblyjs/helper-api-error" "1.11.0"
"@xtuc/long" "4.2.2"
"@webassemblyjs/helper-wasm-bytecode@1.11.0":
"integrity" "sha512-MbmhvxXExm542tWREgSFnOVo07fDpsBJg3sIl6fSp9xuu75eGz5lz31q7wTLffwL3Za7XNRCMZy210+tnsUSEA=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.0.tgz"
"version" "1.11.0"
"@webassemblyjs/helper-wasm-section@1.11.0":
"integrity" "sha512-3Eb88hcbfY/FCukrg6i3EH8H2UsD7x8Vy47iVJrP967A9JGqgBVL9aH71SETPx1JrGsOUVLo0c7vMCN22ytJew=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.0.tgz"
"version" "1.11.0"
dependencies:
"@webassemblyjs/ast" "1.11.0"
"@webassemblyjs/helper-buffer" "1.11.0"
"@webassemblyjs/helper-wasm-bytecode" "1.11.0"
"@webassemblyjs/wasm-gen" "1.11.0"
"@webassemblyjs/ieee754@1.11.0":
"integrity" "sha512-KXzOqpcYQwAfeQ6WbF6HXo+0udBNmw0iXDmEK5sFlmQdmND+tr773Ti8/5T/M6Tl/413ArSJErATd8In3B+WBA=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.0.tgz"
"version" "1.11.0"
dependencies:
"@xtuc/ieee754" "^1.2.0"
"@webassemblyjs/leb128@1.11.0":
"integrity" "sha512-aqbsHa1mSQAbeeNcl38un6qVY++hh8OpCOzxhixSYgbRfNWcxJNJQwe2rezK9XEcssJbbWIkblaJRwGMS9zp+g=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.0.tgz"
"version" "1.11.0"
dependencies:
"@xtuc/long" "4.2.2"
"@webassemblyjs/utf8@1.11.0":
"integrity" "sha512-A/lclGxH6SpSLSyFowMzO/+aDEPU4hvEiooCMXQPcQFPPJaYcPQNKGOCLUySJsYJ4trbpr+Fs08n4jelkVTGVw=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.0.tgz"
"version" "1.11.0"
"@webassemblyjs/wasm-edit@1.11.0":
"integrity" "sha512-JHQ0damXy0G6J9ucyKVXO2j08JVJ2ntkdJlq1UTiUrIgfGMmA7Ik5VdC/L8hBK46kVJgujkBIoMtT8yVr+yVOQ=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.0.tgz"
"version" "1.11.0"
dependencies:
"@webassemblyjs/ast" "1.11.0"
"@webassemblyjs/helper-buffer" "1.11.0"
"@webassemblyjs/helper-wasm-bytecode" "1.11.0"
"@webassemblyjs/helper-wasm-section" "1.11.0"
"@webassemblyjs/wasm-gen" "1.11.0"
"@webassemblyjs/wasm-opt" "1.11.0"
"@webassemblyjs/wasm-parser" "1.11.0"
"@webassemblyjs/wast-printer" "1.11.0"
"@webassemblyjs/wasm-gen@1.11.0":
"integrity" "sha512-BEUv1aj0WptCZ9kIS30th5ILASUnAPEvE3tVMTrItnZRT9tXCLW2LEXT8ezLw59rqPP9klh9LPmpU+WmRQmCPQ=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.0.tgz"
"version" "1.11.0"
dependencies:
"@webassemblyjs/ast" "1.11.0"
"@webassemblyjs/helper-wasm-bytecode" "1.11.0"
"@webassemblyjs/ieee754" "1.11.0"
"@webassemblyjs/leb128" "1.11.0"
"@webassemblyjs/utf8" "1.11.0"
"@webassemblyjs/wasm-opt@1.11.0":
"integrity" "sha512-tHUSP5F4ywyh3hZ0+fDQuWxKx3mJiPeFufg+9gwTpYp324mPCQgnuVKwzLTZVqj0duRDovnPaZqDwoyhIO8kYg=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.0.tgz"
"version" "1.11.0"
dependencies:
"@webassemblyjs/ast" "1.11.0"
"@webassemblyjs/helper-buffer" "1.11.0"
"@webassemblyjs/wasm-gen" "1.11.0"
"@webassemblyjs/wasm-parser" "1.11.0"
"@webassemblyjs/wasm-parser@1.11.0":
"integrity" "sha512-6L285Sgu9gphrcpDXINvm0M9BskznnzJTE7gYkjDbxET28shDqp27wpruyx3C2S/dvEwiigBwLA1cz7lNUi0kw=="
"resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.0.tgz"
"version" "1.11.0"
dependencies:
"@webassemblyjs/ast" "1.11.0"
"@webassemblyjs/helper-api-error" "1.11.0"
"@webassemblyjs/helper-wasm-bytecode" "1.11.0"
"@webassemblyjs/ieee754" "1.11.0"
"@webassemblyjs/leb128" "1.11.0"
"@webassemblyjs/utf8" "1.11.0"