This repository has been archived by the owner on Apr 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 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
{
"name": "@urbica/martin",
"version": "1.0.0",
"description": "Mapbox Vector Tiles Server",
"author": "Stepan Kuzmin <[email protected]> (stepankuzmin.ru)",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/urbica/martin.git"
},
"scripts": {
"start": "node index.js",
"lint": "eslint src test",
"test": "node test/*_test.js | tap-dot",
"docs": "documentation build src -g --markdown-toc false -f md -o API.md",
"commit": "git-cz",
"release": "standard-version"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bin": {
"martin": "./index.js"
},
"engine-strict": true,
"engines": {
"node": ">=7.6.0"
},
"keywords": [
"mapbox vector tiles",
"tile server",
"postgis",
"redis"
],
"dependencies": {
"@mapbox/tilelive": "5.12.6",
"bluebird": "3.5.1",
"kcors": "2.2.1",
"koa": "2.4.1",
"koa-compress": "2.0.0",
"koa-conditional-get": "2.0.0",
"koa-etag": "3.0.0",
"koa-logger": "3.1.0",
"koa-router": "7.3.0",
"minimist": "1.2.0",
"pg": "7.4.0",
"pg-connection-string": "2.0.0",
"redis": "2.8.0",
"tilelive-postgis": "1.3.0"
},
"devDependencies": {
"@mapbox/geojsonhint": "2.0.1",
"@mapbox/vector-tile": "1.3.0",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"documentation": "5.3.4",
"eslint": "4.14.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"pbf": "3.1.0",
"standard-version": "4.3.0",
"supertest-koa-agent": "0.3.0",
"tap-dot": "1.0.5",
"tape": "4.8.0"
}
}