-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.44 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
50
51
52
{
"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"
}
}