-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 924 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
{
"name": "whatsapp-telegram-bridge",
"version": "0.2.0",
"description": "A bridge between whatsapp and telgram to ease the transition of moving to telegram",
"main": "index.js",
"type": "module",
"scripts": {
"test": "npm run lint",
"lint": "jshint --exclude='node_modules/' *.js",
"start": "node index.js",
"deploy": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UKnowWhoIm/whatsapp-telegram-bridge.git"
},
"keywords": [
"Whatsapp",
"Telegram",
"Bot",
"Bridge"
],
"author": "UKnowWhoIm",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKnowWhoIm/whatsapp-telegram-bridge/issues"
},
"homepage": "https://github.com/UKnowWhoIm/whatsapp-telegram-bridge#readme",
"dependencies": {
"express": "^4.17.1",
"jshint": "^2.13.1",
"node-telegram-bot-api": "^0.54.0",
"venom-bot": "^3.1.2"
}
}