-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
95 lines (95 loc) · 2.23 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "ynab-buddy",
"version": "2.0.5",
"description": "Upload & import CSV files from any bank into YNAB",
"keywords": [
"ynab",
"youneedabudget",
"csv",
"import"
],
"main": "dist/index.js",
"bin": "dist/index.js",
"files": [
"dist/",
"assets/"
],
"license": "MIT",
"author": {
"name": "Niels Maerten",
"url": "https://github.com/nielsmaerten"
},
"homepage": "https://github.com/nielsmaerten/ynab-buddy",
"repository": {
"type": "git",
"url": "git+https://github.com/nielsmaerten/ynab-buddy.git"
},
"scripts": {
"start": "ts-node ./src/index.ts",
"hooks": "cross-env NODE_ENV=hooks yarn start",
"build": "tsc",
"package": "yarn build && yarn pkg ./dist/index.js --config ./package.json",
"release": "yarn np --no-publish && npm publish",
"prepublish": "yarn package && yarn test",
"postpublish": "yarn package --compress Brotli",
"test": "jest",
"lint:fix": "yarn prettier ./src --write",
"lint": "yarn prettier ./src --check"
},
"pkg": {
"assets": [
"assets/config/example.yaml"
],
"scripts": "build/**/*.js",
"targets": [
"linux",
"win",
"macos"
],
"outputPath": "bin"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.4.4",
"@types/js-yaml": "^4.0.5",
"@types/luxon": "^3.2.0",
"@types/node": "^20.0.0",
"@types/pako": "^2",
"@types/prompts": "^2.4.3",
"@yao-pkg/pkg": "^5.8.1",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"jest": "^29.5.0",
"np": "^10.0.0",
"prettier": "3.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"abort-controller": "^3.0.0",
"chalk": "^4.1.2",
"csv-parse": "^4.16.3",
"csv-stringify": "^5.6.5",
"glob": "^10.2.2",
"js-yaml": "^4.1.0",
"luxon": "^3.3.0",
"minimatch": "^9.0.0",
"pako": "^2.1.0",
"prompts": "^2.4.2",
"ynab": "2.2"
},
"resolutions": {
"minimist": "^1.2.7"
},
"packageManager": "[email protected]",
"np": {
"cleanup": false
}
}