forked from radiantly/live-countdown-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.24 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
42
43
44
45
46
47
48
49
50
{
"name": "live-countdown-bot",
"version": "2.0.5",
"description": "A discord bot that counts down to an event.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"check-formatting": "prettier --check \"**/*.js\"",
"test": "NODE_ENV=test jest",
"startpm2": "NODE_ENV=production pm2 start index.js --name lcb"
},
"repository": {
"type": "git",
"url": "git+https://github.com/radiantly/live-countdown-bot.git"
},
"keywords": [],
"author": "radiantly",
"license": "MIT",
"bugs": {
"url": "https://github.com/radiantly/live-countdown-bot/issues"
},
"homepage": "https://github.com/radiantly/live-countdown-bot#readme",
"dependencies": {
"better-sqlite3": "^7.1.2",
"chrono-node": "^1.4.8",
"discord.js": "^12.5.1",
"got": "^11.8.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-jest": "^26.6.3",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "npm test && lint-staged"
}
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}