-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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
{
"name": "telegrambot",
"version": "1.0.0",
"description": "Telegrambot that tells weather, news, train schedules etc.",
"main": "bot_commands.js",
"scripts": {
"start": "node bot_commands.js",
"productionbot": "node bot_commands.js --production",
"foreverbot": "forever start bot_commands.js",
"foreverproductionbot": "forever start bot_commands.js --production",
"stopbot": "forever stop bot_commands.js",
"test": "mocha",
"restartforeverbot": "forever restart bot_commands.js",
"restartproductionbot": "forever restart bot_commands.js --production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crare/telegrambot.git"
},
"keywords": [
"telegrambot",
"nodejs"
],
"author": "crare",
"license": "ISC",
"bugs": {
"url": "https://github.com/crare/telegrambot/issues"
},
"homepage": "https://github.com/crare/telegrambot#readme",
"dependencies": {
"commander": "^2.18.0",
"python-shell": "^0.5.0",
"telegraf": "^3.24.0",
"xml2json": "^0.11.2"
},
"devDependencies": {
"mocha": "^6.2.0"
}
}