forked from discordjs/Commando
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·48 lines (48 loc) · 1.18 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
{
"name": "@iceprod/discord.js-commando",
"version": "0.15.0",
"description": "The unofficial command framework for Discord.js",
"license": "Apache-2.0",
"author": "Daniel Bulant (https://danbulant.eu/)",
"repository": {
"type": "git",
"url": "https://github.com/iceproductions/Commando.git"
},
"bugs": {
"url": "https://github.com/iceproductions/Commando/issues"
},
"keywords": [
"discord",
"bot",
"commands"
],
"scripts": {
"test": "yarn run lint && yarn run docs:test",
"test-bot": "node test/bot.js",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"docs": "docgen --source src --custom docs/index.yml --output docs/docs.json",
"docs:test": "docgen --source src --custom docs/index.yml"
},
"main": "src/index",
"types": "./typings/index.d.ts",
"dependencies": {
"@discordjs/rest": "^0.1.0-canary.0",
"common-tags": "^1.8.0",
"discord-api-types": "^0.24.0",
"is-promise": "4.0.0",
"require-all": "^3.0.0"
},
"devDependencies": {
"@types/node": "^12.7.3",
"discord.js-docgen": "discordjs/docgen",
"eslint": "^6.3.0",
"typescript": "^3.6.2"
},
"peerDependencies": {
"discord.js": ">=13.0.0"
},
"engines": {
"node": ">=15.0.0"
}
}