Skip to content

Commit

Permalink
Merge branch 'release/v0.0.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
rudijs committed Aug 6, 2014
2 parents ad8b6ca + 2e70e0b commit e99afd3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -6,7 +6,7 @@ env:
before_script:
- npm install
script:
- npm test
- npm run coveralls
- ./node_modules/jshint/bin/jshint lib/*.js
- ./node_modules/jshint/bin/jshint test/*.js
after_failure:
Expand Down
7 changes: 4 additions & 3 deletions README.md
Expand Up @@ -3,9 +3,10 @@ koa-json-logger

KoaJS HTTP Request/Response and uncaught downstream Error JSON format logger

[![Build Status](https://travis-ci.org/rudijs/koa-json-logger.svg?branch=master)](https://travis-ci.org/rudijs/koa-json-logger)
[![NPM version](https://badge.fury.io/js/koa-json-logger.svg)](http://badge.fury.io/js/koa-json-logger)
[![Dependency Status](https://gemnasium.com/rudijs/koa-json-logger.svg)](https://gemnasium.com/rudijs/koa-json-logger)
[![Build Status](https://travis-ci.org/rudijs/koa-json-logger.svg?branch=master)](https://travis-ci.org/rudijs/koa-json-logger)
[![Coverage Status](https://coveralls.io/repos/rudijs/koa-json-logger/badge.png?branch=master)](https://coveralls.io/r/rudijs/koa-json-logger?branch=master)
[![NPM version](https://badge.fury.io/js/koa-json-logger.svg)](http://badge.fury.io/js/koa-json-logger)
[![Dependency Status](https://gemnasium.com/rudijs/koa-json-logger.svg)](https://gemnasium.com/rudijs/koa-json-logger)

The actual logging is done with [node-bunyan](https://github.com/trentm/node-bunyan)

Expand Down
10 changes: 6 additions & 4 deletions package.json
@@ -1,14 +1,15 @@
{
"name": "koa-json-logger",
"version": "0.0.5",
"version": "0.0.6",
"description": "KoaJS HTTP Request/Response and uncaught downstream Error JSON format logger",
"repository": {
"type": "git",
"url": "https://github.com/rudijs/koa-json-logger.git"
},
"main": "./lib/koa-json-logger.js",
"scripts": {
"test": "node --harmony node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha --root lib/ --dir test/coverage -- -u exports -R spec"
"test": "node --harmony node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha --root lib/ --dir test/coverage -- -u exports -R spec",
"coveralls": "node --harmony node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha --root lib/ --dir test/coverage -- -u exports -R spec && cat ./test/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"koa",
Expand All @@ -21,11 +22,12 @@
"email": "ooly.me@gmail.com"
},
"license": "MIT",
"engines" : {
"node" : ">=0.11.13"
"engines": {
"node": ">=0.11.13"
},
"devDependencies": {
"chai": "^1.9.1",
"coveralls": "^2.11.1",
"istanbul": "git://github.com/gotwarlost/istanbul.git#harmony",
"jshint": "^2.5.2",
"koa": "^0.8.2",
Expand Down

0 comments on commit e99afd3

Please sign in to comment.