-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 831 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 831 Bytes
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
{
"name": "term",
"version": "1.0.0",
"description": "A Discord bot that will let you run bash commands in Docker containers.",
"main": "bot.js",
"scripts": {
"start": "node bot.js",
"dev": "nodemon bot.js --ignore db.json",
"deploy": "ssh root@$PWNSH \"cd /deployments/term && git pull && yarn && pm2 restart Term\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/pwnsquad/term.git"
},
"author": "PwnSquad",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/pwnsquad/term/issues"
},
"homepage": "https://github.com/pwnsquad/term#readme",
"dependencies": {
"dblapi.js": "^2.3.0",
"discord.js": "^11.4.2",
"dockerode": "^2.5.7",
"lowdb": "^1.0.0",
"strip-ansi": "^5.0.0"
},
"devDependencies": {
"nodemon": "^1.18.7"
}
}