-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 1.23 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
{
"name": "web-mercator-tiles",
"version": "0.1.6",
"description": "Calculate map tiles for given map extent and zoom level. Considering map extent coordinates are in sperical (web) mercator projection. ",
"main": "index.js",
"scripts": {
"test": "mocha test/test.js",
"build-debug": "browserify index.js --debug --standalone webMercatorTiles | exorcist dist/web-mercator-tiles.js.map > dist/web-mercator-tiles.js",
"build-min": "browserify index.js --standalone webMercatorTiles | uglifyjs -c -m > dist/web-mercator-tiles.min.js",
"build": "npm run build-debug && npm run build-min"
},
"repository": {
"type": "git",
"url": "https://github.com/gagan-bansal/web-mercator-tiles"
},
"keywords": [
"map tiles",
"map extent",
"spherical mercator",
"web mercator",
"google projection"
],
"author": "Gagan Bansal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gagan-bansal/web-mercator-tiles/issues"
},
"homepage": "https://github.com/gagan-bansal/web-mercator-tiles",
"devDependencies": {
"chai": "^1.10.0",
"exorcist": "^2.0.0",
"uglify-js": "^2.8.29"
},
"dependencies": {
"browserify": "^16.2.3",
"mocha": "^9.1.1"
}
}