@watergis/postgis2mbtiles
Version:
A module extracting the data from PostGIS to mbtiles by using tippecanoe.
53 lines (52 loc) • 1.48 kB
JSON
{
"name": "@watergis/postgis2mbtiles",
"version": "0.1.6",
"description": "A module extracting the data from PostGIS to mbtiles by using tippecanoe.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "es6/index.js",
"files": [
"dist",
"es6"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --project . --module commonjs --outDir ./dist",
"build:esm": "tsc --project . --module es2015 --outDir ./es6",
"precommit": "eslint --fix 'src/**/*.ts' && git add .",
"test": "node test/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/watergis/postgis2mbtiles.git"
},
"keywords": [
"PostGIS",
"Geojson"
],
"author": "Jin IGARASHI",
"license": "MIT",
"bugs": {
"url": "https://github.com/watergis/postgis2mbtiles/issues"
},
"homepage": "https://github.com/watergis/postgis2mbtiles#readme",
"devDependencies": {
"@types/node": "^14.11.1",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"dotenv": "^8.2.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"typescript": "^3.9.6"
},
"dependencies": {
"@watergis/postgis2geojson": "^0.1.7",
"child_process": "^1.0.2",
"fs": "0.0.1-security"
}
}