forked from heavyai/jupyterlab-heavyai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.42 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
{
"name": "jupyterlab-mapd",
"version": "0.4.0",
"description": "JupyterLab - MapD backend renderer",
"homepage": "https://github.com/Quansight/jupyter-mapd-renderer",
"bugs": {
"url": "https://github.com/Quansight/jupyter-mapd-renderer/issues"
},
"license": "Apache-2.0",
"author": "MapD",
"files": [
"lib/*.d.ts",
"lib/*.js.map",
"lib/*.js",
"schema/*.json",
"style/*.*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"repository": {
"type": "git",
"url": "https://github.com/Quansight/jupyter-mapd-renderer.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepublishOnly": "npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^0.16.0",
"@jupyterlab/apputils": "^0.16.0",
"@jupyterlab/coreutils": "^1.1.0",
"@jupyterlab/docregistry": "^0.16.0",
"@jupyterlab/launcher": "^0.16.3",
"@jupyterlab/mainmenu": "^0.5.2",
"@jupyterlab/rendermime-interfaces": "^1.0.6",
"@phosphor/coreutils": "^1.3.0",
"@phosphor/datagrid": "^0.1.5",
"@phosphor/widgets": "^1.5.0",
"mapd-connector": "^1.0.0",
"vega": "3.x",
"vega-lite": "2.x"
},
"devDependencies": {
"rimraf": "~2.6.2",
"typescript": "^2.9.1"
},
"jupyterlab": {
"extension": "lib/extension",
"mimeExtension": "lib/mimextension",
"schemaDir": "schema"
}
}