forked from jupyterlab/jupyter-renderers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
48
49
50
{
"name": "@jupyterlab/geojson-extension",
"version": "1.0.0",
"description": "GeoJSON renderer for JupyterLab",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/jupyterlab/jupyter-renderers",
"bugs": {
"url": "https://github.com/jupyterlab/jupyter-renderers/issues"
},
"license": "BSD-3-Clause",
"author": "Project Jupyter",
"files": [
"lib/*.d.ts",
"lib/*.js",
"style/*.*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyter-renderers.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prepack": "npm run clean && npm run build",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/rendermime-interfaces": "^1.3.0",
"@phosphor/messaging": "^1.2.2",
"@phosphor/widgets": "^1.8.0",
"leaflet": "^1.5.0"
},
"devDependencies": {
"@types/leaflet": "^1.4.0",
"rimraf": "~2.6.2",
"typescript": "~3.5.1"
},
"jupyterlab": {
"mimeExtension": true
}
}