-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
74 lines (74 loc) · 1.94 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "n8n-nodes-codechat-wapi",
"version": "0.1.5",
"description": "Rest api for communication with WhatsApp",
"keywords": [
"n8n",
"node",
"no-code",
"n8n-nodes-codechat-wapi",
"n8n-community-nodes-codechat-wapi",
"n8n-community-node-package",
"chat",
"communication",
"message",
"send message",
"whatsapp",
"js-whatsapp",
"whatsapp-api",
"whatsapp-web",
"whatsapp",
"whatsapp-chat",
"whatsapp-group",
"automation",
"multi-device",
"bot"
],
"license": "MIT",
"homepage": "",
"author": {
"name": "jrcleber",
"email": "cleber.jr@live.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jrCleber/n8n-codechat-wapi.git"
},
"main": "index.js",
"scripts": {
"build": "tsc && gulp build:icons",
"dev": "tsc --watch",
"format": "prettier nodes credentials --write",
"lint": "tslint -p tsconfig.json -c tslint.json && eslint nodes credentials package.json",
"lintfix": "tslint --fix -p tsconfig.json -c tslint.json && 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/CodeChatApi.credentials.js"
],
"nodes": [
"dist/nodes/CodeChatApi/CodeChatApi.node.js"
]
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.14",
"@types/request-promise-native": "~1.0.15",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-n8n-nodes-base": "^1.11.1",
"eslint-plugin-prettier": "^4.2.1",
"gulp": "^4.0.2",
"n8n-core": "^0.146.1",
"n8n-workflow": "^0.128.1",
"prettier": "^2.8.1",
"tslint": "^6.1.3",
"typescript": "~4.8.4"
}
}