forked from jbelford/ShuffleBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.3 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
{
"name": "discordbot",
"version": "1.2.0",
"description": "SoundCloud music bot for Discord",
"main": "build/app",
"types": "build/app",
"dependencies": {
"bufferutil": "^3.0.3",
"discord.js": "11.4.0",
"erlpack": "github:discordapp/erlpack",
"ffmpeg-binaries": "^3.2.2-3",
"libsodium-wrappers": "^0.7.3",
"lodash": "^4.17.11",
"mongodb": "^3.1.6",
"node-opus": "^0.2.7",
"opusscript": "0.0.6",
"request": "^2.88.0",
"spotify-web-api-node": "^4.0.0",
"uws": "^9.14.0",
"ytdl-core": "github:fent/node-ytdl-core"
},
"scripts": {
"start": "npm build && npm run",
"build": "tsc",
"run": "node ./build/app.js",
"test": "mocha -r ts-node/register test/**/*.spec.ts"
},
"engines": {
"node": ">=8.0.0"
},
"engineStrict": true,
"author": "Jack Belford",
"license": "GPL-3.0+",
"devDependencies": {
"@types/chai": "^4.0.10",
"@types/lodash": "^4.14.116",
"@types/mocha": "^2.2.44",
"@types/mongodb": "^3.1.10",
"@types/node": "^8.0.28",
"@types/proxyquire": "^1.3.28",
"@types/request": "^2.47.1",
"@types/sinon": "^4.1.2",
"chai": "^4.1.2",
"mocha": "^4.0.1",
"proxyquire": "^1.8.0",
"sinon": "^4.1.3",
"ts-node": "^4.0.2",
"typemoq": "^2.1.0",
"typescript": "^2.4.2"
}
}