UNPKG

vopay-node

Version:

An unofficial library that wraps VoPay REST API(s) to be used in node.js projects

47 lines (46 loc) 1.17 kB
{ "name": "vopay-node", "version": "1.1.3", "description": "An unofficial library that wraps VoPay REST API(s) to be used in node.js projects", "main": "dist/index", "types": "dist/index.d.ts", "scripts": { "clean": "rm -rf dist && mkdir dist", "build:commonjs": "tsc && cp lib/index.d.ts dist/index.d.ts", "build": "npm run clean && npm run build:commonjs", "debug": "node examples/index.js", "test": "npm run build && mocha --require babel-register --recursive --full-trace" }, "author": "Shashank Shekhar <shashank7200@gmail.com>", "license": "MIT", "private": false, "repository": { "type": "git", "url": "https://github.com/ashwamegh/vopay-node.git" }, "files": [ "dist/*" ], "keywords": [ "vopay", "vopay-node", "payment-gateway", "payment-solutions" ], "devDependencies": { "@types/node": "^14.14.21", "babel-cli": "^6.26.0", "babel-preset-es2015": "^6.24.1", "babel-preset-stage-0": "^6.24.1", "babel-register": "^6.26.0", "chai": "^4.2.0", "mocha": "^9.0.1", "typescript": "^4.1.3" }, "dependencies": { "axios": "^0.21.1", "date-fns": "^2.22.1", "querystring": "^0.2.0", "sha1": "^1.1.1" } }