-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathpackage.json
43 lines (43 loc) · 950 Bytes
/
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
{
"name": "plotlywidget",
"version": "4.7.1",
"description": "The plotly JupyterLab extension",
"author": "The plotly.py team",
"license": "MIT",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/plotly/plotly.py"
},
"keywords": [
"jupyter",
"widgets",
"ipython",
"ipywidgets",
"plotly"
],
"files": [
"src/**/*.js",
"dist/*.js",
"style/*.*"
],
"scripts": {
"build": "webpack",
"clean": "rimraf dist/ && rimraf ../../python/plotly/plotlywidget/static'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"webpack": "^3.10.0",
"rimraf": "^2.6.1",
"ify-loader": "^1.1.0",
"typescript": "~3.1.1"
},
"dependencies": {
"plotly.js": "^1.54.1",
"@jupyter-widgets/base": "^2.0.0 || ^3.0.0",
"lodash": "^4.17.4"
},
"jupyterlab": {
"extension": "src/jupyterlab-plugin.js"
}
}