node-pix-payload
Version:
This library that aims to build the payload of pix payment, with this payload the developer can generate the qr code payable or pay informed the same in the bank's app.
60 lines (59 loc) • 1.61 kB
JSON
{
"name": "node-pix-payload",
"version": "1.4.0",
"description": "This library that aims to build the payload of pix payment, with this payload the developer can generate the qr code payable or pay informed the same in the bank's app.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igormarti/node-pix-payload.git"
},
"keywords": [
"pix",
"payload-pix",
"payload",
"payment",
"bacen",
"brazil",
"BR",
"payment",
"pagamentos",
"qrcode",
"BR-bacen"
],
"author": "igormarti <“igorm573@gmail.com”>",
"license": "MIT",
"bugs": {
"url": "https://github.com/igormarti/node-pix-payload/issues"
},
"homepage": "https://github.com/igormarti/node-pix-payload#readme",
"dependencies": {
"node-crc": "^1.3.0",
"qrcode": "^1.4.4"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/qrcode": "^1.4.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.3"
},
"files": [
"lib/**/*"
]
}