-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.82 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.82 KB
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
{
"name": "qtiler",
"version": "2.0.0",
"description": "Qtiler by MundoGIS – tile cache orchestration for QGIS projects",
"type": "module",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon --watch . --exec node server.js",
"build:qtilerauth": "node tools/package-auth-plugin.mjs",
"build:projectsearch": "node tools/package-projectsearch-plugin.mjs",
"build:wmscache": "node tools/package-wmscache-plugin.mjs",
"vendorize:mesh-engine": "node tools/vendorize-mesh-dem-to-terrain.mjs",
"build:quantizedmesh": "node tools/package-quantizedmesh-plugin.mjs",
"build:quantizedmesh:full": "npm run vendorize:mesh-engine && npm run build:quantizedmesh",
"build:vectortiles": "node tools/package-vectortiles-plugin.mjs",
"terrainforge": "node plugins/QuantizedMesh/terrainforge/cli.mjs",
"terrainforge:dry": "node plugins/QuantizedMesh/terrainforge/cli.mjs --dry-run",
"generate:license": "node tools/generate-license.mjs",
"generate:license:ui": "node tools/generate-license-ui.mjs",
"set:admin-password": "node tools/set-admin-password.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "MundoGIS",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/MundoGIS/Qtiler.git"
},
"bugs": {
"url": "https://github.com/MundoGIS/Qtiler/issues"
},
"homepage": "https://github.com/MundoGIS/Qtiler/blob/master/README.md",
"dependencies": {
"adm-zip": "^0.5.12",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"ejs": "^3.1.10",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"node-windows": "^1.0.0-beta.8",
"yauzl": "^3.2.0"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}