-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 936 Bytes
/
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
{
"name": "node-red-node-telegrambot",
"version": "0.1.6",
"description": "Telegram userbot nodes for Node-RED",
"dependencies": {
"telegram": "^2.18.38"
},
"scripts": {
"lint": "eslint telegrambot/*.js",
"postlint": "echo ✅ lint valid"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"node-red": {
"version": ">=1.3.7",
"nodes": {
"telegrambot": "telegrambot/telegrambot.js"
}
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"node-red",
"telegram",
"bot",
"userbot",
"selfbot"
],
"repository": {
"type": "git",
"url": "https://github.com/windkh/node-red-node-telegrambot"
},
"author": "Karl-Heinz Wind",
"license": "MIT",
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"prettier": "^2.7.1"
}
}