Skip to content

Commit

Permalink
Publishing this under a different name in npm
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Shaisultanov committed May 26, 2015
1 parent 19c78f6 commit 85aa033
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "bunyan-prettystream",
"name": "bunyan-pretty-colors",
"version": "0.1.5",
"description": "A stream implementation of the bunyan cli tool's pretty printing capabilities",
"author": "Amar Suhail <amar.suhail@gmail.com>",
"main": "./lib/prettystream.js",

"repository": {
"type": "git",
"url": "git://github.com/mrrama/node-bunyan-prettystream.git"
"url": "git://github.com/diversario/node-bunyan-pretty-colors.git"
},
"engines": ["node >=0.8.0"],
"keywords": ["log", "logging", "console", "bunyan", "development", "stream"],
Expand Down
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Build Status](https://secure.travis-ci.org/mrrama/node-bunyan-prettystream.png?branch=master)](http://travis-ci.org/mrrama/node-bunyan-prettystream)
[![Coverage Status](https://coveralls.io/repos/mrrama/node-bunyan-prettystream/badge.png?branch=master)](https://coveralls.io/r/mrrama/node-bunyan-prettystream?branch=master)
[![Build Status](https://secure.travis-ci.org/diversario/node-bunyan-pretty-colors.png?branch=master)](http://travis-ci.org/diversario/node-bunyan-pretty-colors)
[![Coverage Status](https://coveralls.io/repos/diversario/node-bunyan-pretty-colors/badge.png?branch=master)](https://coveralls.io/r/diversario/node-bunyan-pretty-colors?branch=master)

bunyan-prettystream is a stream based implementation of the [Bunyan][bunyan] CLI tool's pretty printing capabilities. It allows
bunyan-pretty-colors is a stream based implementation of the [Bunyan][bunyan] CLI tool's pretty printing capabilities. It allows
apps using bunyan to log directly to the console or file in human readable format instead of as JSON without having to
run or pipe into the bunyan tool. This is useful for working with IDEs which do not have the ability to pipe console
output to another application (such as WebStorm).
Expand All @@ -12,7 +12,7 @@ This library is only really meant for development and should not be used on prod

```javascript
var bunyan = require('bunyan');
var PrettyStream = require('bunyan-prettystream');
var PrettyStream = require('bunyan-pretty-colors');

var prettyStdOut = new PrettyStream();
prettyStdOut.pipe(process.stdout);
Expand Down

0 comments on commit 85aa033

Please sign in to comment.