-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.38 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": "beatbattlebot",
"version": "1.10.4",
"description": "Discord.js bot for organizing and handling beat battle submissions on music servers",
"main": "bot.js",
"scripts": {
"start": "node bot.js",
"starttracedep": "node --trace-deprecation bot.js",
"devbot": "nodemon bot.js",
"test": "jest --config=./.jestconfig.js ; rm -r coverage/",
"testcov": "jest --coverage --config=./.jestconfig.js",
"testdocs": "echo Check out the jest docs at https://jestjs.io/docs",
"testclearcache": "jest --clearCache",
"testverbose": "jest --expand --config=./.jestconfig.js",
"testwatch": "jest --watchAll --config=./.jestconfig.js",
"build": "echo Placeholder text for smushing libs into a bot.js for web page usage"
},
"repository": {
"type": "git",
"url": "https://github.com/jakethedev/beatbattlebot"
},
"keywords": [
"music competition",
"beat battle",
"feedback",
"music",
"organizer",
"link submission",
"discord",
"bot"
],
"author": "jakethedev",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakethedev/beatbattlebot/issues"
},
"homepage": "https://github.com/jakethedev/beatbattlebot#readme",
"dependencies": {
"dayjs": "^1.11.7",
"discord.js": "^13.15.1"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"jest": "^27.5.1",
"nodemon": "^3.0.2"
}
}