-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "jupyterlab-plyto",
"version": "0.1.1",
"description": "Python Machine Learning Visualization Toolkit",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"license": "BSD-3-Clause",
"author": "Jenna Landy, Noah Stapp, and Alena Mueller",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prettier": "prettier --write 'src/**'",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^0.18.0",
"@jupyterlab/apputils": "^0.18.0",
"@jupyterlab/mainmenu": "^0.6.2",
"@jupyterlab/notebook": "^0.18.2",
"@jupyterlab/statusbar": "^0.3.0",
"@phosphor/algorithm": "^1.1.2",
"pandas": "0.0.3",
"typestyle": "^2.0.1",
"vega": "^4.2.0",
"vega-embed": "^3.15.0",
"vega-lite": "^2.6.0"
},
"devDependencies": {
"prettier": "^1.13.7",
"rimraf": "^2.6.1",
"typescript": "^3.0"
},
"jupyterlab": {
"extension": true
}
}