forked from jupyter-widgets/ipyleaflet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "jupyter-leaflet",
"version": "0.11.1",
"description": "jupyter - leaflet bridge",
"author": "Project Jupyter",
"license": "MIT",
"main": "src/index.js",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"repository": {
"type": "git",
"url": "https://github.com/jupyter-widgets/ipyleaflet.git"
},
"scripts": {
"clean": "rimraf dist/ && rimraf ../ipyleaflet/static",
"build": "webpack",
"watch": "webpack --watch",
"prepublish": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"css-loader": "^0.28.7",
"file-loader": "^0.11.2",
"rimraf": "^2.6.1",
"style-loader": "^0.18.1",
"webpack": "^3.5.5"
},
"dependencies": {
"@jupyter-widgets/base": "^2.0",
"leaflet": "^1.3.0",
"leaflet-draw": "^1.0.4",
"leaflet.markercluster": "^1.2.0",
"leaflet-splitmap": "^1.0.1",
"leaflet-velocity": "^1.2.4",
"leaflet-measure": "^3.1.0",
"leaflet-rotatedmarker": "^0.2.0",
"leaflet-fullscreen": "^1.0.2",
"underscore": "^1.8.3"
},
"jupyterlab": {
"extension": "src/jupyterlab-plugin"
}
}