-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.67 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
{
"name": "@fintecsystems/xs2a-node",
"version": "1.1.2",
"description": "NodeJS library for the XS2A API",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/FinTecSystems/xs2a-nodejs.git"
},
"license": "MIT",
"keywords": [
"banking",
"fintech",
"tink",
"banking-api",
"fintech-api"
],
"scripts": {
"build": "npm run clean && npm run build:main && npm run build:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"fix": "npm run fix:tslint",
"fix:tslint": "tslint --fix --project .",
"test": "npm run build && npm run test:unit",
"test:unit": "nyc --silent ava",
"watch": "npm run clean build:main && npm run \"build:main -- -w\" \"test:unit -- --watch\"",
"doc": "npm run doc:html",
"doc:html": "typedoc --options typedoc.json",
"clean": "trash build test"
},
"engines": {
"node": ">=8.9"
},
"dependencies": {
"axios": "^0.26.0"
},
"devDependencies": {
"@types/node": "^17.0.21",
"ava": "^4.1.0",
"dotenv": "^16.0.0",
"nyc": "^15.1.0",
"trash-cli": "^5.0.0",
"tslint": "^6.1.3",
"typedoc": "^0.22.13",
"typescript": "4.3.5"
},
"ava": {
"failFast": true,
"files": [
"build/main/**/*.spec.js"
]
},
"nyc": {
"exclude": [
"**/*.spec.js"
]
},
"bugs": {
"url": "https://github.com/FinTecSystems/xs2a-nodejs/issues"
},
"homepage": "https://github.com/FinTecSystems/xs2a-nodejs#readme",
"directories": {
"doc": "docs"
},
"author": "FinTecSystems GmbH"
}