voko-sdk
Version:
Process payments with ease
63 lines (62 loc) • 1.55 kB
JSON
{
"name": "voko-sdk",
"version": "0.0.2",
"description": "Process payments with ease",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/erickweyunga/voko-sdk.git"
},
"keywords": [
"payments",
"gateway",
"mobile-money",
"zenopay",
"selcom",
"azampay"
],
"author": "Erick Weyunga <maverickweyunga@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"release": "semantic-release"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@types/express": "^5.0.2",
"crypto": "^1.0.1"
},
"devDependencies": {
"@types/node": "^22.15.21",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"express": "^5.1.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"semantic-release": "^24.2.4",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}