-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 953 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
{
"name": "telegram-private-bot",
"reverseDNS": "com.mohdph.telegramprivatebot",
"version": "0.0.1",
"description": "A cli application to use a private telegram bot to send you private messages from your other applications through the cli",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/index.js"
},
"bin": {
"telegram-private-bot": "./src/index.js"
},
"keywords": [
"telegram",
"bot",
"private",
"message"
],
"author": "Mohd-PH",
"license": "MIT",
"dependencies": {
"commander": "^2.19.0",
"inquirer": "^6.2.0",
"settings-store": "^1.4.1",
"telegraf": "^3.25.0"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
}
}