-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.27 KB
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
44
45
46
47
48
49
50
51
52
53
{
"name": "mapcachetools",
"version": "3.0.0",
"description": "A Node.js tool to download and cache map tiles (OSM, Mapbox Satellite, Mapbox Terrain RGB) as PNG images for offline use in mapping applications. Use at your own risk and comply with provider terms.",
"main": "bin/mapcache_download.js",
"bin": {
"mapcache-download": "./bin/mapcache_download.js",
"mapcachetools": "./bin/mapcache_download.js"
},
"scripts": {
"start": "node ./bin/mapcache_download.js",
"test": "jest",
"prepublishOnly": "npm test"
},
"keywords": [
"map",
"tile",
"cache",
"openstreetmap",
"mapbox",
"terrain",
"offline",
"leaflet",
"threejs"
],
"homepage": "https://github.com/HefnySco/mapcache",
"repository": {
"type": "git",
"url": "git+https://github.com/HefnySco/mapcache.git"
},
"bugs": {
"url": "https://github.com/HefnySco/mapcache/issues"
},
"author": "Mohammad Said Hefny <rcmobilestuff@gmail.com> (http://www.andruav.com)",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"sharp": "^0.34.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"jest": "^30.2.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"bin",
"helpers",
"README.md",
"LICENSE"
]
}