forked from dadiorchen/node-mapnik-1
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
91 lines (91 loc) · 2.53 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "treetracker-map-tile-server",
"description": "Tile rendering library for node",
"private": true,
"homepage": "http://mapnik.org",
"author": "Dane Springmeyer <[email protected]> (mapnik.org)",
"version": "4.34.0",
"mapnik_version": "c3eda40e0",
"main": "./lib/mapnik.js",
"binary": {
"module_name": "mapnik",
"module_path": "./lib/binding/",
"host": "https://mapbox-node-binary.s3.amazonaws.com",
"remote_path": "./{name}/v{version}/{configuration}/{toolset}/",
"package_name": "{platform}-{arch}.tar.gz"
},
"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/Greenstand/node-mapnik-1.git"
},
"contributors": [
"Konstantin Käfer",
"Blake Thompson"
],
"license": "BSD-3-Clause",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.x",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"expect-runtime": "^0.10.1",
"express": "^4.17.1",
"jest": "^26.6.3",
"loglevel": "^1.7.1",
"lru-cache": "^6.0.0",
"mapnik-vector-tile": "3.0.1",
"node-addon-api": "~3.1.x"
},
"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-pre-gyp install --fallback-to-build",
"docs": "documentation build src/*.cpp src/mapnik_plugins.hpp --polyglot -o documentation -f html --github --name Mapnik",
"jest": "jest",
"start": "node --max-old-space-size=1024 greenstand/server.js",
"start-dev": "nodemon --max-old-space-size=1024 greenstand/server.js"
},
"devDependencies": {
"@mapbox/sphericalmercator": "~1.0.2",
"aws-sdk": "2.0.12",
"bytes": "~2.1.0",
"knex": "^0.95.1",
"nyc": "^14.1.1",
"pg": "^8.5.1",
"supertest": "^6.1.3",
"tape": "^4.13.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.2.0",
"husky": "^4.3.5",
"prettier": "^2.1.2"
},
"jshintConfig": {
"node": true,
"globalstrict": true,
"undef": true,
"unused": true,
"noarg": true,
"mocha": true
}
}