-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 930 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": "mmo-discord-bot",
"description": "Default template for JavaScript bot",
"version": "0.10.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dischanet/mmo-discord-bot.git"
},
"author": "dischanet",
"license": "MIT",
"bugs": {
"url": "https://github.com/dischanet/mmo-discord-bot/issues"
},
"homepage": "https://github.com/dischanet/mmo-discord-bot#readme",
"scripts": {
"start": "node ./src/index.js",
"lint": "eslint --fix --ext .js .",
"precommit": "pretty-quick --staged"
},
"dependencies": {
"axios": "^0.19.2",
"discord.js": "^11.5.1",
"sqlite3": "^4.1.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-problems": "^4.0.0",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1"
}
}