-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.29 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
{
"name": "onlysudo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest --watch",
"test:ci": "jest --ci --reporters='default' --reporters='./github-actions-reporter' --coverage && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sudogroup/onlysudo.git"
},
"author": "Mazen Alotaibi",
"license": "MIT",
"bugs": {
"url": "https://github.com/sudogroup/onlysudo/issues"
},
"homepage": "https://github.com/sudogroup/onlysudo#readme",
"dependencies": {
"@discordjs/builders": "^0.9.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@discordjs/voice": "^0.7.5",
"axios": "^0.24.0",
"discord-api-types": "^0.25.2",
"discord.js": "^13.3.1",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"jest": "^27.4.3",
"libsodium-wrappers": "^0.7.9",
"nodemon": "^2.0.15",
"socket.io": "^4.4.0",
"tmi.js": "^1.8.5"
},
"jest": {
"verbose": false,
"moduleDirectories": [
"node_modules",
"src"
]
},
"devDependencies": {
"eslint": "^8.4.1"
}
}