From 4f481552b7dd5714cf50c77c51c4523167c785e6 Mon Sep 17 00:00:00 2001 From: Kip Gebhardt Date: Thu, 28 May 2015 17:57:33 -0700 Subject: [PATCH] More package.json cleanup. Readme cleanup --- README.md | 6 ++---- package.json | 33 +++++++++++++++++++++------------ 2 files changed, 23 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 1241116..f7ee507 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,11 @@ [![Build Status](https://travis-ci.org/KQED/rss-braider.svg?branch=master)](https://travis-ci.org/KQED/rss-braider) ## Summary -A node.js module to braid or aggregate more than one RSS feed (file or url) into a single feed and process via specified plugins. +Braid/aggregate one or more RSS feeds (file or url) into a single feed (RSS or JSON output). Process resulting feed through specified plugins. ## Installation ``` -$ git clone git@github.com:KQED/rss-braider.git -$ cd rss-braider -$ npm install +npm install rss-braider ``` ## Test `npm test` diff --git a/package.json b/package.json index 75e5fc9..c1c2ebc 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "rss-braider", - "version": "0.1.2", - "description": "Braid/aggregate RSS feeds into a single RSS document. Configuration driven transformations.", + "version": "0.1.3", + "description": "Braid/aggregate RSS feeds into a single RSS (or JSON) document. Process resulting feed through specified plugins.", "main": "index.js", "repository": "https://github.com/KQED/rss-braider", "scripts": { @@ -11,24 +11,33 @@ "rss", "braider", "combiner" + "rss", + "json", + "feed", + "feeds", + "syndicate", + "syndication", + "wordpress", + "blogs", + "distribution" ], "bugs": { "url": "http://github.com/KQED/rss-braider/issues", "email": "kgebhardt@kqed.org" }, "author": "Kip Gebhardt ", - "license": "ISC", + "license": "MIT", "dependencies": { - "async": "^0.9.0", - "bunyan": "^1.3.4", - "feedparser": "^1.0.0", - "include-folder": "^0.7.0", - "lodash": "^3.3.1", - "request": "^2.53.0", - "rss": "git://github.com/rv-kip/node-rss.git#86f2a74" + "async": "^1.0.0", + "bunyan": "^1.3.5", + "feedparser": "^1.1.1", + "include-folder": "^0.9.0", + "lodash": "^3.9.3", + "request": "^2.56.0", + "rss": "git://github.com/rv-kip/node-rss.git#8d1420" }, "devDependencies": { - "tape": "^3.5.0", - "mockdate": "^1.0.1" + "tape": "^4.0.0", + "mockdate": "^1.0.3" } }