forked from plugCubed/plugAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.34 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.34 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
66
67
68
{
"name": "plugapi",
"description": "Generic API for building plug.dj bots",
"version": "5.0.0-beta.2",
"author": "Alex Pham <thedark1337@thedark1337.com>",
"bugs": {
"url": "https://github.com/plugCubed/plugAPI/issues"
},
"contributors": [
{
"name": "Chris Vickery",
"email": "chrisinajar@gmail.com"
},
{
"name": "ging"
},
{
"name": "Nicolas Jeker",
"email": "n.jeker@gmx.net"
},
{
"name": "Chris Bellew",
"email": "atomjack@gmail.com"
},
{
"name": "Thomas Andresen",
"email": "TAT@plugcubed.net"
}
],
"dependencies": {
"chalk": "^1.1.3",
"deasync": "^0.1.9",
"eventemitter3": "^2.0.2",
"got": "^6.7.1",
"handle-errors": "^1.0.0",
"he": "^1.1.1",
"jethro": "^2.7.1",
"tough-cookie": "^2.3.2",
"ws": "^2.0.2"
},
"devDependencies": {
"eslint-config-thedark1337": "^3.0.0",
"mocha": "^3.2.0",
"mocha-eslint": "^3.0.1"
},
"engines": {
"node": ">= 4.0.0"
},
"keywords": [
"api",
"bot",
"plug",
"plug.dj"
],
"license": "MIT",
"main": "./lib/client.js",
"optionalDependencies": {
"bufferutil": "^2.0.0",
"utf-8-validate": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/plugCubed/plugAPI"
},
"scripts": {
"test": "mocha"
}
}