UNPKG

n8n-nodes-clay

Version:

n8n community node for Clay - Data enrichment and automation platform

77 lines (75 loc) 2.33 kB
{ "name": "n8n-nodes-clay", "version": "0.1.8", "description": "n8n community node for Clay - Data enrichment and automation platform", "keywords": [ "n8n-community-node-package", "clay", "data-enrichment", "automation", "crm", "lead-generation", "table-operations" ], "license": "MIT", "homepage": "https://github.com/bcharleson/n8n-nodes-clay", "author": { "name": "Brandon Charleson", "email": "brandon@charleson.dev" }, "repository": { "type": "git", "url": "git+https://github.com/bcharleson/n8n-nodes-clay.git" }, "main": "index.js", "engines": { "node": ">=18.10" }, "scripts": { "build": "tsc && gulp build:icons", "dev": "tsc --watch", "format": "prettier nodes credentials --write", "lint": "eslint nodes/ClayApi nodes/generic.functions.ts credentials", "lintfix": "eslint nodes/ClayApi nodes/generic.functions.ts credentials --fix", "test": "jest", "test:unit": "jest __tests__/unit", "test:integration": "jest __tests__/integration", "test:e2e": "jest __tests__/e2e", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "type-check": "tsc --noEmit", "dev:setup": "chmod +x scripts/dev-setup.sh && ./scripts/dev-setup.sh", "dev:start": "cd ~/n8n-dev-environment && ./start-dev.sh", "dev:restart": "cd ~/n8n-dev-environment && ./restart-dev.sh", "publish:dev": "npm version prerelease --preid=dev --no-git-tag-version && npm publish --tag dev", "publish:beta": "npm version prerelease --preid=beta && npm publish --tag beta", "publish:rc": "npm version prerelease --preid=rc && npm publish --tag rc", "publish:stable": "npm version patch && npm publish" }, "files": [ "dist" ], "n8n": { "n8nNodesApiVersion": 1, "credentials": [ "dist/credentials/ClayApiCredentials.credentials.js" ], "nodes": [ "dist/nodes/ClayApi/ClayApi.node.js" ] }, "devDependencies": { "@typescript-eslint/parser": "^7.15.0", "eslint": "^8.56.0", "eslint-plugin-n8n-nodes-base": "^1.16.1", "gulp": "^4.0.2", "n8n-workflow": "^1.82.0", "prettier": "^3.3.2", "typescript": "^5.5.3", "jest": "^29.7.0", "@types/jest": "^29.5.5" }, "peerDependencies": { "n8n-workflow": "^1.82.0" } }