-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1 KB
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
{
"name": "afrolatinabot",
"version": "1.0.0",
"description": "A telegram bot for @laAfrolatina",
"main": "index.js",
"scripts": {
"lint": "eslint **/*.js",
"start": "node ./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FCalabria/afrolatinaBot.git"
},
"keywords": [
"telegram",
"bot",
"node"
],
"author": "https://github.com/FCalabria",
"license": "MIT",
"bugs": {
"url": "https://github.com/FCalabria/afrolatinaBot/issues"
},
"homepage": "https://github.com/FCalabria/afrolatinaBot#readme",
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"node": true
}
},
"eslintignore": [
"node_modules"
],
"dependencies": {
"body-parser": "^1.18.2",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"node-telegram-bot-api": "^0.30.0",
"twitter": "^1.7.1"
},
"devDependencies": {
"eslint": "^4.14.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0"
}
}