-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.17 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.17 KB
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": "cactus-data",
"version": "0.0.1",
"description": "This script is to process the data from CACTUS project website",
"bin": {
"charites": "dist/cli.js"
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -w",
"lint": "eslint --fix .",
"dev": "./node_modules/.bin/ts-node ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/watergis/cactus-data.git"
},
"keywords": [
"cactus",
"costing",
"sanitation"
],
"author": "Jin Igarashi",
"license": "MIT",
"bugs": {
"url": "https://github.com/watergis/cactus-data/issues"
},
"homepage": "https://github.com/watergis/cactus-data#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jsonfile": "^6.1.0",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"commander": "^9.4.0",
"csv-writer": "^1.6.0",
"fs-extra": "^10.1.0",
"jsonfile": "^6.1.0"
}
}