-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.12 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.12 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@airporting/ebics-parser",
"version": "3.3.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"imports": {
"@": "./"
},
"repository": "git@github.com:airporting/ebics-parser.git",
"author": "mathrobin <mthrobin@gmail.com>",
"license": "MIT",
"sideEffects": false,
"type": "module",
"packageManager": "yarn@4.13.0",
"engines": {
"node": "24.12.0"
},
"scripts": {
"build": "pkgroll",
"commit": "cz",
"crazy:up": "git pull && yarn set version latest && yarn up '*' && yarn install && yarn prettier:write && git add package.json yarn.lock && git status",
"husky": "husky",
"lint": "eslint -c eslint.config.js",
"prepare": "yarn husky",
"prettier": "prettier --check ./",
"prettier:write": "prettier --write ./",
"parse": "tsx src/cli.ts",
"test": "vitest run --reporter=verbose --coverage",
"v:major": "npm version major -m \"chore: bump major to %s\"",
"v:minor": "npm version minor -m \"chore: bump minor to %s\"",
"v:patch": "npm version patch -m \"chore: bump patch to %s\""
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"dependencies": {
"@types/node": "25.5.0",
"date-fns": "4.1.0",
"zod": "4.3.6"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@eslint/js": "10.0.1",
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"@types/eslint-config-prettier": "6.11.3",
"@types/eslint__js": "9.14.0",
"@vitest/coverage-v8": "4.1.4",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "10.2.0",
"eslint-config-prettier": "10.1.8",
"globals": "17.5.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"pkgroll": "2.27.0",
"prettier": "3.8.2",
"tsx": "4.21.0",
"typescript": "5.9.3",
"typescript-eslint": "8.58.1",
"vitest": "4.1.4"
}
}