-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.56 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
{
"name": "geojson-tile-server",
"version": "1.2.1",
"main": "dist/cli.js",
"typings": "dist/cli.d.ts",
"keywords": [
"GeoJSON",
"slippy map",
"tile server",
"geojson-vt"
],
"bin": {
"geojson-tile-server": "./bin/run.js"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"start": "tsc-watch --onSuccess \"node ./dist/cli.js\" --onFailure \"echo Compilation Failed\"",
"serve": "node dist/cli.js",
"patch-release": "npm run clean && npm run build && npm version patch && npm publish && git push --follow-tags",
"minor-release": "npm run clean && npm run build && npm version minor && npm publish && git push --follow-tags",
"dry-run": "npm publish --dry-run"
},
"author": "Erik Vullings <erik.vullings@gmail.com> (http://www.tno.nl)",
"license": "MIT",
"description": "A simple tile service, that takes one or more GeoJSON files and offers them as slippy maps in MVT, VT or GeoJSON format.",
"dependencies": {
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"geojson-vt": "^3.2.1",
"vt-pbf": "^3.1.1"
},
"devDependencies": {
"tsc-watch": "^4.2.9",
"rimraf": "3.0.2",
"@types/command-line-args": "^5.0.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.8",
"@types/body-parser": "^1.19.0",
"@types/serve-static": "^1.13.5",
"@types/express-serve-static-core": "^4.17.12",
"@types/qs": "^6.9.4",
"@types/geojson": "^7946.0.7",
"@types/node": "^14.6.4",
"typescript": "^4.0.2"
}
}