-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 897 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 897 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
{
"name": "fints-api",
"version": "2.0.2",
"description": "A FinTS/HBCI API based on fints npm module, implemented in typescript",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"postinstall": "npm run build",
"generate": "cxsd -t generated https://raw.githubusercontent.com/hbci4j/hbci4java/master/src/main/resources/pain.001.001.03.xsd",
"build": "tsc -p ./tsconfig-build.json",
"clean": "rm -rf dist"
},
"keywords": [
"fints",
"hbci",
"banking"
],
"author": "Anton Schegg",
"license": "MIT",
"dependencies": {
"@types/node": "^20.11.16",
"date-fns": "^3.3.1",
"fast-xml-parser": "^4.3.4",
"iconv-lite": "^0.6.3",
"isomorphic-fetch": "^3.0.0",
"mt940-js": "^1.0.0",
"typescript": "^5.3.3",
"winston": "^3.11.0"
},
"devDependencies": {
"cxsd": "^0.1.1",
"tslint": "^6.1.3"
}
}