-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.2 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": "extract-serac",
"version": "2.0.4",
"description": "",
"main": "extract-serac.js",
"bin": {
"extract-serac": "./lib/extract-serac.js"
},
"files": [
"lib"
],
"scripts": {
"build": "tsc -p .",
"lint": "prettier --check \"src/**/*.{ts,js,json,css,scss,less,md,html}\" && eslint . --report-unused-disable-directives",
"pkg": "pkg lib/extract-serac.js --target latest-linux,latest-win,latest-mac",
"prepare": "husky",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"author": "camptocamp.org",
"license": "MIT",
"dependencies": {
"axios": "0.28.1",
"csv-stringify": "6.5.1",
"yargs": "17.7.2"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@types/node": "22.9.1",
"@types/yargs": "17.0.33",
"eslint": "9.15.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"pkg": "5.8.1",
"prettier": "3.3.3",
"typescript": "5.6.3",
"typescript-eslint": "8.15.0"
},
"lint-staged": {
"*.ts": [
"prettier --write --list-different --ignore-unkown",
"eslint --fix --report-unused-disable-directives"
]
}
}