-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
37 lines (37 loc) · 879 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
29
30
31
32
33
34
35
36
37
{
"name": "twitch-bot",
"version": "1.3.5",
"description": "Easily create chat bots for Twitch.tv",
"main": "index.js",
"scripts": {
"test": "mocha test/parser.js test/test.js test/socketstub.js --timeout 5000",
"teststub": "mocha test/socketstub.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kritzware/twitch-bot.git"
},
"keywords": [
"twitchbot",
"twitch",
"chatbot",
"bot",
"twitch chatbot",
"twitch bot"
],
"author": "kritzware <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/kritzware/twitch-bot/issues"
},
"homepage": "https://github.com/kritzware/twitch-bot#readme",
"devDependencies": {
"chai": "^4.1.0",
"mocha": "^3.4.2",
"should": "^13.1.3",
"sinon": "^4.1.3"
},
"dependencies": {
"lodash": "^4.17.4"
}
}