-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathpackage.json
44 lines (44 loc) · 1 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
{
"name": "jupyterlab-plotly",
"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",
"ipython",
"plotly"
],
"files": [
"src/**/*.js",
"dist/*.js",
"style/*.*"
],
"scripts": {
"build": "npm run build:src",
"build:src": "rimraf dist && tsc",
"clean": "rimraf dist/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"rimraf": "^2.6.1",
"ify-loader": "^1.1.0",
"typescript": "~3.7.0"
},
"dependencies": {
"plotly.js": "^1.54.1",
"@types/plotly.js": "1.44.28",
"@jupyterlab/rendermime-interfaces": "^1.3.0 || ^2.0.0",
"@lumino/messaging": "^1.2.3",
"@lumino/widgets": "^1.8.1",
"lodash": "^4.17.4"
},
"jupyterlab": {
"mimeExtension": "dist/javascript-renderer-extension.js"
}
}