-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 997 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 997 Bytes
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
{
"name": "gamechannelbot",
"version": "1.0.0",
"description": "Discord bot to manage voice channels where you don't want to be interrupted by randoms.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"debug": "node --inspect-brk index.js",
"test": "nyc --reporter=html --reporter=text-summary mocha",
"lint": "eslint --cache ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/lobabob/GameChannelBot.git"
},
"keywords": [
"discord",
"game",
"channels"
],
"author": "",
"license": "SEE LICENSE IN LICENSE FILE",
"bugs": {
"url": "https://github.com/lobabob/GameChannelBot/issues"
},
"homepage": "https://github.com/lobabob/GameChannelBot#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.14.1",
"mocha": "^6.0.0",
"nyc": "^13.3.0"
},
"dependencies": {
"@discordjs/uws": "^11.149.1",
"discord.js": "^11.4.2",
"erlpack": "github:discordapp/erlpack"
}
}