investec-pb-api
Version:
A simple package for interacting with Investec's private banking API
56 lines (55 loc) • 1.36 kB
JSON
{
"name": "investec-pb-api",
"version": "0.3.10",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run ci",
"build": "tsup",
"lint": "tsc",
"ci": "npm run build && npm run check-format && npm run check-exports && npm run lint",
"check-exports": "attw --pack .",
"check-format": "prettier --check .",
"format": "prettier --write .",
"test": "vitest",
"local-release": "changeset version && changeset publish"
},
"files": [
"dist"
],
"type": "module",
"keywords": [
"investec",
"personal banking",
"pb",
"api",
"programmable banking",
"open banking",
"banking"
],
"author": "Devin Pearson",
"license": "MIT",
"description": "A simple package for interacting with Investec's private banking API",
"dependencies": {
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.0",
"@changesets/cli": "^2.27.10",
"@types/node": "^20.10.7",
"@types/node-fetch": "^2.6.12",
"@types/uuid": "^10.0.0",
"prettier": "3.1.1",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"validator": "^13.15.0",
"vitest": "^3.1.4"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
}
}