UNPKG

n8n-nodes-plaid

Version:

n8n community node for Plaid financial data integration - the definitive financial node for n8n

90 lines (89 loc) 2.67 kB
{ "name": "n8n-nodes-plaid", "version": "1.0.5", "description": "n8n community node for Plaid financial data integration - the definitive financial node for n8n", "keywords": [ "n8n-community-node-package", "n8n", "plaid", "financial", "banking", "transactions", "accounts", "fintech" ], "license": "MIT", "homepage": "https://github.com/jcdotio/n8n-nodes-plaid", "author": { "name": "jcdotio", "email": "jc@jc.io" }, "repository": { "type": "git", "url": "git+https://github.com/jcdotio/n8n-nodes-plaid.git" }, "engines": { "node": ">=18.10", "pnpm": ">=8.9" }, "packageManager": "pnpm@8.9.0", "main": "index.js", "scripts": { "build": "tsc && gulp build:icons", "dev": "tsc --watch", "format": "prettier nodes credentials --write", "lint": "eslint nodes credentials package.json", "lint:ci": "eslint nodes credentials package.json --max-warnings=20", "lintfix": "eslint nodes credentials package.json --fix", "prepublishOnly": "npm run build && npm run lint:ci && npm run test:ci", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:unit": "jest tests/unit/", "test:integration": "jest tests/integration/", "test:verbose": "jest --verbose", "test:debug": "jest --inspect-brk --runInBand", "test:ci": "jest --coverage --watchAll=false --passWithNoTests", "test:performance": "jest --detectOpenHandles --logHeapUsage", "test:changed": "jest --onlyChanged", "test:related": "jest --findRelatedTests", "test:updateSnapshot": "jest --updateSnapshot", "coverage:open": "open coverage/lcov-report/index.html || start coverage/lcov-report/index.html", "coverage:text": "jest --coverage --coverageReporters=text", "coverage:json": "jest --coverage --coverageReporters=json" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/PlaidApi.credentials.js" ], "nodes": [ "dist/nodes/Plaid/Plaid.node.js" ] }, "devDependencies": { "@types/jest": "^29.5.0", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "audit-ci": "^7.1.0", "eslint": "^8.50.0", "eslint-plugin-n8n-nodes-base": "^1.16.1", "gulp": "^4.0.2", "jest": "^29.5.0", "jest-junit": "^16.0.0", "jest-watch-typeahead": "^2.2.2", "n8n-workflow": "^1.0.0", "prettier": "^3.0.3", "ts-jest": "^29.1.0", "typescript": "^5.3.3" }, "peerDependencies": { "n8n-workflow": "*" }, "dependencies": { "plaid": "^34.0.0" } }