UNPKG

programmable-card-code-emulator

Version:

An emulator for the Programmable Card Code Lamda function

58 lines (57 loc) 1.44 kB
{ "name": "programmable-card-code-emulator", "version": "2.0.0", "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", "create-change": "npx changeset", "local-release": "changeset version && changeset publish" }, "files": [ "dist" ], "type": "module", "keywords": [ "investec", "card", "emulator", "programmable banking", "open banking", "banking" ], "author": "Devin Pearson", "license": "MIT", "description": "An emulator for the Programmable Card Code Lamda function", "dependencies": { "moment-mini": "^2.29.4", "node-fetch": "^3.3.2", "uuid": "^11.0.3" }, "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": "^2.1.8" }, "exports": { "./package.json": "./package.json", ".": { "import": "./dist/index.js", "default": "./dist/index.cjs" } } }