-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.96 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
65
66
67
68
69
70
71
72
73
74
{
"name": "@airporting/ebics-parser",
"version": "3.2.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"imports": {
"@": "./"
},
"repository": "[email protected]:airporting/ebics-parser.git",
"author": "mathrobin <[email protected]>",
"license": "MIT",
"sideEffects": false,
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": "22.9.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 ./",
"publish": "yarn npm publish && git add package.json yarn.lock && git commit -m 'feat(version): bump' && git push && git status",
"test": "vitest run --reporter=verbose --coverage"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
]
},
"dependencies": {
"date-fns": "4.1.0",
"joi": "17.13.3"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/js": "9.14.0",
"@types/babel__core": "7.20.5",
"@types/eslint-config-prettier": "6.11.3",
"@types/eslint__js": "8.42.3",
"@vitest/coverage-v8": "2.1.4",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.14.0",
"eslint-config-prettier": "9.1.0",
"globals": "15.11.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"pkgroll": "2.5.1",
"prettier": "3.3.3",
"typescript": "5.6.3",
"typescript-eslint": "8.12.2",
"vitest": "2.1.4"
}
}