-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "discord-message-handler",
"version": "2.1.1",
"description": "Message and command handler for discord.js bots and applications.",
"scripts": {
"test": "jest --coverage",
"docs": "markdown-toc README.md -i",
"build": "rimraf dist && webpack && rimraf dist/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmmfranco/discord-message-handler.git"
},
"keywords": [
"discord",
"bot",
"command",
"message",
"chat",
"discordjs"
],
"author": "lmmfranco",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lmmfranco/discord-message-handler/issues"
},
"homepage": "https://github.com/lmmfranco/discord-message-handler#readme",
"devDependencies": {
"@types/jest": "^25.1.1",
"dts-bundle-webpack": "^1.0.0",
"jest": "^24.9.0",
"markdown-toc": "^1.2.0",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"ts-loader": "^6.2.1",
"typescript": "^3.6.4",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@types/node": "^13.7.0",
"discord.js": "^11.2.1"
}
}