-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage-lock.json
6142 lines (6142 loc) · 222 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": "jupyter-clarity",
"version": "0.0.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
"@babel/runtime": {
"version": "7.5.5",
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.5.5.tgz",
"integrity": "sha512-28QvEGyQyNkB0/m2B4FU7IEZGK2NUrcMtT6BZEFALTguLk+AUT6ofsHtPk5QyjAdUkpMJ+/Em+quwz4HOt30AQ==",
"requires": {
"regenerator-runtime": "^0.13.2"
}
},
"@blueprintjs/core": {
"version": "3.18.0",
"resolved": "https://registry.npmjs.org/@blueprintjs/core/-/core-3.18.0.tgz",
"integrity": "sha512-dr3A6uhpAAWmf5muY6PFQp5EgEzinRLZa/TGQMA05q1P2xrOn/LYlsqJWJBUJ3j9tmh1RP8VPeu1HmosQb3J7w==",
"requires": {
"@blueprintjs/icons": "^3.10.0",
"@types/dom4": "^2.0.1",
"classnames": "^2.2",
"dom4": "^2.1.5",
"normalize.css": "^8.0.1",
"popper.js": "^1.15.0",
"react-popper": "^1.3.3",
"react-transition-group": "^2.9.0",
"resize-observer-polyfill": "^1.5.1",
"tslib": "~1.9.0"
},
"dependencies": {
"tslib": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz",
"integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ=="
}
}
},
"@blueprintjs/icons": {
"version": "3.10.0",
"resolved": "https://registry.npmjs.org/@blueprintjs/icons/-/icons-3.10.0.tgz",
"integrity": "sha512-lyAUpkr3qEStPcJpMnxRKuVAPvaRNSce1ySPbkE58zPmD4WBya2gNrWex41xoqRYM0GsiBSwH9CnpY8t6fZKUA==",
"requires": {
"classnames": "^2.2",
"tslib": "~1.9.0"
},
"dependencies": {
"tslib": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz",
"integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ=="
}
}
},
"@blueprintjs/select": {
"version": "3.10.0",
"resolved": "https://registry.npmjs.org/@blueprintjs/select/-/select-3.10.0.tgz",
"integrity": "sha512-Akm/L5tndrOUuf05od9IJ0WSQgHdbJ4/i2RRoLLH5ZiI8s1OZiCbKJYDSCbCOTviCdZSuL0qkJsBcYhOI/Czeg==",
"requires": {
"@blueprintjs/core": "^3.18.0",
"classnames": "^2.2",
"tslib": "~1.9.0"
},
"dependencies": {
"tslib": {
"version": "1.9.3",
"resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz",
"integrity": "sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ=="
}
}
},
"@jupyterlab/application": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/application/-/application-1.0.2.tgz",
"integrity": "sha512-B0cpY7eLN4e6t6n1ktejfUYb4c1wsizSEhORrLvQ/EiKBG5t++I87SKwxOFyZE2e6QVZoUDkGDM+n4xTX6tFRg==",
"requires": {
"@jupyterlab/apputils": "^1.0.2",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/docregistry": "^1.0.2",
"@jupyterlab/rendermime": "^1.0.2",
"@jupyterlab/rendermime-interfaces": "^1.3.0",
"@jupyterlab/services": "^4.0.2",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/application": "^1.6.3",
"@phosphor/commands": "^1.6.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/messaging": "^1.2.3",
"@phosphor/properties": "^1.1.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0",
"font-awesome": "~4.7.0"
}
},
"@jupyterlab/apputils": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-1.0.2.tgz",
"integrity": "sha512-3n/Dqau0s4v6+MjWLRuoZQrr/BdhEgmEj9Kfkw562b/KuXo+JtsLE3FVzvi7gMK2duPHqv4B56QP8sl1Z9Hyaw==",
"requires": {
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/services": "^4.0.2",
"@jupyterlab/ui-components": "^1.0.0",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/commands": "^1.6.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/domutils": "^1.1.3",
"@phosphor/messaging": "^1.2.3",
"@phosphor/properties": "^1.1.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/virtualdom": "^1.1.3",
"@phosphor/widgets": "^1.8.0",
"@types/react": "~16.8.18",
"react": "~16.8.4",
"react-dom": "~16.8.4",
"sanitize-html": "~1.20.1"
}
},
"@jupyterlab/attachments": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/attachments/-/attachments-1.0.2.tgz",
"integrity": "sha512-M3fDgoaKFUUSM7B3OFCq+iXes4lel4fQpaVxePsYxZbisr1ajMW7mwtM9V1fSY6pujiik6rmbFFJAyhEz/CBZg==",
"requires": {
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/observables": "^2.2.0",
"@jupyterlab/rendermime": "^1.0.2",
"@jupyterlab/rendermime-interfaces": "^1.3.0",
"@phosphor/disposable": "^1.2.0",
"@phosphor/signaling": "^1.2.3"
}
},
"@jupyterlab/cells": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/cells/-/cells-1.0.2.tgz",
"integrity": "sha512-KTdYSWnyoRIaTY9FUb2kmtO08kjqTzdUnq9eJMHlJlBMi5sClyZTNU10LpiQo0stEiLsIk1OGuXutNtykVwqoA==",
"requires": {
"@jupyterlab/apputils": "^1.0.2",
"@jupyterlab/attachments": "^1.0.2",
"@jupyterlab/codeeditor": "^1.0.0",
"@jupyterlab/codemirror": "^1.0.2",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/observables": "^2.2.0",
"@jupyterlab/outputarea": "^1.0.2",
"@jupyterlab/rendermime": "^1.0.2",
"@jupyterlab/services": "^4.0.2",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/messaging": "^1.2.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/virtualdom": "^1.1.3",
"@phosphor/widgets": "^1.8.0",
"react": "~16.8.4"
}
},
"@jupyterlab/codeeditor": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-1.0.0.tgz",
"integrity": "sha512-unv4RmDCXsWCW+ieL8je3X6sJValYQNVoHNWA1/RD6mOydh4G9sDmCZ6WM1DboG1OHnMr6pzz0HmA/jvA/JO1w==",
"requires": {
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/observables": "^2.2.0",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/dragdrop": "^1.3.3",
"@phosphor/messaging": "^1.2.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0"
}
},
"@jupyterlab/codemirror": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-1.0.2.tgz",
"integrity": "sha512-Hkmu7GVb4ke+DRAJpKQac78JjoizoblLicYAr5j1wa5ASxP4EiR+FNdQV61heD2U7ES0rSA9HmlHVFMQgldzCA==",
"requires": {
"@jupyterlab/apputils": "^1.0.2",
"@jupyterlab/codeeditor": "^1.0.0",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/observables": "^2.2.0",
"@jupyterlab/statusbar": "^1.0.2",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/commands": "^1.6.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0",
"codemirror": "~5.47.0",
"react": "~16.8.4"
}
},
"@jupyterlab/coreutils": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-3.0.0.tgz",
"integrity": "sha512-l48G1qhff4CZpsxjje92S6caLUixzfDMAD5vjNZL9obexUAMF+344cpVWsm2r2CQROUW7bPB8wjAtFbp8nK/QQ==",
"requires": {
"@phosphor/commands": "^1.6.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/properties": "^1.1.3",
"@phosphor/signaling": "^1.2.3",
"ajv": "^6.5.5",
"json5": "^2.1.0",
"minimist": "~1.2.0",
"moment": "^2.24.0",
"path-posix": "~1.0.0",
"url-parse": "~1.4.3"
},
"dependencies": {
"json5": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz",
"integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==",
"requires": {
"minimist": "^1.2.0"
}
}
}
},
"@jupyterlab/docmanager": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/docmanager/-/docmanager-1.0.2.tgz",
"integrity": "sha512-Nc4v7Xn7eUjJpU0Vw/ezvGyKkvbXuEfL1go7QW9UFX4HfcEfelXIaT69EzoTYW6mVCZp2Z1UTYXM9YnaMHkQMg==",
"requires": {
"@jupyterlab/apputils": "^1.0.2",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/docregistry": "^1.0.2",
"@jupyterlab/services": "^4.0.2",
"@jupyterlab/statusbar": "^1.0.2",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/messaging": "^1.2.3",
"@phosphor/properties": "^1.1.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0",
"react": "~16.8.4"
}
},
"@jupyterlab/docregistry": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-1.0.2.tgz",
"integrity": "sha512-d6Z2IOe+48NheTpve2pAI6PfKN8VDx/NChhGE5V0YdQTHyNFea8GMRF9wHyP1o5NPuj3fx00gP73O6gfAwzqoA==",
"requires": {
"@jupyterlab/apputils": "^1.0.2",
"@jupyterlab/codeeditor": "^1.0.0",
"@jupyterlab/codemirror": "^1.0.2",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/observables": "^2.2.0",
"@jupyterlab/rendermime": "^1.0.2",
"@jupyterlab/rendermime-interfaces": "^1.3.0",
"@jupyterlab/services": "^4.0.2",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/messaging": "^1.2.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0"
}
},
"@jupyterlab/filebrowser": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/@jupyterlab/filebrowser/-/filebrowser-1.0.3.tgz",
"integrity": "sha512-i55vRjA8NZzRy/IHJrtYh6xjOnHj62xEhHp7OU/FqYjvyQ5B1wXQpTag8nkpxLKKQzuCLxqLO8Q+RZ273LS2mA==",
"requires": {
"@jupyterlab/apputils": "^1.0.2",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/docmanager": "^1.0.2",
"@jupyterlab/docregistry": "^1.0.2",
"@jupyterlab/services": "^4.0.2",
"@jupyterlab/statusbar": "^1.0.2",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/domutils": "^1.1.3",
"@phosphor/dragdrop": "^1.3.3",
"@phosphor/messaging": "^1.2.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0",
"react": "~16.8.4"
}
},
"@jupyterlab/fileeditor": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/fileeditor/-/fileeditor-1.0.5.tgz",
"integrity": "sha512-AP/Oi6sBR/mpZ0fRXn1TicDI7tvlaI+g1OCSnijnd+EWIfhl+hNN1PTn8loQlmGn94nrrkZW10RLJsj/sncwUw==",
"requires": {
"@jupyterlab/apputils": "^1.0.5",
"@jupyterlab/codeeditor": "^1.0.1",
"@jupyterlab/docregistry": "^1.0.5",
"@jupyterlab/statusbar": "^1.0.5",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/messaging": "^1.2.3",
"@phosphor/widgets": "^1.8.0",
"react": "~16.8.4"
},
"dependencies": {
"@jupyterlab/apputils": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/apputils/-/apputils-1.0.5.tgz",
"integrity": "sha512-jt5KHnZGUb2+/HEwUAmIMvNs8mi+Pse2Hme7AaZ7j6i0PS/cLvB71u0uZW4KR6MEqfSqz2oU0ypJouG2aRp5lw==",
"requires": {
"@jupyterlab/coreutils": "^3.0.1",
"@jupyterlab/services": "^4.0.5",
"@jupyterlab/ui-components": "^1.0.0",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/commands": "^1.6.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/domutils": "^1.1.3",
"@phosphor/messaging": "^1.2.3",
"@phosphor/properties": "^1.1.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/virtualdom": "^1.1.3",
"@phosphor/widgets": "^1.8.0",
"@types/react": "~16.8.18",
"react": "~16.8.4",
"react-dom": "~16.8.4",
"sanitize-html": "~1.20.1"
}
},
"@jupyterlab/codeeditor": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/codeeditor/-/codeeditor-1.0.1.tgz",
"integrity": "sha512-a9poqGrWLX8i5+7SO5LfvtQAkAJBo1U8+YSO+K5DC8+6QUwzbhdgYa8hOyAXxF1HJf5QKy8ZNg/V+xyJc80aWg==",
"requires": {
"@jupyterlab/coreutils": "^3.0.1",
"@jupyterlab/observables": "^2.2.0",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/dragdrop": "^1.3.3",
"@phosphor/messaging": "^1.2.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0"
}
},
"@jupyterlab/codemirror": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/codemirror/-/codemirror-1.0.5.tgz",
"integrity": "sha512-sb5tMRsn/84qg88LITzG2Md+DEBM2z13aE75hxh/tnVlWRPNMByUE8fpt2hsW272BtKt0BHHgWYRQ0awi44UEQ==",
"requires": {
"@jupyterlab/apputils": "^1.0.5",
"@jupyterlab/codeeditor": "^1.0.1",
"@jupyterlab/coreutils": "^3.0.1",
"@jupyterlab/observables": "^2.2.0",
"@jupyterlab/statusbar": "^1.0.5",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/commands": "^1.6.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0",
"codemirror": "~5.47.0",
"react": "~16.8.4"
}
},
"@jupyterlab/coreutils": {
"version": "3.0.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/coreutils/-/coreutils-3.0.1.tgz",
"integrity": "sha512-uP6Tl6qc5ust9ToHDWX93IEwzMgntY9sfowC0pjgh+KM/a2MhtDg6iN3lcrdS9oF4GRrDFaN/QM9QelrXXW6pg==",
"requires": {
"@phosphor/commands": "^1.6.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/properties": "^1.1.3",
"@phosphor/signaling": "^1.2.3",
"ajv": "^6.5.5",
"json5": "^2.1.0",
"minimist": "~1.2.0",
"moment": "^2.24.0",
"path-posix": "~1.0.0",
"url-parse": "~1.4.3"
}
},
"@jupyterlab/docregistry": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/docregistry/-/docregistry-1.0.5.tgz",
"integrity": "sha512-5QHEOK+IYqo7pU7v/kNLjSfaPxa9Uno7V1EEcDl/ldlKHnqYfdkCkNB2LtTofGDfD4cJYLwc0IONmBfkLhaBZA==",
"requires": {
"@jupyterlab/apputils": "^1.0.5",
"@jupyterlab/codeeditor": "^1.0.1",
"@jupyterlab/codemirror": "^1.0.5",
"@jupyterlab/coreutils": "^3.0.1",
"@jupyterlab/observables": "^2.2.0",
"@jupyterlab/rendermime": "^1.0.5",
"@jupyterlab/rendermime-interfaces": "^1.3.1",
"@jupyterlab/services": "^4.0.5",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/messaging": "^1.2.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0"
}
},
"@jupyterlab/rendermime": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-1.0.5.tgz",
"integrity": "sha512-hR2PfyZub2J11FvNHq+UVqlQCB0AE9iBb1sMa5UnRM+URS795fC5+fXAaKbibMTsLPnHBbKPTpDjLy6pL7Lz/g==",
"requires": {
"@jupyterlab/apputils": "^1.0.5",
"@jupyterlab/codemirror": "^1.0.5",
"@jupyterlab/coreutils": "^3.0.1",
"@jupyterlab/observables": "^2.2.0",
"@jupyterlab/rendermime-interfaces": "^1.3.1",
"@jupyterlab/services": "^4.0.5",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/messaging": "^1.2.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0",
"lodash.escape": "^4.0.1",
"marked": "0.6.2"
}
},
"@jupyterlab/rendermime-interfaces": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-1.3.1.tgz",
"integrity": "sha512-rX0RpEizlMblF7FXzjVY2HtO6B+f2E4Sfy05dBF1pnv1wrVkQ1nmUwm5rhPwV0SzkWH8Br0uPnRBXjoKAKUrUw==",
"requires": {
"@phosphor/coreutils": "^1.3.1",
"@phosphor/widgets": "^1.8.0"
}
},
"@jupyterlab/services": {
"version": "4.0.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-4.0.5.tgz",
"integrity": "sha512-tNiEPVf8zLecldN1WQGXgffTXd/RUatX9MfXRo6MYHM0tBrUrbLXQ4YcsZ2ihvD1R6oCN5WibZdzBb1wZMmSNw==",
"requires": {
"@jupyterlab/coreutils": "^3.0.1",
"@jupyterlab/observables": "^2.2.0",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/signaling": "^1.2.3",
"node-fetch": "^2.6.0",
"ws": "^7.0.0"
}
},
"@jupyterlab/statusbar": {
"version": "1.0.5",
"resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-1.0.5.tgz",
"integrity": "sha512-K6I942rIb2cBGV0wvReMY/+p/CIpXwkUqRf3DGIhnkFWlJYxlErWbteOSnaNM4LuffzqFCbdtnXqoFJsyIaFxg==",
"requires": {
"@jupyterlab/apputils": "^1.0.5",
"@jupyterlab/codeeditor": "^1.0.1",
"@jupyterlab/coreutils": "^3.0.1",
"@jupyterlab/services": "^4.0.5",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/messaging": "^1.2.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0",
"react": "~16.8.4",
"typestyle": "^2.0.1"
}
},
"json5": {
"version": "2.1.0",
"resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz",
"integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==",
"requires": {
"minimist": "^1.2.0"
}
}
}
},
"@jupyterlab/launcher": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/launcher/-/launcher-1.0.2.tgz",
"integrity": "sha512-mQxCkNrPrdjX4/ySzhf0t7FZck3I7VC1Y9mIQyjNTq6COYZWxPxh4oPhedrQHvPf6rMYEEqxE3VqUnxsyOlZRQ==",
"requires": {
"@jupyterlab/apputils": "^1.0.2",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/commands": "^1.6.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/properties": "^1.1.3",
"@phosphor/widgets": "^1.8.0",
"react": "~16.8.4"
}
},
"@jupyterlab/mainmenu": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/mainmenu/-/mainmenu-1.0.2.tgz",
"integrity": "sha512-jI3s4SP4ZWy0eFILyM+hThYD5OzB45U3iaWv5HJRJWcOPDu+nbtWY6ms0IVMdJ0dq/blfZXwNVoCFzcIJ8joag==",
"requires": {
"@jupyterlab/apputils": "^1.0.2",
"@jupyterlab/services": "^4.0.2",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/commands": "^1.6.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/widgets": "^1.8.0"
}
},
"@jupyterlab/mathjax2": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@jupyterlab/mathjax2/-/mathjax2-1.0.0.tgz",
"integrity": "sha512-1Er/K8v34+aL7f6moVomGIz6eUo/Cj80ijysbqYLiXW1yNK9zle8nzgYL3cx0JTvm7d1fcTqOnZiru/OVt66/g==",
"requires": {
"@jupyterlab/rendermime-interfaces": "^1.3.0",
"@phosphor/coreutils": "^1.3.1"
}
},
"@jupyterlab/notebook": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/notebook/-/notebook-1.0.2.tgz",
"integrity": "sha512-s5hfNRUEuLoPsI5//8DSjJ4/cKKStn0/2i2WegQsX6SSYdj4yqxjwMdveGxK0ROcteVcmok3ECEg6rNDxkFiVw==",
"requires": {
"@jupyterlab/apputils": "^1.0.2",
"@jupyterlab/cells": "^1.0.2",
"@jupyterlab/codeeditor": "^1.0.0",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/docregistry": "^1.0.2",
"@jupyterlab/observables": "^2.2.0",
"@jupyterlab/rendermime": "^1.0.2",
"@jupyterlab/services": "^4.0.2",
"@jupyterlab/statusbar": "^1.0.2",
"@jupyterlab/ui-components": "^1.0.0",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/domutils": "^1.1.3",
"@phosphor/dragdrop": "^1.3.3",
"@phosphor/messaging": "^1.2.3",
"@phosphor/properties": "^1.1.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/virtualdom": "^1.1.3",
"@phosphor/widgets": "^1.8.0",
"react": "~16.8.4"
}
},
"@jupyterlab/observables": {
"version": "2.2.0",
"resolved": "https://registry.npmjs.org/@jupyterlab/observables/-/observables-2.2.0.tgz",
"integrity": "sha512-/oi7vl70yAX5QTXmZafyDSwU8fT1Oa/MdpDDYGkc5IklW0kU3NDqSoawfLovkdgGZvCOCM+6JQqUPRdhn8VZqg==",
"requires": {
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/messaging": "^1.2.3",
"@phosphor/signaling": "^1.2.3"
}
},
"@jupyterlab/outputarea": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/outputarea/-/outputarea-1.0.2.tgz",
"integrity": "sha512-W2LD/emLByNIJ7P1s1u6Xd+Pbq8MviipXAaeZEPF3/diQaCcKjCPZdiY56kXNCFxYupAZahIOA0QzMTLs23Zqg==",
"requires": {
"@jupyterlab/apputils": "^1.0.2",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/observables": "^2.2.0",
"@jupyterlab/rendermime": "^1.0.2",
"@jupyterlab/rendermime-interfaces": "^1.3.0",
"@jupyterlab/services": "^4.0.2",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/messaging": "^1.2.3",
"@phosphor/properties": "^1.1.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0"
}
},
"@jupyterlab/rendermime": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime/-/rendermime-1.0.2.tgz",
"integrity": "sha512-J2AyV15j0YL+5NYzRF/I9kencD6FnK1weX25nTIYYEd7XTac3FUAHRAzCDJC0/SFRwdNjNAywoAeswrN4si9LA==",
"requires": {
"@jupyterlab/apputils": "^1.0.2",
"@jupyterlab/codemirror": "^1.0.2",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/observables": "^2.2.0",
"@jupyterlab/rendermime-interfaces": "^1.3.0",
"@jupyterlab/services": "^4.0.2",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/messaging": "^1.2.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0",
"lodash.escape": "^4.0.1",
"marked": "0.6.2"
}
},
"@jupyterlab/rendermime-interfaces": {
"version": "1.3.0",
"resolved": "https://registry.npmjs.org/@jupyterlab/rendermime-interfaces/-/rendermime-interfaces-1.3.0.tgz",
"integrity": "sha512-04ohT/xdTcdp/TKuNMqY1MLwh7IWyjbMrQXiuwanE8xo52fIe6OIK0DENwc6VDMej1+8NVSU7rX42urLCex0sA==",
"requires": {
"@phosphor/coreutils": "^1.3.1",
"@phosphor/widgets": "^1.8.0"
}
},
"@jupyterlab/services": {
"version": "4.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/services/-/services-4.0.2.tgz",
"integrity": "sha512-LnmOZuarzT6cN0jW4N1WZ91h9yE5+ArVtRtRZzZQ6pv4ydsuWGjcMVMMvmLLwC+FshKud6kTAB57f3JSkaoECA==",
"requires": {
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/observables": "^2.2.0",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/signaling": "^1.2.3",
"node-fetch": "^2.6.0",
"ws": "^7.0.0"
}
},
"@jupyterlab/statusbar": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/statusbar/-/statusbar-1.0.2.tgz",
"integrity": "sha512-edbmu+EwiK7gL2RY7GTNiejOgLEHyBxbZSU841qbdjf6iVrtVGSvvurzHwh/+3AIhQrgbzhB7SkXiCbMFCZz6g==",
"requires": {
"@jupyterlab/apputils": "^1.0.2",
"@jupyterlab/codeeditor": "^1.0.0",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/services": "^4.0.2",
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/messaging": "^1.2.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/widgets": "^1.8.0",
"react": "~16.8.4",
"typestyle": "^2.0.1"
}
},
"@jupyterlab/theme-light-extension": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/@jupyterlab/theme-light-extension/-/theme-light-extension-1.0.2.tgz",
"integrity": "sha512-m7ooUW1xzvRQmMj+v4QfWYR89U46c62UhTiAq6COEPQN9Hi1+3vFZaddDTOmffyTC/+Hgr91KPMgLNfUHYNG3w==",
"requires": {
"@jupyterlab/application": "^1.0.2",
"@jupyterlab/apputils": "^1.0.2"
}
},
"@jupyterlab/ui-components": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/@jupyterlab/ui-components/-/ui-components-1.0.0.tgz",
"integrity": "sha512-rR9I/wsznbuOj09gYvEWQo0fnze3ehK2dPWLY6ToE4k8qj9s39ViY48/jOoaQSaLLRaMD8M8B8ZWY0Cf+400bA==",
"requires": {
"@blueprintjs/core": "^3.9.0",
"@blueprintjs/icons": "^3.3.0",
"@blueprintjs/select": "^3.3.0",
"react": "~16.8.4"
}
},
"@phosphor/algorithm": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@phosphor/algorithm/-/algorithm-1.1.3.tgz",
"integrity": "sha512-+dkdYTBglR+qGnLVQdCvYojNZMGxf+xSl1Jeksha3pm7niQktSFz2aR5gEPu/nI5LM8T8slTpqE4Pjvq8P+IVA=="
},
"@phosphor/application": {
"version": "1.6.4",
"resolved": "https://registry.npmjs.org/@phosphor/application/-/application-1.6.4.tgz",
"integrity": "sha512-cGSC6JWxW3BmTzHRIjS8x/p3nC9IXWdeS0HiO/iZvmT6NbTEMBreEGM6No+2KWqr2VkyQ7l03cCB3h9mMeyvMw==",
"requires": {
"@phosphor/commands": "^1.6.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/widgets": "^1.8.1"
}
},
"@phosphor/collections": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@phosphor/collections/-/collections-1.1.3.tgz",
"integrity": "sha512-J2U1xd2e5LtqoOJt4kynrjDNeHhVpJjuY2/zA0InS5kyOuWmvy79pt/KJ22n0LBNcU/fjkImqtQmbrC2Z4q2xQ==",
"requires": {
"@phosphor/algorithm": "^1.1.3"
}
},
"@phosphor/commands": {
"version": "1.6.3",
"resolved": "https://registry.npmjs.org/@phosphor/commands/-/commands-1.6.3.tgz",
"integrity": "sha512-PYNHWv6tbXAfAtKiqXuT0OBJvwbJ+RRTV60MBykMF7Vqz9UaZ9n2e/eB2EAGEFccF0PnjTCvBEZgarwwMVi8Hg==",
"requires": {
"@phosphor/algorithm": "^1.1.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/domutils": "^1.1.3",
"@phosphor/keyboard": "^1.1.3",
"@phosphor/signaling": "^1.2.3"
}
},
"@phosphor/coreutils": {
"version": "1.3.1",
"resolved": "https://registry.npmjs.org/@phosphor/coreutils/-/coreutils-1.3.1.tgz",
"integrity": "sha512-9OHCn8LYRcPU/sbHm5v7viCA16Uev3gbdkwqoQqlV+EiauDHl70jmeL7XVDXdigl66Dz0LI11C99XOxp+s3zOA=="
},
"@phosphor/disposable": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/@phosphor/disposable/-/disposable-1.2.0.tgz",
"integrity": "sha512-4PoWoffdrLyWOW5Qv7I8//owvZmv57YhaxetAMWeJl13ThXc901RprL0Gxhtue2ZxL2PtUjM1207HndKo2FVjA==",
"requires": {
"@phosphor/algorithm": "^1.1.3",
"@phosphor/signaling": "^1.2.3"
}
},
"@phosphor/domutils": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@phosphor/domutils/-/domutils-1.1.3.tgz",
"integrity": "sha512-5CtLAhURQXXHhNXfQydDk/luG1cDVnhlu/qw7gz8/9pht0KXIAmNg/M0LKxx2oJ9+YMNCLVWxAnHAU0yrDpWSA=="
},
"@phosphor/dragdrop": {
"version": "1.3.3",
"resolved": "https://registry.npmjs.org/@phosphor/dragdrop/-/dragdrop-1.3.3.tgz",
"integrity": "sha512-+SrlGsVQwY8OHCWxE/Zvihpk6Rc6bytJDqOUUTZqdL8hvM9QZeopAFioPDxuo1pTj87Um6cR4ekvbTU4KZ/90w==",
"requires": {
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0"
}
},
"@phosphor/keyboard": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@phosphor/keyboard/-/keyboard-1.1.3.tgz",
"integrity": "sha512-dzxC/PyHiD6mXaESRy6PZTd9JeK+diwG1pyngkyUf127IXOEzubTIbu52VSdpGBklszu33ws05BAGDa4oBE4mQ=="
},
"@phosphor/messaging": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/@phosphor/messaging/-/messaging-1.2.3.tgz",
"integrity": "sha512-89Ps4uSRNOEQoepB/0SDoyPpNUWd6VZnmbMetmeXZJHsuJ1GLxtnq3WBdl7UCVNsw3W9NC610pWaDCy/BafRlg==",
"requires": {
"@phosphor/algorithm": "^1.1.3",
"@phosphor/collections": "^1.1.3"
}
},
"@phosphor/properties": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@phosphor/properties/-/properties-1.1.3.tgz",
"integrity": "sha512-GiglqzU77s6+tFVt6zPq9uuyu/PLQPFcqZt914ZhJ4cN/7yNI/SLyMzpYZ56IRMXvzK9TUgbRna6URE3XAwFUg=="
},
"@phosphor/signaling": {
"version": "1.2.3",
"resolved": "https://registry.npmjs.org/@phosphor/signaling/-/signaling-1.2.3.tgz",
"integrity": "sha512-DMwS0m9OgfY5ljpTsklRQPUQpTyg4obz85FyImRDacUVxUVbas95djIDEbU4s1TMzdHBBO+gfki3V4giXUvXzw==",
"requires": {
"@phosphor/algorithm": "^1.1.3"
}
},
"@phosphor/virtualdom": {
"version": "1.1.3",
"resolved": "https://registry.npmjs.org/@phosphor/virtualdom/-/virtualdom-1.1.3.tgz",
"integrity": "sha512-V8PHhhnZCRa5esrC4q5VthqlLtxTo9ZV1mZ6b4YEloapca1S1nggZSQhrSlltXQjtYNUaWJZUZ/BlFD8wFtIEQ==",
"requires": {
"@phosphor/algorithm": "^1.1.3"
}
},
"@phosphor/widgets": {
"version": "1.8.1",
"resolved": "https://registry.npmjs.org/@phosphor/widgets/-/widgets-1.8.1.tgz",
"integrity": "sha512-OY5T0nAioYTitPks/lCHm7a6QpjRB/XviIT2j6WtYm5J1U8MluIPpClqZ/NQbZfm23BYpmJeiQQyZA+5YphsDA==",
"requires": {
"@phosphor/algorithm": "^1.1.3",
"@phosphor/commands": "^1.6.3",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/disposable": "^1.2.0",
"@phosphor/domutils": "^1.1.3",
"@phosphor/dragdrop": "^1.3.3",
"@phosphor/keyboard": "^1.1.3",
"@phosphor/messaging": "^1.2.3",
"@phosphor/properties": "^1.1.3",
"@phosphor/signaling": "^1.2.3",
"@phosphor/virtualdom": "^1.1.3"
}
},
"@types/codemirror": {
"version": "0.0.76",
"resolved": "https://registry.npmjs.org/@types/codemirror/-/codemirror-0.0.76.tgz",
"integrity": "sha512-k/hpUb+Ebyn9z63qM8IbsRiW0eYHZ+pi/1e2reGzBKAZJzkjWmNTXXqLLiNv5d9ekyxkajxRBr5Hu2WZq/nokw==",
"requires": {
"@types/tern": "*"
}
},
"@types/dom4": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/@types/dom4/-/dom4-2.0.1.tgz",
"integrity": "sha512-kSkVAvWmMZiCYtvqjqQEwOmvKwcH+V4uiv3qPQ8pAh1Xl39xggGEo8gHUqV4waYGHezdFw0rKBR8Jt0CrQSDZA=="
},
"@types/estree": {
"version": "0.0.39",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz",
"integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="
},
"@types/events": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz",
"integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==",
"dev": true
},
"@types/fs-extra": {
"version": "5.1.0",
"resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-5.1.0.tgz",
"integrity": "sha512-AInn5+UBFIK9FK5xc9yP5e3TQSPNNgjHByqYcj9g5elVBnDQcQL7PlO1CIRy2gWlbwK7UPYqi7vRvFA44dCmYQ==",
"dev": true,
"requires": {
"@types/node": "*"
}
},
"@types/glob": {
"version": "7.1.1",
"resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz",
"integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==",
"dev": true,
"requires": {
"@types/events": "*",
"@types/minimatch": "*",
"@types/node": "*"
}
},
"@types/handlebars": {
"version": "4.1.0",
"resolved": "https://registry.npmjs.org/@types/handlebars/-/handlebars-4.1.0.tgz",
"integrity": "sha512-gq9YweFKNNB1uFK71eRqsd4niVkXrxHugqWFQkeLRJvGjnxsLr16bYtcsG4tOFwmYi0Bax+wCkbf1reUfdl4kA==",
"dev": true,
"requires": {
"handlebars": "*"
}
},
"@types/highlight.js": {
"version": "9.12.3",
"resolved": "https://registry.npmjs.org/@types/highlight.js/-/highlight.js-9.12.3.tgz",
"integrity": "sha512-pGF/zvYOACZ/gLGWdQH8zSwteQS1epp68yRcVLJMgUck/MjEn/FBYmPub9pXT8C1e4a8YZfHo1CKyV8q1vKUnQ==",
"dev": true
},
"@types/jquery": {
"version": "3.3.31",
"resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-3.3.31.tgz",
"integrity": "sha512-Lz4BAJihoFw5nRzKvg4nawXPzutkv7wmfQ5121avptaSIXlDNJCUuxZxX/G+9EVidZGuO0UBlk+YjKbwRKJigg==",
"requires": {
"@types/sizzle": "*"
}
},
"@types/lodash": {
"version": "4.14.136",
"resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.136.tgz",
"integrity": "sha512-0GJhzBdvsW2RUccNHOBkabI8HZVdOXmXbXhuKlDEd5Vv12P7oAVGfomGp3Ne21o5D/qu1WmthlNKFaoZJJeErA==",
"dev": true
},
"@types/marked": {
"version": "0.4.2",
"resolved": "https://registry.npmjs.org/@types/marked/-/marked-0.4.2.tgz",
"integrity": "sha512-cDB930/7MbzaGF6U3IwSQp6XBru8xWajF5PV2YZZeV8DyiliTuld11afVztGI9+yJZ29il5E+NpGA6ooV/Cjkg==",
"dev": true
},
"@types/minimatch": {
"version": "3.0.3",
"resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz",
"integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==",
"dev": true
},
"@types/node": {
"version": "12.6.9",
"resolved": "https://registry.npmjs.org/@types/node/-/node-12.6.9.tgz",
"integrity": "sha512-+YB9FtyxXGyD54p8rXwWaN1EWEyar5L58GlGWgtH2I9rGmLGBQcw63+0jw+ujqVavNuO47S1ByAjm9zdHMnskw==",
"dev": true
},
"@types/prop-types": {
"version": "15.7.1",
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.1.tgz",
"integrity": "sha512-CFzn9idOEpHrgdw8JsoTkaDDyRWk1jrzIV8djzcgpq0y9tG4B4lFT+Nxh52DVpDXV+n4+NPNv7M1Dj5uMp6XFg=="
},
"@types/q": {
"version": "1.5.2",
"resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.2.tgz",
"integrity": "sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==",
"dev": true
},
"@types/react": {
"version": "16.8.24",
"resolved": "https://registry.npmjs.org/@types/react/-/react-16.8.24.tgz",
"integrity": "sha512-VpFHUoD37YNY2+lr/+c7qL/tZsIU/bKuskUF3tmGUArbxIcQdb5j3zvo4cuuzu2A6UaVmVn7sJ4PgWYNFEBGzg==",
"requires": {
"@types/prop-types": "*",
"csstype": "^2.2.0"
}
},
"@types/react-dom": {
"version": "16.8.5",
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-16.8.5.tgz",
"integrity": "sha512-idCEjROZ2cqh29+trmTmZhsBAUNQuYrF92JHKzZ5+aiFM1mlSk3bb23CK7HhYuOY75Apgap5y2jTyHzaM2AJGA==",
"dev": true,
"requires": {
"@types/react": "*"
}
},
"@types/shelljs": {
"version": "0.8.5",
"resolved": "https://registry.npmjs.org/@types/shelljs/-/shelljs-0.8.5.tgz",
"integrity": "sha512-bZgjwIWu9gHCjirKJoOlLzGi5N0QgZ5t7EXEuoqyWCHTuSddURXo3FOBYDyRPNOWzZ6NbkLvZnVkn483Y/tvcQ==",
"dev": true,
"requires": {
"@types/glob": "*",
"@types/node": "*"
}
},
"@types/sizzle": {
"version": "2.3.2",
"resolved": "https://registry.npmjs.org/@types/sizzle/-/sizzle-2.3.2.tgz",
"integrity": "sha512-7EJYyKTL7tFR8+gDbB6Wwz/arpGa0Mywk1TJbNzKzHtzbwVmY4HR9WqS5VV7dsBUKQmPNr192jHr/VpBluj/hg=="
},
"@types/tern": {
"version": "0.23.3",
"resolved": "https://registry.npmjs.org/@types/tern/-/tern-0.23.3.tgz",
"integrity": "sha512-imDtS4TAoTcXk0g7u4kkWqedB3E4qpjXzCpD2LU5M5NAXHzCDsypyvXSaG7mM8DKYkCRa7tFp4tS/lp/Wo7Q3w==",
"requires": {
"@types/estree": "*"
}
},
"@webassemblyjs/ast": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz",
"integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==",
"dev": true,
"requires": {
"@webassemblyjs/helper-module-context": "1.8.5",
"@webassemblyjs/helper-wasm-bytecode": "1.8.5",
"@webassemblyjs/wast-parser": "1.8.5"
}
},
"@webassemblyjs/floating-point-hex-parser": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz",
"integrity": "sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==",
"dev": true
},
"@webassemblyjs/helper-api-error": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz",
"integrity": "sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==",
"dev": true
},
"@webassemblyjs/helper-buffer": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz",
"integrity": "sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==",
"dev": true
},
"@webassemblyjs/helper-code-frame": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz",
"integrity": "sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==",
"dev": true,
"requires": {
"@webassemblyjs/wast-printer": "1.8.5"
}
},
"@webassemblyjs/helper-fsm": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz",
"integrity": "sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==",
"dev": true
},
"@webassemblyjs/helper-module-context": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz",
"integrity": "sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.8.5",
"mamacro": "^0.0.3"
}
},
"@webassemblyjs/helper-wasm-bytecode": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz",
"integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==",
"dev": true
},
"@webassemblyjs/helper-wasm-section": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz",
"integrity": "sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==",
"dev": true,
"requires": {
"@webassemblyjs/ast": "1.8.5",
"@webassemblyjs/helper-buffer": "1.8.5",
"@webassemblyjs/helper-wasm-bytecode": "1.8.5",
"@webassemblyjs/wasm-gen": "1.8.5"
}
},
"@webassemblyjs/ieee754": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz",
"integrity": "sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==",
"dev": true,
"requires": {
"@xtuc/ieee754": "^1.2.0"
}
},
"@webassemblyjs/leb128": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz",
"integrity": "sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==",
"dev": true,
"requires": {
"@xtuc/long": "4.2.2"
}
},
"@webassemblyjs/utf8": {
"version": "1.8.5",
"resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz",
"integrity": "sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==",