-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 loc) · 1.25 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
{
"name": "treslek",
"description": "node.js irc bot",
"version": "0.11.0",
"author": {
"name": "Justin Gallardo <justin.gallardo@gmail.com>"
},
"contributors": [],
"repository": {
"type": "git",
"url": "git://github.com/jirwin/treslek.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/jirwin/treslek/master/LICENSE"
}
],
"bin": "./bin/treslek.js",
"scripts": {
"lint": "make lint",
"build": "make build",
"test": "make test",
"install-plugins": "node scripts/install_plugins.js"
},
"dependencies": {
"argsparser": "0.0.x",
"async": "0.2.x",
"cool-ascii-faces": "^1.3.3",
"irc": "0.5.0",
"irc-colors": "^1.1.0",
"logmagic": "~0.1.4",
"markov": "0.0.7",
"minimist": "^1.1.0",
"moment": "^2.10.6",
"npm": "^2.1.7",
"redis": "0.8.2",
"request": "2.14.x",
"sprintf": "0.1.x",
"underscore": "1.4.x"
},
"devDependencies": {
"jshint": "~2.4.3",
"jasmine-node": "~1.13.1"
},
"jshintConfig": {
"boss": true,
"node": true,
"smarttabs": true,
"undef": true,
"unused": "vars",
"onecase": true,
"lastsemic": true,
"newcap": false,
"maxlen": 120,
"indent": 2,
"onevar": true
}
}