forked from twosigma/beakerx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.62 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": "beakerx-jupyterlab",
"version": "1.4.1",
"description": "BeakerX: Beaker Extensions for JupyterLab",
"author": "Two Sigma Open Source, LLC",
"main": "dist/index.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"ipywidgets",
"jupyterlab",
"jupyterlab-extension"
],
"scripts": {
"build": "npm run build:src",
"build:src": "rimraf dist && tsc --project src",
"prepublish": "npm run build:src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@jupyter-widgets/base": "^2.0.1",
"@jupyter-widgets/controls": "^2.0.0-rc.2",
"@jupyter-widgets/output": "^2.0.0",
"@jupyterlab/application": "^1.0.0",
"@jupyterlab/apputils": "^1.0.0",
"@jupyterlab/cells": "^1.0.0",
"@jupyterlab/codemirror": "^1.0.0",
"@jupyterlab/coreutils": "^3.0.0",
"@jupyterlab/docregistry": "^1.0.0",
"@jupyterlab/notebook": "^1.0.0",
"@jupyterlab/outputarea": "^1.0.0",
"@jupyterlab/rendermime": "^1.0.0",
"@jupyterlab/rendermime-interfaces": "^1.3.0",
"@jupyterlab/services": "^4.0.0",
"@phosphor/application": "^1.6.4",
"@phosphor/coreutils": "^1.3.1",
"@phosphor/datagrid": "^0.1.10",
"@types/node": "^12.0.10",
"@types/codemirror": "^0.0.76",
"rimraf": "^2.6.3",
"typescript": "^3.5.2"
},
"jupyterlab": {
"extension": "dist/index.js",
"mimeExtension": "dist/javascriptRendererExtension.js",
"themeDir": "src/theme/static"
},
"files": [
"dist/**/*.js",
"lib/*",
"src/theme/static/*.css",
"src/theme/static/fonts/**/*"
]
}