forked from telegraf/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.27 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "telegraf",
"version": "3.9.0",
"description": "📡 Modern Telegram bot framework",
"license": "MIT",
"author": "Vitaly Domnikov <dotcypress@gmail.com>",
"homepage": "https://github.com/telegraf/telegraf#readme",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/telegraf/telegraf.git"
},
"bugs": {
"url": "https://github.com/telegraf/telegraf/issues"
},
"files": [
"docs",
"lib"
],
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "ava test",
"precommit": "npm run lint && npm test"
},
"engines": {
"node": ">=6.2.0"
},
"dependencies": {
"auto-bind": "^1.1.0",
"debug": "^2.6.0",
"node-fetch": "^1.6.3",
"sandwich-stream": "^1.0.0"
},
"devDependencies": {
"ava": "^0.21.0",
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.0",
"eslint-plugin-ava": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.1.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.1"
},
"docpress": {
"css": "docs/docs.css",
"github": "telegraf/telegraf"
},
"keywords": [
"telegraf",
"telegram",
"telegram bot api",
"bot",
"botapi",
"bot framework"
]
}