-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "discord-backend-manager",
"version": "1.2.15",
"description": "Easily setup a general purpose discord bot to manage your server.",
"main": "dist/index.js",
"scripts": {
"test": "npm run prepare && ./node_modules/mocha/bin/mocha test/ --recursive --timeout=10000",
"bm:prod": "npm uninstall backend-manager && npm i backend-manager@latest",
"bm:local": "npm uninstall backend-manager && npm i file:../backend-manager",
"prepare": "node -e \"require('prepare-package')()\"",
"prepare:watch": "nodemon -w ./src -e '*' --exec 'npm run prepare'"
},
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itw-creative-works/discord-backend-manager.git"
},
"keywords": [
"management",
"backend",
"frontend",
"productivity"
],
"author": "ITW Creative Works",
"license": "ISC",
"bugs": {
"url": "https://github.com/itw-creative-works/discord-backend-manager/issues"
},
"homepage": "https://itwcreativeworks.com",
"preparePackage": {
"input": "./src",
"output": "./dist",
"replace": {}
},
"dependencies": {
"@discordjs/voice": "^0.18.0",
"backend-manager": "^4.2.18",
"discord.js": "^14.18.0",
"itwcw-package-analytics": "^1.0.6",
"node-schedule": "^2.1.0"
},
"devDependencies": {
"mocha": "^8.4.0",
"prepare-package": "^1.1.14"
}
}