UNPKG

mpesalib

Version:

A robust Node.js library for Safaricom's Daraja API with complete TypeScript support and modern async/await patterns

62 lines (61 loc) 1.57 kB
{ "name": "mpesalib", "version": "3.0.0", "description": "A robust Node.js library for Safaricom's Daraja API with complete TypeScript support and modern async/await patterns", "main": "dist/index.js", "types": "dist/index.d.ts", "directories": { "test": "test", "src": "src", "dist": "dist", "docs": "docs" }, "engines": { "node": ">=14.0.0" }, "dependencies": { "axios": "^1.7.0", "dotenv": "^16.4.0", "joi": "^17.13.0", "moment": "^2.30.0" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.14.0", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "jest": "^29.7.0", "nodemon": "^3.1.0", "rimraf": "^5.0.0", "ts-jest": "^29.4.0", "ts-node": "^10.9.0", "typescript": "^5.5.0" }, "scripts": { "build": "rimraf dist && tsc", "dev": "ts-node src/index.ts", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "prepublishOnly": "npm run build", "docs": "typedoc src --out docs" }, "repository": { "type": "git", "url": "git+https://github.com/matrixjnr/mpesa-node-api.git" }, "keywords": [ "Mpesa", "Daraja", "MpesaAPI" ], "author": "John Simiyu", "license": "MIT", "bugs": { "url": "https://github.com/matrixjnr/mpesa-node-api/issues" }, "homepage": "https://github.com/matrixjnr/mpesa-node-api#readme" }