-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.63 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.63 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
54
55
56
57
{
"name": "n8n-nodes-clicksendsms",
"version": "1.2.6",
"description": "Integrate ClickSend with your tech stack using n8n. Configure multi-channel communications. Send SMS, MMS, Voice, Fax and Letters. You can connect ClickSend to any API, database, webhook, and more.",
"keywords": [
"n8n-community-node-package"
],
"license": "MIT",
"homepage": "https://www.clicksend.com/",
"author": {
"name": "ClickSend",
"email": "support@clicksend.com"
},
"repository": {
"type": "git",
"url": "https://github.com/ClickSend/integration-n8n.git"
},
"main": "index.js",
"publishConfig": {
"access": "public",
"provenance": true
},
"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",
"prepublishOnly": "npm run build && npm run lint -c .eslintrc.prepublish.js nodes credentials package.json"
},
"files": [
"dist"
],
"n8n": {
"n8nNodesApiVersion": 1,
"credentials": [
"dist/credentials/ClickSendApi.credentials.js"
],
"nodes": [
"dist/nodes/ClickSend/ClickSend.node.js",
"dist/nodes/ClickSend/ClickSendTrigger.node.js"
]
},
"devDependencies": {
"@types/express": "^4.17.6",
"@types/request-promise-native": "~1.0.15",
"@typescript-eslint/parser": "^8.58.2",
"eslint": "^8.57.1",
"eslint-plugin-n8n-nodes-base": "^1.16.6",
"gulp": "^4.0.2",
"prettier": "^2.7.1",
"typescript": "^5.7.3"
},
"peerDependencies": {
"n8n-workflow": "*"
}
}