-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 1.97 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": "fintecture-client",
"version": "2.5.0",
"description": "Fintecture Open Banking API Gateway enabling secure bank connections and payments",
"main": "lib/fintecture-client.js",
"types": "lib/fintecture-client.d.ts",
"homepage": "https://www.fintecture.com",
"repository": {
"type": "git",
"url": "https://github.com/Fintecture/fintecture-sdk-javascript.git"
},
"author": "Fintecture",
"license": "MIT",
"keywords": [
"Fintecture",
"Fintech",
"Open Banking",
"PSD2",
"Pay",
"Payments",
"Account",
"Account Information",
"ASPSP",
"PISP",
"AISP"
],
"scripts": {
"prepublish": "npm run build",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"build": "npm run clean && tsc -p .",
"clean": "rm -rf build",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=spec/support/jasmine.json",
"coverage": "nyc -r text -r lcov -r text-summary -e .ts npm run test",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint -c .eslintrc.json --ext .ts src"
},
"dependencies": {
"@types/uuid": "^9.0.8",
"axios": "^1.6.7",
"dotenv": "^16.4.1",
"qs": "^6.11.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/jasmine": "^5.1.4",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jasmine": "^5.1.0",
"jasmine-ts-console-reporter": "^3.1.1",
"nock": "^13.5.1",
"nyc": "^15.1.0",
"prettier": "^3.2.4",
"request": "^2.88.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}