UNPKG

investec-card-api

Version:

A simple package for interacting with Investec's programmable banking card API

55 lines (54 loc) 1.36 kB
{ "name": "investec-card-api", "version": "0.2.1", "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 && npm audit", "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", "card", "api", "programmable banking", "open banking", "banking" ], "author": "Devin Pearson", "license": "MIT", "description": "A simple package for interacting with Investec's programmable banking card 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.3.5", "typescript": "^5.3.3", "validator": "^13.11.0", "vitest": "^3.1.4" }, "exports": { "./package.json": "./package.json", ".": { "import": "./dist/index.js", "default": "./dist/index.cjs" } } }