forked from tmijs/tmi.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.34 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "tmi.js",
"version": "0.0.23",
"description": "Javascript library for the Twitch Messaging Interface.",
"keywords": [
"tmi",
"twitch",
"twitch.tv",
"stream",
"broadcast",
"message",
"messaging",
"interface",
"subscriber",
"websocket",
"ws",
"bot",
"robot"
],
"main": "index.js",
"engines": {
"node": ">=4.0.0"
},
"author": "Schmoopiie",
"contributors": [
{
"name": "celluj34",
"email": "[email protected]"
}
],
"scripts": {
"test": "mocha --require should"
},
"license": "MIT",
"dependencies": {
"bunyan": "^1.4.0",
"cron": "^1.0.9",
"irc-message": "^3.0.1",
"locallydb": "0.0.9",
"request": "^2.60.0",
"underscore": "^1.8.3",
"underscore.string": "^3.1.1",
"ws": "^0.7.2"
},
"devDependencies": {
"browserify": "^10.2.4",
"browserify-shim": "^3.8.9",
"grunt": "^0.4.5",
"grunt-browserify": "^3.8.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "git+https://github.com/Schmoopiie/grunt-contrib-uglify.git",
"mocha": "^2.2.5",
"should": "^7.0.4"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"irc": "global:irc",
"cron": "global:cron",
"locallydb": "global:locallydb",
"request": "global:request"
}
}