forked from mapbox/geo-viewport
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 778 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
{
"name": "geo-viewport",
"version": "0.1.1",
"description": "convert between viewports and extents",
"main": "index.js",
"scripts": {
"test": "tap test/*.js",
"build": "browserify -s geoViewport index.js | uglifyjs -c > geo-viewport.js"
},
"repository": {
"type": "git",
"url": "[email protected]:mapbox/geo-viewport.git"
},
"keywords": [
"geographic",
"viewport",
"zoom",
"scale"
],
"author": "Tom MacWright",
"license": "BSD",
"bugs": {
"url": "https://github.com/mapbox/geo-viewport/issues"
},
"homepage": "https://github.com/mapbox/geo-viewport",
"dependencies": {
"sphericalmercator": "~1.0.2"
},
"devDependencies": {
"tap": "~0.4.8",
"browserify": "~3.46.0",
"uglifyjs": "~2.3.6"
}
}