nasspay
Version:
TypeScript/JavaScript SDK for integrating with the Nass Merchant Payment Gateway. Supports both Portal and Direct API integration methods with comprehensive type definitions.
82 lines (81 loc) • 2.11 kB
JSON
{
"name": "nasspay",
"version": "1.0.0",
"description": "TypeScript/JavaScript SDK for integrating with the Nass Merchant Payment Gateway. Supports both Portal and Direct API integration methods with comprehensive type definitions.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"clean": "rm -rf dist/",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"postinstall": "echo 'Thank you for installing nasspay! Visit https://github.com/yourusername/nass-payment-gateway for documentation.'",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts"
},
"keywords": [
"nass",
"payment",
"gateway",
"api",
"e-payment",
"typescript",
"javascript",
"iraq",
"iraqi-dinar",
"pos",
"credit-card",
"payment-processing",
"merchant",
"fintech",
"3d-secure",
"pci-dss"
],
"author": {
"name": "Yad Hersh",
"email": "info@yadhersh.com",
"url": "https://yadhersh.com"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.0",
"typescript": "^5.3.0",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"prettier": "^3.2.0",
"nock": "^13.5.0",
"@types/nock": "^11.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YadaCoder/nasspay.git"
},
"bugs": {
"url": "https://github.com/YadaCoder/nasspay/issues"
},
"homepage": "https://github.com/YadaCoder/nasspay#readme",
"publishConfig": {
"access": "public"
}
}