-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.7 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "node-red-node-telegrambot",
"version": "2.1.2",
"description": "Telegram userbot nodes for Node-RED",
"files": [
"telegrambot/",
"examples/",
"MIGRATION.md",
"CHANGELOG.md"
],
"dependencies": {
"qrcode-generator": "^2.0.4",
"teleproto": "^1.228.5"
},
"scripts": {
"lint": "eslint .",
"postlint": "echo ✅ lint valid",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "node --test --test-force-exit --test-timeout=30000 --test-concurrency=1",
"coverage": "c8 npm test",
"coverage:check": "c8 --check-coverage npm test"
},
"c8": {
"include": [
"telegrambot/**/*.js"
],
"lines": 80,
"statements": 80,
"functions": 80,
"branches": 80
},
"node-red": {
"version": ">=1.3.7",
"nodes": {
"telegrambot": "telegrambot/telegrambot.js"
}
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"node-red",
"telegram",
"bot",
"userbot",
"selfbot",
"mtproto",
"teleproto"
],
"repository": {
"type": "git",
"url": "https://github.com/windkh/node-red-node-telegrambot"
},
"author": "Karl-Heinz Wind",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.0",
"c8": "^12.0.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.0.0",
"globals": "^17.0.0",
"node-red": "^5.0.1",
"node-red-node-test-helper": "^0.3.4",
"prettier": "^3.0.0"
}
}