@traien/n8n-nodes-espocrm
Version:
n8n integration with EspoCRM
58 lines • 1.39 kB
JSON
{
"name": "@traien/n8n-nodes-espocrm",
"version": "0.3.0",
"description": "n8n integration with EspoCRM",
"keywords": [
"n8n-community-node-package",
"espocrm",
"crm"
],
"license": "MIT",
"homepage": "",
"author": {
"name": "Your Name",
"email": "your.email@example.com"
},
"repository": {
"type": "git",
"url": "https://github.com/traien/n8n-nodes-espocrm.git"
},
"engines": {
"node": ">=18.10"
},
"main": "index.js",
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/EspoCRMApi.credentials.js"
],
"nodes": [
"dist/nodes/EspoCRM/EspoCRM.node.js",
"dist/nodes/EspoCRMTrigger/EspoCRMTrigger.node.js"
]
},
"devDependencies": {
"@types/node": "^20.4.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.56.0",
"eslint-plugin-n8n-nodes-base": "^1.16.1",
"gulp": "^4.0.2",
"prettier": "^3.3.2",
"typescript": "^5.5.3"
},
"dependencies": {
"n8n-workflow": "1.48.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"build": "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": "echo 'No tests specified'"
}
}