-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.33 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
{
"author": "Ephigenia M. Eichner",
"name": "kontist-cli",
"description": "command line interface tool for kontist banking",
"version": "0.0.0",
"preferGlobal": true,
"keywords": [
"automation",
"banking",
"bill",
"cli",
"command-line-tool",
"commandline",
"invoice",
"kontist",
"money",
"tool",
"transaction",
"transactions",
"transfer"
],
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/",
"!dist/**/*.test.js"
],
"maintainer": {
"name": "Marcel Eichner",
"email": "[email protected]"
},
"contributors": [
{
"name": "Marcel Eichner",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Ephigenia/kontist-cli.git"
},
"funding": {
"url": "http://github.com/sponsors/Ephigenia"
},
"bugs": {
"url": "https://github.com/Ephigenia/kontist-cli/issues"
},
"bin": {
"kontist-cli": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"**/*.ts\"",
"lint:fix": "npm run -s lint -- --fix",
"lint": "eslint source/**/*.ts",
"prepare": "husky install",
"prepublish": "npm run -s build; npm run test;",
"start": "node dist/cli.js",
"test": "TZ=Europe/Berlin nyc --reporter=text --reporter=text-summary --reporter=lcov ts-mocha --watch-extensions ts --watch-files source source/**/*.ts",
"tdd": "npm run -s test -- --watch",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"watch": "tsc -w"
},
"dependencies": {
"commander": "10.0.0",
"conf": "11.0.1",
"ibantools": "4.2.2",
"kontist": "0.48.4",
"pinst": "3.0.0",
"readline-sync": "1.4.10"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-angular": "17.4.2",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "4.3.4",
"@types/commander": "2.12.2",
"@types/mocha": "10.0.1",
"@types/node": "18.11.18",
"@types/readline-sync": "1.4.4",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"chai": "4.3.7",
"eslint": "8.33.0",
"husky": "8.0.3",
"mocha": "10.2.0",
"nyc": "15.1.0",
"prettier": "2.8.3",
"ts-mocha": "10.0.0",
"typescript": "4.9.4"
}
}