@contaazul/n8n-nodes-contaazul
Version:
Node for integration with Conta Azul API in n8n
94 lines (93 loc) • 2.51 kB
JSON
{
"name": "@contaazul/n8n-nodes-contaazul",
"version": "0.3.25",
"description": "Node for integration with Conta Azul API in n8n",
"keywords": [
"n8n-community-node-package",
"conta-azul",
"financeiro",
"vendas",
"produtos",
"servicos"
],
"license": "MIT",
"homepage": "https://github.com/ContaAzul/n8n-nodes-contaazul",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": {
"name": "Conta Azul",
"email": "domphysis@contaazul.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ContaAzul/n8n-nodes-contaazul.git"
},
"engines": {
"node": ">=20.15"
},
"main": "index.js",
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit $1",
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.js": [
"echo 0 || npm run lint:fix"
],
"*.{json,md,yml}": [
"prettier --write"
]
},
"scripts": {
"build": "npx rimraf dist && tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:package": "node scripts/test-package.js",
"release": "release-it --config release-it.config.js --ci",
"release:preview": "npm run release --ci --dry-run",
"cov": "jest --coverage"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/ContaAzulOAuth2Api.credentials.js"
],
"nodes": [
"dist/nodes/ContaAzul/ContaAzul.node.js"
]
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/format": "^19.8.1",
"@jest/globals": "^29.7.0",
"@release-it/conventional-changelog": "^10.0.4",
"@types/jest": "^29.5.8",
"@typescript-eslint/parser": "~8.32.0",
"conventional-changelog": "^7.1.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"conventional-commits-parser": "^6.2.1",
"eslint": "^8.57.0",
"eslint-plugin-n8n-nodes-base": "^1.16.3",
"gulp": "^5.0.0",
"jest": "^29.7.0",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"release-it": "^19.2.2",
"simple-git-hooks": "^2.13.0",
"ts-jest": "^29.4.0",
"typescript": "^5.8.2"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}