forked from jirwin/treslek
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.13 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
{
"name": "treselek",
"description": "node.js irc bot",
"version": "0.0.1",
"author": {
"name": "Justin Gallardo"
},
"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/treselek.js",
"scripts": {
"lint": "make lint",
"build": "make build",
"test": "make test"
},
"private": true,
"dependencies": {
"async": "0.2.x",
"bitly": "1.2.x",
"cheerio": "0.10.x",
"irc": "0.3.x",
"redis": "0.8.2",
"request": "2.14.x",
"sprintf": "0.1.x",
"underscore": "1.4.x",
"argsparser": "0.0.x",
"moment": "~2.2.1",
"logmagic": "~0.1.4",
"logmagic-logstash": "0.0.2"
},
"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
}
}