diff --git a/.gitignore b/.gitignore index 1e7e233..f7f8c2f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ node_modules test/coverage* .DS* +.idea/ diff --git a/.travis.yml b/.travis.yml index 20fd86b..8524235 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,3 @@ language: node_js node_js: - - 0.10 + - 4 diff --git a/README.md b/README.md index cbc0975..c3f52c4 100644 --- a/README.md +++ b/README.md @@ -112,11 +112,12 @@ If an `internalError` event is received, then the log message will be the error ## Version Compatibility -### Currently compatible with: Hapi 8.x.x +### Currently compatible with: Hapi 11.x.x * 0.1.x - Hapi 6.x.x * 0.2.x - Hapi 7.x.x * 0.3.x - Hapi 8.x.x +* 0.4.x - Hapi 11.x.x # License diff --git a/package.json b/package.json index 890c7e9..b38b0cd 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "contributors": [ "Mac Angell " ], - "version": "0.3.0", + "version": "0.4.0", "dependencies": { "bunyan": "1.x.x", "hoek": "2.x.x", @@ -14,7 +14,7 @@ "blanket": "1.x.x", "boom": "2.x.x", "coveralls": "2.x.x", - "hapi": "8.x.x", + "hapi": "^11.x.x", "jshint": "2.x.x", "mocha": "1.x.x", "mocha-lcov-reporter": "0.x.x", @@ -22,7 +22,7 @@ "travis-cov": "0.x.x" }, "peerDependencies": { - "hapi": "8.x.x" + "hapi": "^11.x.x" }, "keywords": [ "hapi", @@ -34,7 +34,7 @@ "bunyan" ], "engines": { - "node": ">=0.10.0" + "node": ">=4.2.1" }, "main": "./lib/hapi-logger.js", "repository": { diff --git a/test/jshint/config.json b/test/jshint/config.json index bc588f7..f8ebbbe 100644 --- a/test/jshint/config.json +++ b/test/jshint/config.json @@ -18,7 +18,7 @@ "unused": true, "strict": false, "trailing": true, - "maxparams": 0, + "maxparams": 5, "maxdepth": 0, "maxstatements": 0, "maxcomplexity": 0,