This repository has been archived by the owner on Apr 2, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
133 lines (133 loc) · 3.64 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "tilerator",
"version": "1.1.1",
"description": "Map tiles pre-generation service",
"main": "./app.js",
"scripts": {
"start": "service-runner",
"test": "grunt test",
"docker-start": "service-runner docker-start",
"docker-test": "service-runner docker-test",
"coverage": "istanbul cover _mocha -- -R spec"
},
"repository": "kartotherian/tilerator",
"keywords": [
"REST",
"API",
"service template",
"MediaWiki"
],
"author": "Yuri Astrakhan <YuriAstrakhan@gmail.com>",
"contributors": [
"Max Semenik <msemenik@wikimedia.org>"
],
"license": "Apache-2.0",
"bugs": "https://github.com/kartotherian/tilerator/issues",
"homepage": "https://github.com/kartotherian/tilerator",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"bunyan": "^1.8.1",
"cassandra-uuid": "^0.0.2",
"compression": "^1.6.1",
"domino": "^1.0.28",
"express": "^4.13.4",
"js-yaml": "^3.8.2",
"preq": "^0.5.2",
"service-runner": "^2.6.4",
"heapdump": "*",
"minimist": "0.2.*",
"yargs": "^5.0.0",
"underscore": "^1.8.3",
"why-is-node-running": "^1.2.2",
"htcp-purge": "^0.1.2",
"jade": "^1.11.0",
"kue": "^0.11.0",
"kue-ui-express": "^1.0.2",
"mapnik": "~3.7.2",
"tilelive-tmstyle": "0.8.0",
"quadtile-index": "^0.0.6",
"@kartotherian/tilelive-vector": "~4.0.1",
"@kartotherian/err": "^0.0.4",
"@kartotherian/input-validator": "^0.0.6",
"@kartotherian/server": "^1.0.0",
"@kartotherian/cassandra": "^0.2.1",
"@kartotherian/core": "^0.3.0",
"@kartotherian/autogen": "^0.0.10",
"@kartotherian/babel": "^0.3.1",
"@kartotherian/postgres": "^0.0.11",
"@kartotherian/layermixer": "^0.0.8",
"@kartotherian/overzoom": "^0.0.16",
"@kartotherian/substantial": "^0.0.10",
"@kartotherian/osm-bright-source": "^1.0.4",
"@kartotherian/osm-bright-style": "^4.0.1",
"@kartotherian/jobprocessor": "^1.0.1",
"@kartotherian/tilelive-tmsource": "~1.0.0",
"@mapbox/tilelive": "~5.12.2",
"@mapbox/tilelive-bridge": "~3.1.0"
},
"optionalDependencies": {
"bunyan-prettystream": "*"
},
"devDependencies": {
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-kartotherian": "^0.0.5",
"extend": "^3.0.0",
"grunt": "^1.0.2",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^20.1.0",
"grunt-mocha-test": "^0.13.3",
"istanbul": "^0.4.3",
"mocha": "^5.0.4",
"mocha-lcov-reporter": "^1.2.0",
"nock": "^9.6.1",
"swagger-router": "^0.4.2",
"tilelive-file": "~0.0.3",
"tilelive-http": "~0.13.0",
"wait-as-promised": "^1.0.2"
},
"deploy": {
"node": "6.11",
"target": "debian",
"install_opts": [
"--build-from-source=mapnik",
"--fallback-to-build=false"
],
"dependencies": {
"_all": [
"libcairo2-dev",
"libgif-dev",
"libpango1.0-dev"
],
"ubuntu": [
"libjpeg62-dev"
],
"debian": [
"libjpeg62-turbo-dev",
"fonts-dejavu",
"libboost-filesystem-dev",
"libboost-program-options-dev",
"libboost-regex-dev",
"libboost-system-dev",
"libboost-thread-dev",
"libgdal-dev",
"libicu-dev",
"libpq-dev",
"libcurl4-gnutls-dev",
"libproj-dev",
"libtiff-dev",
"libwebp5",
{
"repo_url": "https://apt.wikimedia.org/wikimedia",
"release": "jessie-wikimedia",
"pool": "backports",
"packages": [
"libmapbox-variant-dev",
"libmapnik-dev",
"mapnik-utils"
]
}
]
}
}
}