mirror of
https://github.com/pacnpal/markov-discord.git
synced 2025-12-20 03:01:04 -05:00
61 lines
1.3 KiB
JSON
61 lines
1.3 KiB
JSON
{
|
|
"name": "markbot",
|
|
"version": "0.6.1",
|
|
"description": "A conversational Markov chain bot for Discord",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"docker-up": "docker run --rm -e TOKEN=abc123 -it $(docker build -q .)"
|
|
},
|
|
"repository": "https://github.com/charlocharlie/markov-discord.git",
|
|
"keywords": [
|
|
"discord",
|
|
"markov",
|
|
"chain",
|
|
"markov-chain",
|
|
"bot",
|
|
"discord-js",
|
|
"discord-bot",
|
|
"markov-chain-bot",
|
|
"docker"
|
|
],
|
|
"author": "Charlie Laabs <charlielaabs@gmail.com>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"bufferutil": "^4.0.1",
|
|
"discord.js": "^11.4.2",
|
|
"erlpack": "github:discordapp/erlpack",
|
|
"markov-strings": "^1.5.2",
|
|
"node-schedule": "^1.3.2",
|
|
"zlib-sync": "^0.1.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-airbnb-base": "^13.1.0",
|
|
"eslint-plugin-import": "^2.17.2"
|
|
},
|
|
"eslintConfig": {
|
|
"parserOptions": {
|
|
"ecmaVersion": 2017
|
|
},
|
|
"env": {
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"airbnb-base"
|
|
],
|
|
"rules": {
|
|
"no-console": 0,
|
|
"no-plusplus": [
|
|
"error",
|
|
{
|
|
"allowForLoopAfterthoughts": true
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|