forked from acaverna/deninho-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 902 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
{
"name": "deninho-bot",
"version": "1.0.0",
"description": "Bot para twitch",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/KastroWalker/deninho-bot.git"
},
"keywords": [
"bot",
"twitch",
"chatbot"
],
"author": "deninhos fans",
"license": "ISC",
"bugs": {
"url": "https://github.com/KastroWalker/deninho-bot/issues"
},
"homepage": "https://github.com/KastroWalker/deninho-bot#readme",
"dependencies": {
"dotenv": "^8.2.0",
"nodemon": "^2.0.6",
"tmi.js": "^1.5.0"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2"
}
}