forked from kartotherian/kartotherian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 2.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
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
{
"name": "kartotherian",
"version": "0.0.30",
"description": "Renders map tiles",
"main": "./app.js",
"scripts": {
"start": "service-runner",
"test": "mocha",
"docker-start": "service-runner docker-start",
"docker-test": "service-runner docker-test",
"coverage": "istanbul cover _mocha -- -R spec"
},
"repository": "kartotherian/kartotherian",
"keywords": [
"REST",
"API",
"service template",
"MediaWiki"
],
"author": "Yuri Astrakhan <[email protected]>",
"contributors": [
"Max Semenik <[email protected]>"
],
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://phabricator.wikimedia.org/tag/maps/"
},
"homepage": "https://github.com/kartotherian/kartotherian",
"kartotherian": {
"registerSourceLibs": [
"tilelive-bridge",
"tilelive-vector",
"@kartotherian/autogen",
"@kartotherian/babel",
"@kartotherian/cassandra",
"@kartotherian/demultiplexer",
"@kartotherian/layermixer",
"@kartotherian/overzoom",
"@kartotherian/postgres",
"@kartotherian/substantial",
"@kartotherian/tilelive-http",
"tilejson"
],
"requestHandlers": [
"@kartotherian/maki",
"@kartotherian/snapshot"
]
},
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"bunyan": "^1.8.9",
"cassandra-uuid": "^0.0.2",
"compression": "^1.6.2",
"domino": "^1.0.28",
"express": "^4.15.2",
"js-yaml": "^3.8.2",
"preq": "^0.5.2",
"service-runner": "^2.2.5",
"node-pre-gyp": "^0.6.34",
"mapnik": "~3.5.0",
"tilelive": "~5.12.2",
"tilelive-bridge": "~2.3.1",
"tilelive-vector": "~3.9.4",
"tilejson": "^1.0.3",
"@kartotherian/core": "^0.0.23",
"@kartotherian/server": "^0.0.17",
"@kartotherian/autogen": "^0.0.10",
"@kartotherian/babel": "^0.0.7",
"@kartotherian/cassandra": "^0.0.12",
"@kartotherian/postgres": "^0.0.10",
"@kartotherian/demultiplexer": "^0.0.10",
"@kartotherian/layermixer": "^0.0.8",
"@kartotherian/overzoom": "^0.0.10",
"@kartotherian/substantial": "^0.0.8",
"@kartotherian/tilelive-http": "^0.12.1",
"@kartotherian/osm-bright-source": "^0.0.4",
"@kartotherian/osm-bright-style": "^2.1.3",
"@kartotherian/geoshapes": "^0.0.13",
"@kartotherian/maki": "^0.0.8",
"@kartotherian/snapshot": "^0.3.4"
},
"optionalDependencies": {
"bunyan-prettystream": "*"
},
"devDependencies": {
"extend": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-jshint": "^2.3.1",
"mocha-lcov-reporter": "^1.3.0",
"swagger-router": "^0.5.6"
},
"deploy": {
"node": "6.9.1",
"target": "debian",
"dependencies": {
"_all": [
"libcairo2-dev",
"libgif-dev",
"libpango1.0-dev"
],
"ubuntu": [
"libjpeg62-dev"
],
"debian": [
"libjpeg62-turbo-dev"
]
}
}
}