UNPKG

geojson-tile-server

Version:

A simple tile service, that takes one or more GeoJSON files and offers them as slippy maps in MVT, VT or GeoJSON format.

50 lines (49 loc) 1.59 kB
{ "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" } }