We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a4a72c commit efa007dCopy full SHA for efa007d
.travis.yml
@@ -0,0 +1,7 @@
1
+language: node_js
2
+node_js:
3
+ - "0.11"
4
+ - "0.10"
5
+ - "0.8"
6
+before_script:
7
+ - npm install -g grunt-cli
Gruntfile.coffee
@@ -37,7 +37,7 @@ module.exports = (grunt) ->
37
"lib/irc.js": "src/irc.coffee"
38
39
coffeelint:
40
- client: ["src/**/*.coffee"]
+ client: ["Gruntfile.coffee", "src/**/*.coffee"]
41
options:
42
indentation:
43
value: 2
package.json
@@ -19,6 +19,9 @@
19
},
20
"main": "./src/irc.coffee",
21
"engine": "node > 0.6.0",
22
+ "scripts": {
23
+ "test": "grunt"
24
+ },
25
"dependencies": {
26
"irc": "git://github.com/nandub/node-irc.git"
27
0 commit comments