-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 928 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 928 Bytes
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
{
"name": "fints-cli",
"version": "0.1.7",
"description": "FinTS command line interface.",
"keywords": [
"fints",
"hbci",
"banking",
"api",
"cli"
],
"bin": {
"fints": "dist/index.js"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf dist"
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"repository": "https://github.com/Prior99/fints",
"author": "Frederick Gnodtke",
"license": "MIT",
"dependencies": {
"clime": "^0.5.9",
"date-fns": "^2.8.1",
"fints": "^0.5.0",
"winston": "^3.1.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@types/date-fns": "^2.6.0",
"@types/node": "^12.12.21",
"@types/winston": "^2.4.4",
"@types/yamljs": "^0.2.30"
}
}