forked from jupyterlab-contrib/jupyterlab-variableInspector
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.36 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
{
"name": "@almond-sh/jupyterlab_variableinspector",
"version": "0.4.1",
"description": "Variable inspector extension for JupyterLab",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"variable inspector"
],
"homepage": "https://github.com/almond-sh/jupyterlab-variableInspector",
"bugs": {
"url": "https://github.com/lckr/jupyterlab-variableInspector/issues"
},
"license": "MIT",
"author": "lckr",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/almond-sh/jupyterlab-variableInspector.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^2.0.0",
"@jupyterlab/apputils": "^2.0.0",
"@jupyterlab/console": "^2.0.0",
"@jupyterlab/coreutils": "^4.0.0",
"@jupyterlab/csvviewer": "^2.0.0",
"@jupyterlab/notebook": "^2.0.0",
"@jupyterlab/services": "^5.0.0",
"@lumino/datagrid": "^0.5"
},
"devDependencies": {
"rimraf": "~3.0.0",
"typescript": "~3.7.3",
"tslint": "5.20.1"
},
"jupyterlab": {
"extension": true
}
}