This repository has been archived by the owner on Feb 8, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
85 lines (85 loc) · 2.73 KB
/
package.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
{
"name": "@jupyterlab/statusbar",
"version": "0.5.0",
"description": "A status bar for JupyterLab",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/jupyterlab-statusbar",
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab-statusbar/issues"
},
"license": "BSD-3-Clause",
"author": "Richa Gadgil, Takahiro Shimokobe, Declan Kelly",
"files": [
"lib/**/*.d.ts",
"lib/**/*.js.map",
"lib/**/*.js",
"style/*.css",
"style/images/*.svg",
"schema/*.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab-statusbar.git"
},
"scripts": {
"build": "npm run lint:ts && tsc",
"clean": "rimraf lib",
"watch": "tsc -w --listEmittedFiles",
"lint:ts": "tslint -p tsconfig.json --exclude '**/*.d.ts'",
"typedoc": "typedoc --out docs/ src/ --exclude '**/src/+(component|style)/*.*'"
},
"dependencies": {
"@jupyterlab/application": "^0.19.1",
"@jupyterlab/apputils": "^0.19.1",
"@jupyterlab/cells": "^0.19.1",
"@jupyterlab/codeeditor": "^0.19.1",
"@jupyterlab/codemirror": "^0.19.1",
"@jupyterlab/console": "^0.19.1",
"@jupyterlab/coreutils": "^2.1.1",
"@jupyterlab/docmanager": "^0.19.1",
"@jupyterlab/docregistry": "^0.19.1",
"@jupyterlab/filebrowser": "^0.19.3",
"@jupyterlab/fileeditor": "^0.19.1",
"@jupyterlab/inspector": "^0.19.1",
"@jupyterlab/mainmenu": "^0.8.1",
"@jupyterlab/notebook": "^0.19.2",
"@jupyterlab/observables": "^2.1.1",
"@jupyterlab/services": "^3.2.1",
"@jupyterlab/tooltip": "^0.19.1",
"@phosphor/algorithm": "^1.1.2",
"@phosphor/application": "^1.6.0",
"@phosphor/commands": "^1.6.1",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/disposable": "^1.1.2",
"@phosphor/domutils": "^1.1.2",
"@phosphor/messaging": "^1.2.2",
"@phosphor/signaling": "^1.2.2",
"@phosphor/virtualdom": "^1.1.2",
"@phosphor/widgets": "^1.6.0",
"react": "~16.4.2",
"react-dom": "~16.4.2",
"typestyle": "^2.0.1"
},
"devDependencies": {
"@types/react": "~16.4.13",
"@types/react-dom": "^16.0.10",
"prettier": "^1.15.2",
"rimraf": "^2.6.1",
"tslint": "^5.11.0",
"typedoc": "^0.11.1",
"typescript": "^2.9.2"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema"
}
}