forked from TheSharks/WildBeast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.92 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.92 KB
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
{
"private": true,
"name": "wildbeast",
"version": "6.2.1",
"description": "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/TheSharks/WildBeast.git"
},
"author": "Remco Jongschaap <hello@dougley.com>",
"contributors": [
"Anthony Zaza <tony@lemonmc.com>",
"Curtis Fowler <caf203@gmail.com>",
"Linus Willner <hello@linuswillner.me>"
],
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/TheSharks/WildBeast/issues"
},
"homepage": "https://docs.thesharks.xyz/",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"fs-extra": "^7.0.1",
"mocha": "^6.1.4",
"standard": "^12.0.1",
"uglify-es": "^3.3.9"
},
"dependencies": {
"chalk": "^2.4.2",
"dotenv": "^6.2.0",
"eris": "^0.9.0",
"moment": "^2.24.0",
"superagent": "^5.0.5",
"ws": "^6.2.1"
},
"optionalDependencies": {
"@thesharks/jagtag-js": "^1.0.4",
"arangojs": "^6.10.0",
"elasticsearch": "^15.5.0",
"eris-lavalink": "^1.0.2",
"hot-shots": "^6.3.0",
"jimp": "^0.6.4",
"lokijs": "^1.5.6",
"raven": "^2.6.4",
"xml-js": "^1.6.11",
"youtube-dl": "^1.13.1"
}
}