forked from moonstar-x/discord-music-24-7
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.81 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
{
"name": "discord-music-24-7",
"version": "3.0.0",
"description": "A 24/7 music bot for Discord.",
"main": "src/app.js",
"scripts": {
"test": "node_modules/.bin/jest --watchAll --silent",
"test:showlogs": "node_modules/.bin/jest --watchAll",
"test:once": "node_modules/.bin/jest --silent",
"test:once-showlogs": "node_modules/.bin/jest",
"build": "node_modules/.bin/babel src -d build",
"start": "node ./build/app.js",
"debug": "node ./build/app.js --debug",
"dev": "PREFIX=! nodemon --exec node_modules/.bin/babel-node ./src/app.js",
"lint:errors-only": "node_modules/.bin/eslint src test --quiet",
"lint": "node_modules/.bin/eslint src test"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moonstar-x/discord-music-24-7.git"
},
"author": "moonstar-x",
"license": "MIT",
"bugs": {
"url": "https://github.com/moonstar-x/discord-music-24-7/issues"
},
"homepage": "https://github.com/moonstar-x/discord-music-24-7#readme",
"dependencies": {
"@discordjs/opus": "^0.3.3",
"@greencoast/logger": "^1.0.1",
"discord.js": "^12.5.1",
"discord.js-commando": "github:discordjs/Commando",
"music-metadata": "^7.5.2",
"soundcloud-downloader": "^0.2.2",
"ytdl-core": "^4.2.1"
},
"eslintConfig": {
"extends": [
"greencoast/node"
],
"rules": {
"camelcase": "off"
}
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@types/jest": "^26.0.19",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.16.0",
"eslint-config-greencoast": "^0.0.2",
"jest": "^26.6.3",
"nodemon": "^2.0.6",
"text-encoding": "^0.7.0"
}
}