-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1 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
{
"name": "teleapi",
"version": "3.6.0",
"description": "The useful library to simplify your work with Telegram Bot API",
"main": "index.js",
"author": "Denis Maslennikov <[email protected]> (nofach.co)",
"license": "MIT",
"homepage": "https://telekits.org.js",
"scripts": {
"test": "npm run lint -s && npm run mocha -s",
"mocha": "mocha test.js",
"lint": "eslint index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/telekits/teleapi.git"
},
"bugs": {
"url": "https://github.com/telekits/teleapi/issues"
},
"keywords": [
"framework",
"telegram",
"network",
"telekit",
"wrapper",
"helpful",
"useful",
"tools",
"bot",
"api"
],
"dependencies": {
"debug": "^3.1.0",
"file-type": "^7.6.0",
"form-data": "^2.3.2",
"got": "^8.3.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0",
"mocha": "^5.0.5"
}
}