-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
43 lines (42 loc) · 1.14 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
{
"name": "leaflet-geojson",
"version": "1.0.0",
"description": "A plugin combining geojson-vt with leafletjs",
"main": "dist/leaflet-geojson-vt.js",
"unpkg": "dist/leaflet-geojson-vt.min.js",
"module": "dist/leaflet-geojson-vt.mjs",
"exports": {
"require": "./dist/leaflet-geojson-vt.js",
"default": "./dist/leaflet-geojson-vt.modern.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "sirv example --port 3000 --dev",
"build": "npm run bundle && cp dist/leaflet-geojson-vt.min.js example",
"bundle": "microbundle --globals leaflet=L,geojson-vt=geojsonvt --sourcemap false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brandonxiang/leaflet-geojson-vt.git"
},
"keywords": [
"leaflet",
"geojson-vt"
],
"author": "brandonxiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/brandonxiang/leaflet-geojson-vt/issues"
},
"homepage": "https://github.com/brandonxiang/leaflet-geojson-vt#readme",
"dependencies": {
"geojson-vt": "^3.2.0",
"leaflet": "^1.0.0"
},
"devDependencies": {
"sirv-cli": "^1.0.14",
"microbundle": "^0.14.2"
}
}