forked from CartoDB/node-mapnik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.94 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
{
"name": "@carto/mapnik",
"description": "Tile rendering library for node",
"url": "http://github.com/mapnik/node-mapnik",
"homepage": "http://mapnik.org",
"author": "Dane Springmeyer <dane@mapbox.com> (mapnik.org)",
"version": "3.6.2-carto.17",
"mapnik_version": "v3.0.15.17",
"main": "./lib/mapnik.js",
"binary": {
"module_name": "mapnik",
"module_path": "./lib/binding/",
"host": "https://mapnik-carto.s3.amazonaws.com",
"remote_path": "./{module_name}/v{version}/",
"package_name": "{node_abi}-{platform}-{arch}-{configuration}{toolset}.tar.gz"
},
"bugs": {
"url": "http://github.com/CartoDB/node-mapnik/issues"
},
"keywords": [
"map",
"graphics",
"canvas",
"tile",
"mapnik",
"carto"
],
"repository": {
"type": "git",
"url": "git://github.com/CartoDB/node-mapnik.git"
},
"contributors": [
"Konstantin Käfer",
"Blake Thompson"
],
"license": "BSD-3-Clause",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.9",
"mapnik-vector-tile": "cartodb/mapnik-vector-tile#v1.6.1-carto.2",
"nan": "2.14.0"
},
"bin": {
"mapnik-index.js": "./bin/mapnik-index.js",
"mapnik-inspect.js": "./bin/mapnik-inspect.js",
"mapnik-render.js": "./bin/mapnik-render.js",
"mapnik-shapeindex.js": "./bin/mapnik-shapeindex.js"
},
"scripts": {
"prepublishOnly": "npm ls",
"test": "jshint bin lib/index.js lib/mapnik.js && mocha --exit -R spec --timeout 50000",
"install": "node-pre-gyp install --fallback-to-build",
"docs": "documentation build src/*.cpp src/mapnik_plugins.hpp --polyglot -o documentation -f html --github --name Mapnik"
},
"devDependencies": {
"@mapbox/sphericalmercator": "1.0.5",
"aws-sdk": "^2.457.0",
"bytes": "^3.1.0",
"jshint": "^2.10.2",
"mocha": "^6.1.4"
},
"jshintConfig": {
"node": true,
"globalstrict": true,
"undef": true,
"unused": true,
"noarg": true,
"mocha": true
}
}