-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "discordquery",
"version": "0.0.4",
"description": "You ever wanted to browse your discord server from a terminal? Look no further discordquery aims to be a CLI interface with your discord bot.",
"main": "build/index.js",
"scripts": {
"docs": "typedoc --options ./typedoc.json",
"start": "tsc --watch",
"build": "tsc",
"test": "mocha -r ts-node/register tests/*.test.ts"
},
"files": [
"build/**/*.*",
"bin/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cjavad/discordquery.git"
},
"author": "Javad Asgari Shafique",
"license": "MIT",
"bugs": {
"url": "https://github.com/cjavad/discordquery/issues"
},
"homepage": "https://github.com/cjavad/discordquery#readme",
"keywords": [
"discord",
"programming language"
],
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.11",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^3.1.0",
"@typescript-eslint/parser": "^3.1.0",
"chai": "^4.2.0",
"eslint": "^7.1.0",
"mocha": "^7.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.3"
},
"dependencies": {
"chalk": "^4.0.0",
"discord.js": "^12.2.0",
"yargs": "^15.3.1"
},
"bin": {
"discordquery": "./bin/discordquery"
}
}