-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "discord-webhook-bot",
"description": "Discord webhook bot",
"author": "Raymond Hammarling",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
"scripts": {
"lint": "eslint eslint.config.mjs lib/ test/",
"test": "ava",
"watch": "ava -w",
"prepublishOnly": "run-s lint test",
"start": "node ."
},
"engines": {
"node": "^20.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"ava": "^6.1.3",
"eslint": "^9.9.1",
"eslint-config-kellyirc": "^3.1.0",
"globals": "^15.9.0",
"npm-run-all": "^4.1.2",
"sinon": "^18.0.0"
},
"dependencies": {
"@keyv/mongo": "^1.0.4",
"debug": "^3.1.0",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"es-main": "^1.3.0",
"jsonschema": "^1.4.1",
"keyv": "^5.0.1",
"keyv-file": "^5.0.2",
"lodash": "^4.17.19",
"minimist": "^1.2.3",
"string-argv": "0.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/raymond-h/discord-webhook-bot"
}
}