forked from GeyserMC/GeyserDiscordBot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 955 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
39
40
41
42
43
44
{
"name": "geyserbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"validate-tags": "node ./bot_modules/tags/validator.js",
"start": "node index.js",
"dev": "nodemon",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.3",
"clean-text-utils": "^1.1.17",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"github-api": "^3.3.0",
"ip-range-check": "^0.2.0",
"java-stack-parser": "^1.0.0",
"mcping-js": "^1.5.0",
"node-nlp": "^4.4.0",
"string-similarity": "^4.0.2"
},
"devDependencies": {
"nodemon": "^2.0.4",
"standard": "^16.0.3"
},
"nodemonConfig": {
"exec": "npm start",
"ignore": [
"config.json"
],
"ext": "js,json,tag",
"watch": [
".env",
"."
]
}
}