forked from discordjs/discord.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.52 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
{
"name": "nsl-discord.js",
"version": "10.0.1",
"description": "A powerful library for interacting with the Discord API",
"main": "./src/index",
"types": "./typings/index.d.ts",
"scripts": {
"test": "eslint src && docgen --source src --custom docs/index.yml",
"docs": "docgen --source src --custom docs/index.yml --output docs/docs.json",
"test-docs": "docgen --source src --custom docs",
"lint": "eslint src",
"web-dist": "node ./node_modules/parallel-webpack/bin/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NSL-Soft/discord.js.git"
},
"keywords": [
"discord",
"api",
"bot",
"client",
"node",
"discordapp"
],
"author": "Danny Morabito <danny@nslsoft.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NSL-Soft/discord.js/issues"
},
"homepage": "https://github.com/NSL-Soft/discord.js#readme",
"runkitExampleFilename": "./docs/examples/ping.js",
"dependencies": {
"@types/node": "^6.0.0",
"pako": "^1.0.0",
"superagent": "^3.3.0",
"tweetnacl": "^0.14.0",
"ws": "^1.1.0"
},
"peerDependencies": {
"erlpack": "hammerandchisel/erlpack#master",
"node-opus": "^0.2.0",
"opusscript": "^0.0.1",
"uws": "^0.12.0"
},
"devDependencies": {
"discord.js-docgen": "NSL-Soft/discord.js-docgen#master",
"eslint": "^3.12.0",
"parallel-webpack": "^1.6.0",
"uglify-js": "mishoo/UglifyJS2#harmony",
"webpack": "2.2.0-rc.2"
},
"engines": {
"node": ">=6.0.0"
}
}