-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
80 lines (80 loc) · 1.69 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "tennu",
"version": "4.11.0",
"description": "Tennu - Modular IRC Bot Framework for Node.js",
"maintainers": [
{
"name": "Ryan Scheel (havvy)",
"email": "[email protected]",
"web": "http://havvy.net"
}
],
"contributors": [
{
"name": "Ryan Scheel (havvy)",
"email": "[email protected]",
"web": "http://havvy.net"
},
{
"name": "Marc Talbot (metalbot)"
},
{
"name": "Dan Ugore"
},
{
"name": "Victorio Berra"
}
],
"repository": {
"type": "git",
"url": "git://github.com/Tennu/tennu.git"
},
"homepage": "https://tennu.github.io/",
"main": "lib/index.js",
"engines": {
"node": ">=0.10.0"
},
"keywords": [
"irc",
"bot",
"tennu",
"irc-bot",
"framework",
"event-driven"
],
"dependencies": {
"after-events": "^1.0.1",
"bluebird": "^3.0.0",
"chunk": "0.0.2",
"commander": "^2.1.0",
"irc-message": "^1.0.0",
"irc-socket": "^3.0.8",
"lodash.create": "^3.1.0",
"lodash.defaults": "^3.1.1",
"lodash.mapvalues": "^3.0.1",
"prefix-event-subscriber": "^1.1.1",
"r-result": "^1.0.0",
"simplesets": "^1.2.0",
"tennu-plugins": "^3.2.0"
},
"devDependencies": {
"@havvy/mock-net-socket": "^2",
"better-assert": "^1.0.0",
"deep-eql": "^0.1.3",
"gulp": "^3.9.1",
"gulp-concat-util": "^0.5.1",
"gulp-rename": "^1.2.2",
"mocha": "^2.0.0",
"sinon": "^1.11.1",
"source-map-support": "^0.2.7"
},
"scripts": {
"test": "gulp build && mocha -R spec",
"test-only": "mocha -R spec || true",
"build": "gulp build"
},
"bin": {
"tennu": "bin/tennu.js"
},
"license": "ISC"
}