-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
24 lines (24 loc) · 957 Bytes
/
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
{
"name": "diplomacy-bot",
"version": "1.0.0",
"description": "1. Set up a virtualenv environment `virtualenv ENV` 1. Activate the virtualenv environment `source ENV/bin/activate` 1. Install the requirements `pip install -r requirements.txt` 1. Create a `.env` file with the variables `APP_TOKEN=<your_app_token>` and `BOT_TOKEN=<your_bot_token>` 1. If you want to print to the console instead of slack, add the key `DIPLOMACY_DEMO=1`",
"main": "src/node/index.js",
"scripts": {
"start": "node src/node/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dane-johnson/diplomacy-bot.git"
},
"author": "Dane Johnson",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/dane-johnson/diplomacy-bot/issues"
},
"homepage": "https://github.com/dane-johnson/diplomacy-bot#readme",
"dependencies": {
"axios": "^0.18.0",
"discord.js": "^11.4.2",
"dotenv": "^7.0.0"
}
}