-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
48 lines (48 loc) · 1.13 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": "hubot-telegram",
"version": "1.2.0",
"description": "Hubot adapter for Telegram",
"main": "lib/telegram.js",
"scripts": {
"build": "tsc",
"test": "CI=true jest --forceExit --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "https://github.com/lukefx/hubot-telegram.git"
},
"keywords": [
"hubot",
"adapter",
"telegram",
"telegram hubot",
"hubot telegram"
],
"author": "Luca Simone <[email protected]>",
"contributors": [
"Chris Brand <[email protected]> (http://www.chrisbrand.co.za)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lukefx/hubot-telegram/issues"
},
"homepage": "https://github.com/lukefx/hubot-telegram",
"dependencies": {
"node-telegram-bot-api": "^0.50.0",
"telegrambot": "^0.1.0"
},
"devDependencies": {
"@types/hubot": "^3.3.0",
"@types/jest": "^26.0.5",
"@types/node": "^14.0.23",
"@types/node-telegram-bot-api": "^0.50.2",
"hubot": "^3.3.2",
"jest": "^26.1.0",
"nock": "^13.0.2",
"ts-jest": "^26.1.3",
"typescript": "^3.9.7"
},
"jest": {
"verbose": true
}
}