package.json cleanup

This commit is contained in:
Kip Gebhardt 2015-02-10 17:36:59 -08:00
parent 3ddb4f8ea3
commit 8dbe91a7c6
2 changed files with 12 additions and 6 deletions

View File

@ -12,7 +12,7 @@ var logger;
var RssBraider = function (options) {
this.feeds = options.feeds || null;
this.logger = logger = options.logger || bunyan.createLogger({name: 'rss-braider'});
this.indent = options.indent || "\t";
this.indent = options.indent || " ";
this.dedupe_fields = options.dedupe_fields || []; // The fields to use to identify duplicate articles
this.date_sort_order = options.date_sort_order || "desc";

View File

@ -1,7 +1,7 @@
{
"name": "rss-braider",
"version": "0.0.1",
"description": "Braid or aggregate RSS feeds into a single RSS document",
"version": "0.1.0",
"description": "Braid/aggregate RSS feeds into a single RSS document. Configuration driven transformations.",
"main": "index.js",
"repository": "https://github.com/KQED/rss-braider",
"scripts": {
@ -12,6 +12,10 @@
"braider",
"combiner"
],
"bugs" : {
"url" : "http://github.com/KQED/rss-braider/issues",
"email" : "kgebhardt@kqed.org"
},
"author": "Kip Gebhardt <kgebhardt@kqed.org>",
"license": "ISC",
"dependencies": {
@ -20,9 +24,11 @@
"feedparser": "^0.19.2",
"include-folder": "^0.7.0",
"lodash": "^3.1.0",
"mockdate": "^1.0.1",
"request": "^2.53.0",
"rss": "git://github.com/rv-kip/node-rss.git#86f2a74",
"tape": "^3.5.0"
"rss": "git://github.com/rv-kip/node-rss.git#86f2a74"
},
"devDependencies": {
"tape": "^3.5.0",
"mockdate": "^1.0.1"
}
}