-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.29 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
{
"name": "scheduled-messages-bot",
"version": "1.0.0",
"description": "A telegram bot to handle the scheduled messages",
"main": "index.js",
"scripts": {
"start": "nodemon index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docs:generate": "node_modules/.bin/jsdoc -c jsdoc.json",
"docs:add": "git add --verbose -- *docs/*"
},
"engines": {
"node": ">=8.10.0"
},
"pre-commit": {
"run": [
"lint:fix",
"docs:generate",
"docs:add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ana-ac/scheduled-messages-bot.git"
},
"keywords": [
"nodejs",
"telegram",
"bot",
"telegraf"
],
"author": "Ana Arriaga Coll",
"license": "MIT",
"bugs": {
"url": "https://github.com/ana-ac/scheduled-messages-bot/issues"
},
"homepage": "https://github.com/ana-ac/scheduled-messages-bot#readme",
"dependencies": {
"dotenv-safe": "^8.1.0",
"node-fetch": "^2.6.0",
"telegraf": "^3.32.0",
"telegraf-keyboard": "^1.1.2"
},
"devDependencies": {
"docdash-elegant": "^1.1.1",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-promise": "^4.2.1",
"jsdoc": "^3.6.3",
"nodemon": "^1.19.1"
}
}