-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "telegram-bot-node",
"version": "1.0.0",
"description": "An all-in-one, plugin-based, Telegram Bot.",
"dependencies": {
"cron": "^1.3.0",
"google-search": "0.0.5",
"inquirer": "^1.2.2",
"leaky-bucket": "^2.1.1",
"node-telegram-bot-api": "^0.29.0",
"request": "^2.67.0",
"request-promise-native": "^1.0.5",
"rss-parser": "^3.1.1",
"safe-regex": "^1.1.0",
"walk-sync": "^0.3.1",
"wikijs": "^4.5.0",
"winston": "^2.2.0"
},
"devDependencies": {
"eslint": "^4.13.1",
"mocha": "^4.0.1"
},
"scripts": {
"setup:guided": "bash bin/guided-install.sh",
"configure:guided": "node setupBot.js",
"setup:expert": "bash bin/expert-install.sh",
"configure:expert": "node src/Installer.js",
"bot": "node src/Bot.js",
"lint": "eslint src/",
"test": "mocha tests/ --name '*Test.js' --recursive --exit",
"test:watch": "npm run test -- --watch",
"install-hooks": "cp hooks/* .git/hooks/"
},
"engines": {
"node": ">=6.0.0"
},
"author": "Cristian Baldi",
"license": "MIT"
}