-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.37 KB
/
package.json
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
54
55
56
57
58
59
60
61
62
63
{
"name": "n8n-nodes-netsuite",
"version": "0.7.5",
"description": "n8n node for NetSuite using the REST API",
"license": "MIT",
"homepage": "https://github.com/drudge/n8n-nodes-netsuite",
"engines": {
"node": ">=18.17"
},
"author": {
"name": "Nicholas Penree",
"email": "nick@penree.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drudge/n8n-nodes-netsuite.git"
},
"main": "index.js",
"scripts": {
"dev": "tsc --watch",
"build": "tsc && gulp",
"lint": "eslint nodes credentials package.json",
"lintfix": "eslint nodes credentials package.json --fix",
"prepublishOnly": "npm run build && npm run lint"
},
"files": [
"dist"
],
"keywords": [
"n8n",
"node",
"netsuite",
"rest",
"api",
"suitetalk",
"n8n-node",
"n8n-community-node-package"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/NetSuite.credentials.js"
],
"nodes": [
"dist/nodes/NetSuite/NetSuite.node.js"
]
},
"devDependencies": {
"@types/node": "^18.19.39",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.0",
"gulp": "^5.0.0",
"n8n-workflow": "*",
"typescript": "^5.5.3"
},
"peerDependencies": {
"n8n-workflow": "*"
},
"dependencies": {
"@fye/netsuite-rest-api": "^2.3.1",
"p-limit": "^3.1.0"
}
}