forked from telegraf/telegraf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.37 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
58
59
{
"name": "telegraf",
"version": "3.32.0",
"description": "📡 Modern Telegram Bot Framework",
"license": "MIT",
"author": "Vitaly Domnikov <oss@vitaly.codes>",
"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"
},
"main": "telegraf.js",
"files": [
"core/**/*.js",
"scenes/**/*.js",
"typings/*.d.ts",
"*.js"
],
"scripts": {
"lint": "eslint .",
"test": "ava test/*",
"precommit": "npm run lint && npm run typecheck && npm test",
"typecheck": "tsc"
},
"engines": {
"node": ">=8"
},
"types": "./typings/index.d.ts",
"dependencies": {
"@types/node": "^12.0.4",
"debug": "^4.0.1",
"node-fetch": "^2.2.0",
"sandwich-stream": "^2.0.1",
"telegram-typings": "^3.6.0"
},
"devDependencies": {
"ava": "^2.2.0",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-ava": "^8.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"husky": "^3.0.2",
"typescript": "^3.0.1"
},
"keywords": [
"telegraf",
"telegram",
"telegram bot api",
"bot",
"botapi",
"bot framework"
]
}