-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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": "map-the-tiles",
"version": "1.2.2",
"description": "Calculate map tiles for given map center, zoom and rotation.",
"main": "map-the-tiles.js",
"scripts": {
"test": "mocha test/test.js",
"build-debug": "browserify map-the-tiles.js --debug --standalone MapTheTiles | exorcist dist/map-the-tiles.js.map > dist/map-the-tiles.js",
"build-min": "browserify map-the-tiles.js --standalone MapTheTiles | uglifyjs -c -m > dist/map-the-tiles.min.js",
"build": "npm run build-debug && npm run build-min"
},
"repository": {
"type": "git",
"url": "https://github.com/gagan-bansal/map-the-tiles"
},
"keywords": [
"maps",
"map tiles",
"tiles",
"rotation",
"rotated map",
"spherical mercator",
"web mercator",
"google projection"
],
"author": "Gagan Bansal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gagan-bansal/map-the-tiles/issues"
},
"homepage": "https://github.com/gagan-bansal/map-the-tiles",
"devDependencies": {
"browserify": "^8.1.1",
"chai": "^1.10.0",
"exorcist": "^0.1.6",
"mocha": "^2.1.0",
"uglify-js": "^2.4.16"
},
"dependencies": {
"rectangles-intersect": "0.0.0",
"transformatrix": "^1.1.1"
}
}