mirror of
https://gitlab.silvrtree.co.uk/martind2000/rss-braider.git
synced 2025-02-14 06:09: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)
|
[![Build Status](https://travis-ci.org/KQED/rss-braider.svg?branch=master)](https://travis-ci.org/KQED/rss-braider)
|
||||||
|
|
||||||
## Summary
|
## 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
|
## Installation
|
||||||
```
|
```
|
||||||
$ git clone git@github.com:KQED/rss-braider.git
|
npm install rss-braider
|
||||||
$ cd rss-braider
|
|
||||||
$ npm install
|
|
||||||
```
|
```
|
||||||
## Test
|
## Test
|
||||||
`npm test`
|
`npm test`
|
||||||
|
33
package.json
33
package.json
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "rss-braider",
|
"name": "rss-braider",
|
||||||
"version": "0.1.2",
|
"version": "0.1.3",
|
||||||
"description": "Braid/aggregate RSS feeds into a single RSS document. Configuration driven transformations.",
|
"description": "Braid/aggregate RSS feeds into a single RSS (or JSON) document. Process resulting feed through specified plugins.",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": "https://github.com/KQED/rss-braider",
|
"repository": "https://github.com/KQED/rss-braider",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@ -11,24 +11,33 @@
|
|||||||
"rss",
|
"rss",
|
||||||
"braider",
|
"braider",
|
||||||
"combiner"
|
"combiner"
|
||||||
|
"rss",
|
||||||
|
"json",
|
||||||
|
"feed",
|
||||||
|
"feeds",
|
||||||
|
"syndicate",
|
||||||
|
"syndication",
|
||||||
|
"wordpress",
|
||||||
|
"blogs",
|
||||||
|
"distribution"
|
||||||
],
|
],
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "http://github.com/KQED/rss-braider/issues",
|
"url": "http://github.com/KQED/rss-braider/issues",
|
||||||
"email": "kgebhardt@kqed.org"
|
"email": "kgebhardt@kqed.org"
|
||||||
},
|
},
|
||||||
"author": "Kip Gebhardt <kgebhardt@kqed.org>",
|
"author": "Kip Gebhardt <kgebhardt@kqed.org>",
|
||||||
"license": "ISC",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": "^0.9.0",
|
"async": "^1.0.0",
|
||||||
"bunyan": "^1.3.4",
|
"bunyan": "^1.3.5",
|
||||||
"feedparser": "^1.0.0",
|
"feedparser": "^1.1.1",
|
||||||
"include-folder": "^0.7.0",
|
"include-folder": "^0.9.0",
|
||||||
"lodash": "^3.3.1",
|
"lodash": "^3.9.3",
|
||||||
"request": "^2.53.0",
|
"request": "^2.56.0",
|
||||||
"rss": "git://github.com/rv-kip/node-rss.git#86f2a74"
|
"rss": "git://github.com/rv-kip/node-rss.git#8d1420"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"tape": "^3.5.0",
|
"tape": "^4.0.0",
|
||||||
"mockdate": "^1.0.1"
|
"mockdate": "^1.0.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user