forked from chriswhong/leaflet-globeminimap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 956 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
{
"name": "leaflet-globe-minimap",
"version": "0.0.1",
"author": "Chris Whong",
"description": "A plugin for Leaflet that provides a 3d globe minimap in the corner of the map view.",
"keywords": [
"maps",
"leaflet",
"client",
"minimap"
],
"license": "BSD-2-Clause",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/chriswhong/leaflet-globe-minimap.git"
},
"main": "dist/Control.GlobeMiniMap.min.js",
"homepage": "https://github.com/chriswhong/leaflet-globe-minimap",
"bugs": {
"url": "https://github.com/chriswhong/leaflet-globe-minimap.git/issues"
},
"dependencies": {
"d3": "^3.5.0",
"leaflet": ">=0.7.3",
"topojson-client": "^3.0.0"
},
"devDependencies": {
"uglify-js": "^2.8.0"
},
"scripts": {
"build:js": "uglifyjs --output dist/Control.GlobeMiniMap.min.js src/Control.GlobeMiniMap.js",
"build": "npm run build:js"
}
}