-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.2 KB
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
{
"name": "free-games-bot",
"version": "2.0.0",
"description": "Bot de Discord para anunciar los juegos gratis que se encuentran en Epic Games Store y Steam.",
"main": "./src/app.js",
"scripts": {
"test": "jest --watchAll --silent",
"test:showlogs": "jest --watchAll",
"test:once": "jest --silent",
"test:once-showlogs": "jest",
"start": "node ./src/app.js",
"debug": "node ./src/app.js --debug",
"dev": "NODE_ENV=development nodemon --exec node ./src/app.js",
"lint:errors-only": "eslint src test --quiet",
"lint": "eslint src test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lambor590/FreeGamesBot.git"
},
"author": "The Ghost",
"license": "MIT",
"bugs": {
"url": "https://github.com/lambor590/FreeGamesBot/issues"
},
"homepage": "https://github.com/lambor590/FreeGamesBot#readme",
"dependencies": {
"@greencoast/discord.js-extended": "^1.2.0",
"@greencoast/logger": "^1.1.0",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.10",
"cron": "^1.8.2",
"discord.js": "^12.5.3",
"level": "^7.0.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.39"
},
"devDependencies": {
"eslint": "^8.3.0"
}
}