-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
79 lines (79 loc) · 1.52 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
75
76
77
78
79
{
"name": "telegraf-test",
"main": "index.js",
"preferGlobal": false,
"version": "1.2.1",
"description": "Telegraf Test - Simple Test ToolKit of Telegram Bots",
"author": {
"email": "[email protected]",
"name": "Tiago Danin",
"url": "https://TiagoDanin.github.io"
},
"license": "MIT",
"keywords": [
"localhost",
"mocha",
"offline",
"sendmessage",
"telegraf",
"telegram",
"telegram-bot",
"telegram-test",
"test",
"test-automation",
"test-framework",
"testing",
"testing-tools",
"tests"
],
"scripts": {
"start": "node index.js",
"test": "xo && mocha --exit --timeout 100000"
},
"engines": {
"node": ">=v14.17.6"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/TiagoDanin/Telegraf-Test.git"
},
"homepage": "https://TiagoDanin.github.io/Telegraf-Test",
"bugs": {
"url": "https://github.com/TiagoDanin/Telegraf-Test/issues"
},
"github": {
"name": "Telegraf-Test",
"owner": "TiagoDanin"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"package.json"
],
"dependencies": {
"axios": "^0.21.4",
"debug": "^4.3.2",
"express": "^4.17.1"
},
"devDependencies": {
"mocha": "9.1.1",
"telegraf": "^4.4.2",
"xo": "^0.44.0"
},
"xo": {
"rules": {
"camelcase": "off"
},
"semicolon": false
},
"features": [
"Telegram bot api server emulator.",
"Compatible with Telegraf <3.",
"Compatible with Mocha e others test framework.",
"Send message, inline query and callback query.",
"Work in local network.",
"Offline"
]
}