forked from discordjs/discord.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
52
53
54
{
"name": "discord.js",
"version": "8.1.0",
"description": "A way to interface with the Discord API",
"main": "./entrypoint.js",
"scripts": {
"test": "eslint *.js src test && node test/lib-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydrabolt/discord.js.git"
},
"keywords": [
"discord",
"api",
"bot",
"client",
"node",
"discordapp"
],
"author": "Amish Shah <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hydrabolt/discord.js/issues"
},
"homepage": "https://github.com/hydrabolt/discord.js#readme",
"dependencies": {
"superagent": "^2.1.0",
"unpipe": "^1.0.0",
"ws": "^1.1.1"
},
"devDependencies": {
"colors": "^1.1.2",
"eslint": "^1.10.3",
"grunt": "^0.4.5",
"grunt-babel": "<6.0.0",
"grunt-browserify": "^4.0.1",
"grunt-contrib-uglify": "^0.11.0",
"load-grunt-tasks": "^3.4.0",
"mocha": "^2.4.5"
},
"optionalDependencies": {
"node-opus": "^0.2.1",
"tweetnacl": "^0.14.3"
},
"engines": {
"node": ">=0.12.7"
},
"browser": {
"./src/Util/TokenCacher.js": "./src/Util/TokenCacher-shim.js",
"./lib/Util/TokenCacher.js": "./lib/Util/TokenCacher-shim.js"
},
"tonicExampleFilename": "./examples/tonicdev.js"
}