discord.js/package.json
Manuel Kraus d9ae732bfd Add sendFile function (#562)
* sendFile

* Add default value to filename

* eslint

* (╯°□°)╯︵ ┻━┻
2016-08-29 19:01:05 +01:00

48 lines
1.1 KiB
JSON

{
"name": "discord.js",
"version": "7.0.0",
"description": "A way to interface with the Discord API",
"main": "./src/index",
"scripts": {
"test": "eslint src/",
"docs": "node docs/generator/generator.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hydrabolt/discord.js.git"
},
"keywords": [
"discord",
"api",
"bot",
"client",
"node",
"discordapp"
],
"author": "Amish Shah <amishshah.2k@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/hydrabolt/discord.js/issues"
},
"homepage": "https://github.com/hydrabolt/discord.js#readme",
"dependencies": {
"superagent": "^1.5.0",
"tweetnacl": "^0.14.3",
"ws": "^1.1.1",
"opusscript": "^0.0.1"
},
"devDependencies": {
"fs-extra": "^0.30.0",
"jsdoc-parse": "^1.2.7"
},
"optionalDependencies": {
"node-opus": "^0.1.13"
},
"engines": {
"node": ">=6.4.0"
},
"browser": {
"./src/Util/TokenCacher.js": "./src/Util/TokenCacher-shim.js",
"./lib/Util/TokenCacher.js": "./lib/Util/TokenCacher-shim.js"
}
}