n8n-nodes-bizappay
Version:
Unofficial community n8n node for Bizappay API integration - NOT officially endorsed by Bizappay
127 lines (126 loc) • 3.78 kB
JSON
{
"name": "n8n-nodes-bizappay",
"version": "0.3.3",
"description": "Unofficial community n8n node for Bizappay API integration - NOT officially endorsed by Bizappay",
"keywords": [
"n8n-community-node-package",
"unofficial",
"community",
"third-party",
"bizappay",
"authentication",
"category",
"malaysia",
"api",
"monitoring",
"webhook",
"payment",
"billing"
],
"license": "MIT",
"homepage": "https://www.sahabatxpert.my/",
"author": {
"name": "nmhafiz",
"email": "sifatsahabatsdnbhd@gmail.com",
"url": "https://www.sahabatxpert.my/"
},
"repository": {
"type": "git",
"url": "https://github.com/nmhafiz/n8n-nodes-bizappay.git"
},
"bugs": {
"url": "https://github.com/nmhafiz/n8n-nodes-bizappay/issues"
},
"main": "index.js",
"scripts": {
"build": "tsc && npm run build:icons",
"build:icons": "cp nodes/Bizappay/bizappay.svg dist/nodes/Bizappay/",
"build:watch": "tsc --watch",
"dev": "npm run build:watch",
"format": "prettier nodes credentials --write",
"format:check": "prettier nodes credentials --check",
"lint": "eslint nodes credentials --ext .ts",
"lint:fix": "eslint nodes credentials --ext .ts --fix",
"lint:check": "eslint nodes credentials --ext .ts --max-warnings 0",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build && npm run test:ci",
"test": "node test-auto-correction.js && node test-validation.js",
"test:validation": "node test-validation.js",
"test:auto-correction": "node test-auto-correction.js",
"test:integration": "node test-real-api.js",
"test:categories": "node test-get-categories.js",
"test:all": "npm run test && npm run test:integration",
"test:ci": "npm run lint:check && npm run format:check && npm run test",
"validate": "npm run lint && npm run format:check && npm run build",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"link:local": "npm link",
"unlink:local": "npm unlink",
"docs:build": "echo 'Documentation is in markdown files'",
"security:audit": "npm audit",
"security:fix": "npm audit fix",
"deps:check": "npm outdated",
"deps:update": "npm update",
"size:check": "npm pack --dry-run",
"postinstall": "echo 'n8n-nodes-bizappay installed successfully! Check README.md for setup instructions.'"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/BizappayApi.credentials.js"
],
"nodes": [
"dist/nodes/Bizappay/Bizappay.node.js"
]
},
"dependencies": {
"axios": "^1.10.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-plugin-n8n-nodes-base": "^1.11.0",
"n8n-workflow": "*",
"nock": "^14.0.5",
"prettier": "^2.7.1",
"rimraf": "^4.0.0",
"typescript": "^4.8.4"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"no-console": "warn",
"no-debugger": "error",
"prefer-const": "error",
"no-unused-expressions": "warn",
"no-eval": "error",
"no-implied-eval": "error",
"no-new-func": "error"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"useTabs": true,
"printWidth": 100
}
}