forked from mapnik/node-mapnik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.62 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
{
"name" : "mapnik",
"description" : "Tile rendering library for node",
"url" : "http://github.com/mapnik/node-mapnik",
"homepage" : "http://mapnik.org",
"author" : "Dane Springmeyer <dane@dbsgeo.com> (mapnik.org)",
"version" : "1.4.3",
"main" : "./lib/mapnik.js",
"binary": {
"module_name": "mapnik",
"module_path": "./lib/binding/",
"remote_path": "v{version}",
"host": "https://node-mapnik.s3-us-west-1.amazonaws.com"
},
"bugs" : {
"email" : "dane@dbsgeo.com",
"url" : "http://github.com/mapnik/node-mapnik/issues"
},
"keywords" : [
"map",
"graphics",
"canvas",
"tile",
"mapnik",
"carto"
],
"repository" : {
"type" : "git",
"url" : "git://github.com/mapnik/node-mapnik.git"
},
"contributors" : ["Konstantin Käfer"],
"licenses" : [
{
"type": "BSD",
"url": "https://github.com/mapnik/node-mapnik/blob/master/LICENSE.txt"
}
],
"dependencies" : {
"mapnik-vector-tile": "0.4.2",
"node-pre-gyp":"~0.5.0"
},
"bundledDependencies": [
"mapnik-vector-tile",
"node-pre-gyp"
],
"bin" : {
"mapnik-inspect.js" : "./bin/mapnik-inspect.js",
"mapnik-render.js" : "./bin/mapnik-render.js"
},
"engines" : {
"node": ">= 0.8.0 < 0.11.4"
},
"scripts" : {
"test" : "mocha",
"install": "node-pre-gyp install --fallback-to-build"
},
"devDependencies": {
"sphericalmercator": "~1.0.2",
"mocha": "~1.15.1",
"aws-sdk": "~2.0.0-rc.15"
}
}