-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
63 lines (63 loc) · 1.45 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "node-tileserver",
"version": "0.3.0",
"description": "node-tileserver is a lightweight tileserver using NodeJS. It can serve bitmap and vector tiles and is designed as a fast and easy-to-install tileserver for rendering OpenStreetMap data. It works perfectly with an osm2pgsql database and Leaflet and KothicJS on the client side.",
"keywords":
[
"map",
"tile",
"vectortile",
"osm",
"openstreetmap",
"tileserver",
"renderer",
"rendering",
"canvas",
"postgis",
"geospatial",
"geodata",
"gis",
"mapnik"
],
"main": "./tileserver.js",
"scripts":
{
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node tileserver.js"
},
"repository":
{
"type": "git",
"url": "https://github.com/rurseekatze/node-tileserver"
},
"author":
{
"name": "Alexander Matheisen",
"email": "[email protected]",
"url": "https://www.matheisen.org/"
},
"url": "https://github.com/rurseekatze/node-tileserver",
"homepage": "https://github.com/rurseekatze/node-tileserver",
"license": "GPLv3+",
"bugs":
{
"email": "[email protected]",
"url": "https://github.com/rurseekatze/node-tileserver/issues"
},
"dependencies":
{
"byline": "^4.2.1",
"canvas": "^1.2.2",
"fs.extra": "^1.3.2",
"graceful-fs": "^3.0.6",
"http-proxy": "^1.11.1",
"log4js": "^0.6.24",
"mkdirp": "^0.5.0",
"pg": "^4.3.0",
"rbush": "^1.4.0",
"toobusy-js": "^0.4.2",
"touch": "0.0.3",
"pgpass": "^1.0.1",
"pg-pool": "^1.6.0"
}
}