forked from Artsdatabanken/tiny-tileserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.59 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
{
"name": "tiny-tileserver",
"description": "Tiny raster+vector tiles and static file server.",
"version": "1.4.0",
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"coveralls": "^3.0.8",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"nodemon": "^2.0.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
},
"scripts": {
"start": "node tiny-tileserver.js --port 8000 data/",
"debug": "nodemon -r esm --inspect-brk --inspect=0.0.0.0:9229 tiny-tileserver.js",
"commit": "npx git-cz",
"test": "jest --coverage",
"report-coverage": "coveralls < coverage/lcov.info"
},
"dependencies": {
"@mapbox/vector-tile": "^1.3.1",
"canvas": "^2.6.0",
"express": "^4.17.1",
"log-less-fancy": "^1.4.0",
"minimist": "^1.2.0",
"pbf": "^3.2.1",
"sqlite3": "^4.1.0",
"zlib": "^1.0.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Artsdatabanken/tiny-tileserver.git"
},
"keywords": [
"mbtiles",
"raster-tiles",
"vector-tiles"
],
"author": "Bjorn Reppen <[email protected]> (https://github.com/bjornreppen)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Artsdatabanken/tiny-tileserver/issues"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**"
],
"coverageReporters": [
"lcov"
]
},
"homepage": "https://github.com/Artsdatabanken/tiny-tileserver#readme"
}