-
Notifications
You must be signed in to change notification settings - Fork 165
/
package.json
71 lines (71 loc) · 1.71 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
{
"name": "@mapnik/mapnik",
"description": "Node.js bindings for Mapnik (mapnik.org)",
"url": "http://github.com/mapnik/node-mapnik",
"homepage": "http://mapnik.org",
"author": "Dane Springmeyer <[email protected]>",
"version": "4.6.5-rc1",
"main": "index.js",
"directories": {
"share": "./share",
"fonts": "./lib/mapnik/fonts"
},
"private": false,
"bugs": {
"email": "[email protected]",
"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",
"Blake Thompson",
"Artem Pavlenko"
],
"license": "BSD-3-Clause",
"dependencies": {
"node-addon-api": "^8.1.0",
"node-gyp-build": "^4.8.1",
"prebuildify": "^6.0.1"
},
"optionalDependencies": {
"@mapnik/core-darwin-arm64": "4.0.3",
"@mapnik/core-darwin-x64": "4.0.3",
"@mapnik/core-linux-arm64": "4.0.3",
"@mapnik/core-linux-x64": "4.0.3"
},
"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": {
"test": "tape test/*.test.js",
"install": "node-gyp-build",
"prebuildify": "prebuildify --napi --strip",
"preinstall" : "./scripts/preinstall.sh",
"postinstall": "./scripts/postinstall.sh"
},
"devDependencies": {
"tape": "^v5.8.1"
},
"jshintConfig": {
"node": true,
"globalstrict": true,
"undef": true,
"unused": true,
"noarg": true,
"mocha": true
}
}