-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 939 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
{
"name": "telegramtriviabot",
"version": "1.0.1",
"description": "Bot to play trivia questions on telegram",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "tsc --watch",
"start": "node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LuisMayo/TelegramConversationGames.git"
},
"keywords": [
"telegram",
"trivia",
"bot"
],
"author": "Luis Mayo",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/LuisMayo/TelegramConversationGames/issues"
},
"homepage": "https://github.com/LuisMayo/TelegramConversationGames#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"cross-fetch": "^3.0.5",
"save": "^2.4.0",
"telegraf": "^3.35.0",
"typescript": "^4.0.2"
},
"devDependencies": {
"@types/cheerio": "^0.22.18",
"@types/node": "^13.13.12"
}
}