-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1014 Bytes
/
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
{
"name": "lib-fints",
"version": "1.1.0",
"description": "Typescript/Javascript client library for Online-Banking via the FinTS 3.0 protocol with PIN/TAN",
"engines": {
"node": ">=18.0.0"
},
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"./dist"
],
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"pack": "npm run build && npm pack --pack-destination ~/npm-repo",
"test": "vitest"
},
"keywords": [
"FinTS",
"HBCI",
"Online Banking",
"Home Banking",
"PIN/TAN"
],
"author": "Robert Weber <[email protected]>",
"license": "LGPL-2.1-or-later",
"repository": {
"type": "git",
"url": "https://github.com/robocode13/lib-fints.git"
},
"devDependencies": {
"@types/node": "^20.10.6",
"typescript": "^5.3.3",
"vitest": "^1.6.0"
}
}