OBP-TypeScript/package.json
2023-06-01 18:07:59 +08:00

80 lines
1.8 KiB
JSON

{
"name": "obp-typescript",
"version": "1.0.33",
"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"
}