-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathpackage.json
41 lines (41 loc) · 878 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
{
"name": "plotlywidget",
"version": "0.7.1",
"description": "The plotly.py ipywidgets library",
"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"
],
"scripts": {
"clean": "rimraf dist/ && rimraf ../plotlywidget/static",
"prepublish": "webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"webpack": "^3.10.0",
"rimraf": "^2.6.1",
"ify-loader": "^1.1.0"
},
"dependencies": {
"plotly.js": "1.44.3",
"@jupyter-widgets/base": "^1.0.0",
"lodash": "^4.17.4"
},
"jupyterlab": {
"extension": "src/jupyterlab-plugin"
}
}