-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "hubot-irc",
"version": "0.4.2",
"author": "Fernando Ortiz <[email protected]>",
"description": "IRC adapter for hubot",
"keywords": "hubot irc adapter",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/nandub/hubot-irc.git"
},
"bugs": {
"url": "http://github.com/nandub/hubot-irc/issues"
},
"main": "./src/irc.coffee",
"engine": "node >= 8.17.0",
"scripts": {
"pretest": "coffee -c --bare -o lib src/",
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "jshint lib/**.js",
"lint:checkstyle": "yarn run lint --reporter checkstyle > checkstyle.xml"
},
"dependencies": {
"irc": "matrix-org/node-irc",
"log": "1.4.0"
},
"devDependencies": {
"chai": "latest",
"coffeescript": "latest",
"coveralls": "latest",
"jshint": "latest",
"hubot": "latest",
"mocha": "latest",
"nyc": "latest",
"sinon": "latest",
"sinon-chai": "latest"
}
}