This repository has been archived by the owner on Jul 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
71 lines (71 loc) · 1.54 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
63
64
65
66
67
68
69
70
71
{
"name": "plugapi",
"description": "Generic API for building plug.dj bots",
"version": "5.1.1",
"author": "Alex Pham <[email protected]> (https://thedark1337.com)",
"bugs": "https://github.com/plugCubed/plugAPI/issues",
"contributors": [
{
"name": "Chris Vickery",
"email": "[email protected]"
},
{
"name": "ging"
},
{
"name": "Nicolas Jeker",
"email": "[email protected]"
},
{
"name": "Chris Bellew",
"email": "[email protected]"
},
{
"name": "Chikachi",
"email": "[email protected]"
},
{
"name": "Dazzuh",
"email": "[email protected]"
}
],
"dependencies": {
"auto-bind": "^2.1.1",
"chalk": "^2.3.2",
"deasync": "^0.1.15",
"eventemitter3": "^4.0.0",
"got": "^9.6.0",
"handle-errors": "^1.0.0",
"jethro": "^4.4.3",
"p-retry": "^4.1.0",
"plug-message-split": "^1.0.1",
"tough-cookie": "^3.0.1",
"ws": "^7.1.2"
},
"devDependencies": {
"documentation": "^12.1.2",
"eslint-config-thedark1337": "^5.0.0",
"mocha": "^6.2.1",
"mocha-eslint": "^5.0.0"
},
"engines": {
"node": ">= 4.0.0"
},
"keywords": [
"api",
"bot",
"plug",
"plug.dj"
],
"license": "MIT",
"main": "./lib/client.js",
"optionalDependencies": {
"bufferutil": "2.x || 3.x",
"utf-8-validate": "2.x || 4.x"
},
"repository": "plugcubed/plugapi",
"scripts": {
"docs": "documentation build lib/*.js -c documentation.yml -f html -o docs",
"test": "mocha"
}
}