-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@traien/n8n-nodes-espocrm",
"version": "1.4.0",
"description": "n8n integration with EspoCRM",
"keywords": [
"n8n-community-node-package",
"espocrm",
"crm"
],
"license": "MIT",
"homepage": "",
"author": {
"name": "Osama Bashir",
"email": "traien93@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/traien/n8n-nodes-espocrm.git"
},
"engines": {
"node": ">=18.10"
},
"main": "index.js",
"scripts": {
"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'"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/EspoCRMApi.credentials.js"
],
"nodes": [
"dist/nodes/EspoCRM/EspoCRM.node.js",
"dist/nodes/EspoCRMTrigger/EspoCRMTrigger.node.js",
"dist/nodes/EspoCRMTool/EspoCRMTool.node.js"
]
},
"devDependencies": {
"@types/node": "^20.14.9",
"gulp": "^4.0.2",
"gulp-cli": "^2.3.0",
"n8n-workflow": "1.117.0",
"typescript": "^5.9.3"
}
}