-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "telegram-bot-api",
"description": "First Telegram Bot API node.js library",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "https://github.com/mast/telegram-bot-api.git"
},
"main": "./lib/index.js",
"keywords": [
"telegram",
"nodejs",
"node.js",
"telegram bot",
"bot",
"api"
],
"author": "Max Stepanov <[email protected]>",
"contributors": [
{
"name": "Max Stepanov",
"email": "[email protected]"
},
{
"name": "Stanislav Gumeniuk",
"email": "[email protected]"
},
{
"name": "Ali Mihandoost",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.0",
"request": "^2.88.2",
"express": "^4.17.1",
"body-parser": "^1.18.2",
"debug": "^3.1.0"
},
"devDependencies": {
"jest": "^26.0.1"
},
"scripts": {
"test": "./node_modules/.bin/jest test",
"coverage": "./node_modules/.bin/jest --coverage test"
}
}