-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
58 lines (58 loc) · 1.76 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": "1.0.2",
"description": "A JupyterLab extension for rendering CSV",
"author": "Saul Shanabrook <[email protected]>,Ji Zhang <[email protected]>,Manny Cato <[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": "^1.0.3",
"@jupyterlab/apputils": "^1.0.3",
"@jupyterlab/cells": "^1.0.3",
"@jupyterlab/console": "^1.0.3",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/docmanager": "^1.0.3",
"@jupyterlab/docregistry": "^1.0.3",
"@jupyterlab/filebrowser": "^1.0.4",
"@jupyterlab/mainmenu": "^1.0.3",
"@jupyterlab/notebook": "^1.0.3",
"@jupyterlab/rendermime": "^1.0.3",
"@jupyterlab/rendermime-interfaces": "^1.3.0",
"@phosphor/widgets": "^1.9.0",
"datavoyager": "2.0.0-alpha.24",
"node-sass": "^4.12.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"vega": "^5.4.0",
"webpack": "^4.39.1"
},
"devDependencies": {
"@types/node": "^12.7.1",
"typescript": "~3.4.1",
"watch": "^1.0.2"
}
}