forked from altair-viz/jupyterlab_voyager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 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
{
"name": "jupyterlab_voyager",
"version": "0.1.0",
"description": "A JupyterLab extension for rendering CSV",
"author": "Saul Shanabrook <[email protected]>",
"main": "lib/index.js",
"license": "BSD-3-Clause",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab extension"
],
"files": [
"lib/*.d.ts",
"lib/*.js",
"lib/*.js.map"
],
"jupyterlab": {
"mimeExtension": true
},
"scripts": {
"build": "tsc",
"watch": "watch \"npm run build\" src --wait 10 --ignoreDotFiles",
"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/rendermime-interfaces": "^0.3.1",
"@phosphor/widgets": "^1.3.0",
"datavoyager": "v2.0.0-alpha.12"
},
"devDependencies": {
"typescript": "~2.4.1",
"watch": "^1.0.2"
}
}