-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 967 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
41
{
"name": "telegram-bot-maker",
"version": "1.0.3",
"description": "nodejs telegram api wrapper",
"main": "./src/index.js",
"scripts": {
"prepare": "npm run prettier",
"prettier": "prettier --single-quote --trailing-comma es5 --no-semi --print-width 120 --write \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/tawsbob/telegram-bot-maker.git"
},
"keywords": [
"telegram",
"nodejs",
"api",
"bot"
],
"author": "Dellean Santos",
"license": "ISC",
"bugs": {
"url": "https://github.com/tawsbob/telegram-bot-maker/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier"
}
},
"homepage": "https://github.com/tawsbob/telegram-bot-maker#readme",
"devDependencies": {
"husky": "^3.0.0",
"prettier": "^1.18.2"
},
"dependencies": {
"auto-bind": "^2.1.0",
"form-data": "^2.5.0",
"got": "^9.6.0",
"query-string": "^6.8.1"
}
}