-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "multi-stream-chatbot",
"version": "1.0.0",
"description": "Chatbot framework that listens and sends messages to multiple streaming platforms simultaneously",
"main": "index.js",
"files": [
"actions",
"auth",
"streams",
"util",
"bot"
],
"scripts": {
"test": "jest --silent",
"pretty": "prettier --check **/*.js",
"fix-pretty": "prettier --write **/*.js **/__tests__/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HackerShackOfficial/multi-stream-chatbot.git"
},
"keywords": [
"twitch",
"youtube",
"chatbot",
"multi",
"stream"
],
"author": "atainter",
"license": "ISC",
"bugs": {
"url": "https://github.com/HackerShackOfficial/multi-stream-chatbot/issues"
},
"dependencies": {
"googleapis": "~42.0.0",
"node-fetch": "~2.6.0",
"tmi.js": "~1.4.5"
},
"homepage": "https://github.com/HackerShackOfficial/multi-stream-chatbot#readme",
"devDependencies": {
"jest": "~24.9.0",
"prettier": "~1.19.1"
}
}