-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (48 loc) · 1.07 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
{
"name": "osu!station-discord",
"version": "0.1.0",
"description": "osu!station, the radio featuring songs from osu! beatmaps",
"license": "Private",
"author":
{
"name": "YaS-Online",
"email": "[email protected]",
"url": "https://yas-online.net"
},
"repository": "yas-online/osustation-discord",
"bugs": "https://github.com/yas-online/osustation-discord/issues",
"private": true,
"config":
{
"engine-strict": true
},
"engines":
{
"node": ">=8.0.0"
},
"main": "./lib/main",
"scripts":
{
"start": "node ./lib/main",
"console": "node ./lib/main remote-console",
"test": "mocha \"test/test-**.js\"",
"test-watch": "mocha --watch \"test/test-**.js\"",
"debug": "node debug ./lib/main",
"watch": "nodemon --ignore cfg/ --ignore log/ --ignore test/"
},
"dependencies":
{
"discordie": "github:qeled/discordie#dev",
"lame": "github:yas-online/node-lame#yas",
"node-opus": "github:yas-online/node-opus#yas",
"winston": "*"
},
"devDependencies":
{
"chai": "*",
"chai-fs": "*",
"chai-string": "*",
"mocha": "*",
"mock-fs": "*"
}
}