-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 854 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
{
"name": "botdiscordbasico",
"version": "1.0.0",
"description": "General Discord bot",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "npx standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/francobalich/BotDiscordBasico.git"
},
"keywords": ["bot","dicord","node","general bot"],
"author": "Franco Adrian Balich",
"license": "ISC",
"bugs": {
"url": "https://github.com/francobalich/BotDiscordBasico/issues"
},
"homepage": "https://github.com/francobalich/BotDiscordBasico#readme",
"dependencies": {
"discord.js": "14.3.0",
"dotenv": "^16.0.2"
},
"devDependencies": {
"nodemon": "2.0.19",
"standard": "17.0.0"
},
"eslintConfig": {
"extends": [
"./node_modules/standard/eslintrc.json"
]
}
}