-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 991 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
38
39
40
{
"name": "telegram-bot",
"version": "0.9.0",
"description": "NodeJs interface for telegram bot API",
"main": "index.js",
"scripts": {
"test": "npm run build && node build/test.js",
"build": "babel src -d build",
"docs": "jsdoc2md src/*.js -t README.hbs > README.md"
},
"keywords": [
"telegram",
"telegram bot",
"telegram bot api",
"bot"
],
"author": "Burnlight",
"license": "MIT",
"dependencies": {
"bluebird": "^2.10.2",
"debug": "^2.2.0",
"file-type": "^3.4.0",
"mime": "^1.3.4",
"request": "^2.67.0"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-plugin-remove-comments": "^2.0.0",
"babel-preset-es2015": "^6.6.0",
"jsdoc-to-markdown": "^1.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/burnLight/telegram-bot.git"
},
"bugs": {
"url": "https://github.com/burnLight/telegram-bot/issues"
},
"homepage": "https://github.com/burnLight/telegram-bot"
}