mirror of
https://gitlab.silvrtree.co.uk/martind2000/rss-braider.git
synced 2025-02-10 23:29:15 +00:00
More package.json cleanup. Readme cleanup
This commit is contained in:
parent
acb290dd13
commit
4f481552b7
@ -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`
|
||||
|
33
package.json
33
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 <kgebhardt@kqed.org>",
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user