-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "twinkle-parser",
"version": "0.4.17",
"description": "Parse CSV from https://kdb.tsukuba.ac.jp to structured JSON.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"twinkle-parser": "./bin/twinkle-parser.js"
},
"engines": {
"node": "22"
},
"scripts": {
"start": "npm run parse",
"parse": "node bin/twinkle-parser.js",
"build": "tsc",
"lint": "eslint '**/*.{js,ts}'",
"lintfix": "eslint --fix '**/*.{js,ts}'",
"test": "jest",
"format": "prettier --write \"**/*.{ts,js,json,md,yml,yaml}\"",
"prepare": "npm run build",
"release": "shipjs prepare"
},
"author": "Kazumi Inada <[email protected]>",
"license": "MIT",
"dependencies": {
"consola": "^3.0.0",
"csv-parse": "^5.3.0",
"iconv-lite": "^0.6.2",
"minimist": "^1.2.0"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@types/iconv": "3.0.4",
"@types/jest": "29.5.14",
"@types/minimist": "1.2.5",
"@types/node": "22.9.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.9.0",
"globals": "15.12.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"typescript-eslint": "8.15.0"
}
}