forked from altair-viz/jupyterlab_voyager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
{
"name": "jupyterlab_voyager",
"version": "0.2.0",
"description": "A JupyterLab extension for rendering CSV",
"author": "Saul Shanabrook <[email protected]>,Ji Zhang <[email protected]>",
"main": "lib/index.js",
"license": "BSD-3-Clause",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab extension"
],
"files": [
"lib/*.d.ts",
"lib/*.js",
"lib/*.js.map",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
"tutorial/*.{md,png,jpg}"
],
"jupyterlab": {
"extension": true
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prepublish": "npm run build",
"extension:install": "jupyter labextension install jupyterlab_voyager",
"extension:uninstall": "jupyter labextension uninstall jupyterlab_voyager",
"extension:enable": "jupyter labextension enable jupyterlab_voyager",
"extension:disable": "jupyter labextension disable jupyterlab_voyager"
},
"dependencies": {
"@jupyterlab/application": "^0.18.4",
"@jupyterlab/apputils": "^0.18.4",
"@jupyterlab/cells": "^0.18.4",
"@jupyterlab/console": "^0.18.4",
"@jupyterlab/coreutils": "^2.1.4",
"@jupyterlab/docmanager": "^0.18.4",
"@jupyterlab/docregistry": "^0.18.4",
"@jupyterlab/filebrowser": "^0.18.6",
"@jupyterlab/mainmenu": "^0.7.4",
"@jupyterlab/notebook": "0.18.4",
"@jupyterlab/rendermime": "^0.18.4",
"@jupyterlab/rendermime-interfaces": "^1.1.2",
"@phosphor/widgets": "^1.6.0",
"datavoyager": "2.0.0-alpha.23",
"node-sass": "^4.9.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"vega": "4.0.0-rc.1",
"webpack": "^4.8.3"
},
"devDependencies": {
"@types/node": "^9.6.5",
"typescript": "~2.4.1",
"watch": "^1.0.2"
}
}