-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1014 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1014 Bytes
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
{
"name": "tessera",
"version": "0.15.5",
"description": "A tilelive-based tile server",
"main": "lib/app.js",
"bin": "bin/tessera.js",
"author": "Seth Fitzsimmons <seth@mojodna.net>",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "https://github.com/mojodna/tessera.git"
},
"scripts": {
"test": "vitest --run",
"test:coverage": "vitest --run --coverage"
},
"dependencies": {
"@mapbox/sphericalmercator": "^2.0.2",
"@mapbox/tilelive": "^6.1.0",
"cachecache": "^1.0.3",
"clone": "^2.1.2",
"commander": "^14.0.2",
"cors": "^2.8.5",
"debug": "^4.4.3",
"express": "^5.2.1",
"handlebars": "^4.0.12",
"morgan": "^1.10.0",
"response-time": "^2.3.2",
"tilelive-cache": "^0.7.2",
"tilelive-modules": "^0.4.2"
},
"overrides": {
"@mapbox/tilelive": {
"minimist": "1.2.6"
}
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.17",
"supertest": "^7.0.0",
"vitest": "^4.0.17"
}
}