forked from mapnik/node-mapnik
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 2.01 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@langa/mapnik",
"description": "Tile rendering library for node",
"url": "http://github.com/langateam/node-mapnik",
"homepage": "http://mapnik.org",
"author": "Dane Springmeyer <[email protected]> (mapnik.org)",
"version": "3.0.9-dev4",
"mapnik_version": "3.0.9",
"main": "./lib/mapnik.js",
"binary": {
"module_name": "mapnik",
"module_path": "./lib/binding/{node_abi}-{platform}-{arch}",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"remote_path": "./{module_name}/v{version}/{configuration}/",
"package_name": "{node_abi}-{platform}-{arch}.tar.gz"
},
"bugs": {
"email": "[email protected]",
"url": "http://github.com/langateam/node-mapnik/issues"
},
"keywords": [
"map",
"graphics",
"canvas",
"tile",
"mapnik",
"carto"
],
"repository": {
"type": "git",
"url": "git://github.com/langateam/node-mapnik.git"
},
"contributors": [
"Konstantin Käfer",
"Blake Thompson"
],
"licenses": [
{
"type": "BSD",
"url": "https://github.com/langateam/node-mapnik/blob/master/LICENSE.txt"
}
],
"dependencies": {
"mapnik-vector-tile": "1.2.1",
"nan": "2.5.1",
"node-pre-gyp": "0.6.32",
"protozero": "1.3.0"
},
"bin": {
"mapnik-inspect.js": "./bin/mapnik-inspect.js",
"mapnik-render.js": "./bin/mapnik-render.js",
"mapnik-shapeindex.js": "./bin/mapnik-shapeindex.js"
},
"scripts": {
"prepare-test": "node-pre-gyp package testpackage ${NPM_FLAGS}",
"test": "jshint bin lib/index.js lib/mapnik.js && mocha -R spec --timeout 50000",
"install": "node-pre-gyp install --build-from-source",
"docs": "documentation src/*.cpp --polyglot -o documentation -f html --github --name Mapnik"
},
"devDependencies": {
"aws-sdk": "2.0.12",
"jshint": "^2.5.10",
"mocha": "^3",
"sphericalmercator": "1.0.5",
"bytes": "2.4.0"
},
"jshintConfig": {
"node": true,
"globalstrict": true,
"undef": true,
"unused": true,
"noarg": true,
"mocha": true
}
}