This repository has been archived by the owner on Sep 3, 2022. It is now read-only.
forked from TheSharks/WildBeast
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 2.06 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"private": true,
"name": "zandercraftbot",
"version": "6.5.0",
"description": "A fork of the WildBeast Discord Bot.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"start-docs": "npm run build && mkdocs serve",
"build": "npm run generate-command-data && npm run minify",
"minify": "uglifyjs --compress --mangle --toplevel --output docs/js/dist/commands.js -- docs/js/dist/commands.js.temp",
"test": "eslint . && mocha",
"dbcreate": "node src/scripts/db-init.js",
"info-dump": "node src/scripts/info-dump.js",
"append-command-info": "node src/scripts/command-info-appender.js",
"generate-command-data": "npm run info-dump && npm run append-command-info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zandercraft/Zandercraft-Bot.git"
},
"author": "Zander <j3zza45.zz@gmail.com>",
"contributors": [
"Remco Jongschaap <hello@dougley.com>",
"Anthony Zaza <tony@lemonmc.com>",
"Curtis Fowler <caf203@gmail.com>",
"Linus Willner <hello@linuswillner.me>"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/Zandercraft/Zandercraft-Bot/issues"
},
"homepage": "https://docs.zandercraft.cf/",
"devDependencies": {
"eslint": "^7.18.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-standard": "^5.0.0",
"fs-extra": "^10.0.0",
"mocha": "^8.2.1",
"standard": "^16.0.4",
"uglify-es": "^3.3.9"
},
"dependencies": {
"chalk": "^2.4.2",
"cleverbot.io": "^1.0.4",
"dotenv": "^10.0.0",
"eris": "^0.15.1",
"eris-sharder": "^1.10.0",
"moment": "^2.29.1",
"owoify-js": "^1.0.7",
"superagent": "^6.1.0",
"ws": "^7.4.6"
},
"optionalDependencies": {
"@thesharks/jagtag-js": "^1.1.0",
"arangojs": "^7.5.0",
"elasticsearch": "^16.7.2",
"eris-lavalink": "^1.0.2",
"hot-shots": "^8.5.2",
"jimp": "^0.16.1",
"lokijs": "^1.5.12",
"raven": "^2.6.4",
"xml-js": "^1.6.11"
}
}