forked from dbkynd/twitch-logger-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
28 lines (28 loc) · 882 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
25
26
27
28
{
"name": "twitch-logger-docker",
"version": "1.0.0",
"description": "A Docker container to log multiple Twitch channel's IRC messages to file.",
"repository": "https://github.com/dbkynd/twitch-logger-docker.git",
"author": "DBKynd <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"start": "node src/init.js",
"prettier": "prettier --write **/*.{js,md,*rc,json} --ignore-path .gitignore",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"modclean": "modclean -r -n default:safe"
},
"dependencies": {
"moment-timezone": "^0.5.28",
"tmi.js": "^1.5.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.4.2",
"modclean": "^3.0.0-beta.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"prettier": "^2.0.4"
}
}