-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
64 lines (64 loc) · 1.52 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
{
"name": "tessella",
"version": "2.3.3",
"description": "Mapbox Vector Tiles Server",
"author": "Stepan Kuzmin <[email protected]> (stepankuzmin.com)",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/urbica/tessella.git"
},
"scripts": {
"cz": "git-cz",
"release": "standard-version",
"lint": "eslint src test",
"start": "node index.js",
"test": "node test/index.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bin": {
"tessella": "./index.js"
},
"engine-strict": true,
"engines": {
"node": ">=7.6.0"
},
"keywords": [
"mapbox vector tiles",
"tile server",
"mbtiles",
"postgis"
],
"dependencies": {
"@mapbox/tilelive": "^6.0.0",
"kcors": "^2.2.2",
"koa": "^2.7.0",
"koa-compress": "^3.0.0",
"koa-conditional-get": "^2.0.0",
"koa-etag": "^3.0.0",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"minimist": "^1.2.3",
"tilelive-cache": "^0.7.1",
"tilelive-modules": "^0.4.2"
},
"devDependencies": {
"@mapbox/mbtiles": "^0.11.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.2.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.16.0",
"prettier": "^1.16.4",
"prettier-eslint": "^9.0.0",
"standard-version": "^8.0.1",
"supertest-koa-agent": "^0.3.2",
"tape": "^4.10.1"
}
}