-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.5 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@watergis/postgis2inp",
"version": "0.1.4",
"description": "This module is to create EPANET INP file directory from PostGIS",
"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",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/watergis/postgis2inp.git"
},
"author": "Jin IGARASHI",
"license": "MIT",
"bugs": {
"url": "https://github.com/watergis/postgis2inp/issues"
},
"homepage": "https://github.com/watergis/postgis2inp#readme",
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.1",
"dotenv": "^8.2.0",
"jest": "^26.4.2",
"ts-jest": "^26.3.0",
"typescript": "^3.9.6"
},
"dependencies": {
"@watergis/geojson2inp": "^0.1.5",
"@watergis/postgis2geojson": "^0.1.7",
"fs": "0.0.1-security"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/tests/**/*.test.ts"
],
"moduleNameMapper": {
"^#/(.+)": "<rootDir>/src/$1"
}
}
}