-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
79 lines (79 loc) · 1.84 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "obp-typescript",
"version": "1.0.36",
"license": "Apache-2.0",
"scripts": {
"build": "tsc --declaration && tsc-alias",
"test": "jest --setupFiles dotenv/config",
"lint": "prettier --w . && eslint src __tests__"
},
"dependencies": {
"global": "^4.4.0",
"multer": "^1.4.5-lts.1",
"oauth": "^0.10.0",
"superagent": "^8.0.9"
},
"devDependencies": {
"dotenv": "^16.0.3",
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.3",
"@types/superagent": "^4.1.16",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jest-junit": "^15.0.0",
"pre-commit": "^1.2.2",
"prettier": "2.8.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.1",
"typedoc": "^0.23.26",
"typedoc-github-wiki-theme": "^1.0.1",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.5",
"typescript-language-server": "^3.0.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"yarn lint"
],
"__tests__/**/*.ts": [
"yarn lint"
]
},
"description": "## Usage",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"directories": {
"doc": "docs",
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenBankProject/OBP-TypeScript.git"
},
"keywords": [
"typescript",
"open banking",
"obp",
"javascript",
"functional"
],
"author": "",
"bugs": {
"url": "https://github.com/OpenBankProject/OBP-TypeScript/issues"
},
"homepage": "https://github.com/OpenBankProject/OBP-TypeScript#readme"
}