-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.1 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
{
"name": "timezone-bot",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "jest --coverage",
"start": "npm run format && node src/index.js",
"format": "npm run prettier && npm run lint",
"lint": "eslint src/ tests/ --fix",
"prettier": "prettier --write src/ tests/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/gersonnoboa/timezone-bot.git"
},
"author": "Gerson Noboa",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/gersonnoboa/timezone-bot/issues"
},
"homepage": "https://gitlab.com/gersonnoboa/timezone-bot#readme",
"dependencies": {
"discord.js": "^14.7.1",
"dotenv": "^16.0.2",
"luxon": "^1.25.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.3.1",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^29.3.1",
"prettier": "^2.2.1"
}
}