-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.34 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
{
"name": "@watergis/postgis2geojson",
"version": "0.2.1",
"description": "This module is to extract GeoJSON files by SQL from PostGIS database.",
"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/postgis2geojson.git"
},
"author": "Jin IGARASHI",
"license": "MIT",
"bugs": {
"url": "https://github.com/watergis/postgis2geojson/issues"
},
"homepage": "https://github.com/watergis/postgis2geojson#readme",
"devDependencies": {
"@types/node": "^20.11.28",
"@types/pg": "^8.11.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.4.2"
},
"dependencies": {
"pg": "^8.11.3"
}
}