From eeaea5ad0d45e50b30cf3be6f2f43f80157d3667 Mon Sep 17 00:00:00 2001 From: Shweta Jain Date: Fri, 7 Oct 2016 17:59:37 +0530 Subject: [PATCH 1/2] update package.json -rename package name to 'loggly-bulk' -update package version to 1.0.4 as it is new package -add loggly, winston keywords -update author details --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 141e628..d95c76d 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,13 @@ { - "name": "winston-loggly-bulk", - "version": "1.3.1", + "name": "loggly-bulk", + "version": "1.0.4", "description": "A Loggly transport for winston", - "author": "Charlie Robbins ", + "author": "Shweta Jain ", "repository": { "type": "git", "url": "https://github.com/loggly/winston-loggly-bulk.git" }, - "keywords": ["logging", "sysadmin", "tools"], + "keywords": ["loggly", "logging", "sysadmin", "tools", "winston"], "dependencies": { "node-loggly-bulk": "~1.1.0" }, @@ -18,4 +18,4 @@ "main": "./lib/winston-loggly", "scripts": { "test": "vows --spec" }, "engines": { "node": ">= 0.8.0" } -} +} \ No newline at end of file From 359d5d3f62a74b99bfadab233ea168f9f34c39d8 Mon Sep 17 00:00:00 2001 From: Shweta Jain Date: Fri, 7 Oct 2016 18:02:16 +0530 Subject: [PATCH 2/2] Rename and update package references --- README.md | 17 +++++++++-------- package.json | 4 ++-- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index ccae021..0b7f041 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,11 @@ -# winston-loggly-bulk +#### The original author of this library is Charlie Robbins . +# loggly-winston-bulk A [Loggly][0] transport for [winston][1]. -[![Version npm](https://img.shields.io/npm/v/winston-loggly-bulk.svg?style=flat-square)](https://www.npmjs.com/package/winston-loggly-bulk)[![npm Downloads](https://img.shields.io/npm/dm/winston-loggly-bulk.svg?style=flat-square)](https://www.npmjs.com/package/winston-loggly-bulk) +[![Version npm](https://img.shields.io/npm/v/loggly-winston-bulk.svg?style=flat-square)](https://www.npmjs.com/package/loggly-winston-bulk)[![npm Downloads](https://img.shields.io/npm/dm/loggly-winston-bulk.svg?style=flat-square)](https://www.npmjs.com/package/loggly-winston-bulk) -[![NPM](https://nodei.co/npm/winston-loggly-bulk.png?downloads=true&downloadRank=true)](https://nodei.co/npm/winston-loggly-bulk/) +[![NPM](https://nodei.co/npm/loggly-winston-bulk.png?downloads=true&downloadRank=true)](https://nodei.co/npm/loggly-winston-bulk/) A client implementation for Loggly in node.js. Check out Loggly's [Node logging documentation](https://www.loggly.com/docs/nodejs-logs/) for more. @@ -14,10 +15,10 @@ A client implementation for Loggly in node.js. Check out Loggly's [Node logging var winston = require('winston'); // - // Requiring `winston-loggly` will expose + // Requiring `loggly-winston-bulk` will expose // `winston.transports.Loggly` // - require('winston-loggly-bulk'); + require('loggly-winston-bulk'); winston.add(winston.transports.Loggly, options); ``` @@ -54,7 +55,7 @@ The [winston][1] codebase has been growing significantly with contributions and ``` bash $ npm install winston - $ npm install winston-loggly-bulk + $ npm install loggly-winston-bulk ``` ## Run Tests @@ -81,7 +82,7 @@ Once you have valid configuration and credentials you can run tests with [npm][7 npm test ``` -#### Author: [Charlie Robbins](http://blog.nodejitsu.com) +#### Author: [Shweta Jain](https://www.loggly.com/) #### License: MIT [0]: http://loggly.com @@ -91,4 +92,4 @@ Once you have valid configuration and credentials you can run tests with [npm][7 [4]: http://www.loggly.com/product/ [5]: http://www.loggly.com/docs/automated-parsing/ [6]: http://vowsjs.org -[7]: http://npmjs.org +[7]: http://npmjs.org \ No newline at end of file diff --git a/package.json b/package.json index d95c76d..6007510 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "loggly-bulk", - "version": "1.0.4", + "name": "loggly-winston-bulk", + "version": "1.0.1", "description": "A Loggly transport for winston", "author": "Shweta Jain ", "repository": {