mirror of
https://github.com/LightAir/turbo-rss.git
synced 2026-02-04 12:06:20 +00:00
updated version, removed dependency on my logging module, removed empty util.js.
This commit is contained in:
@@ -2,8 +2,7 @@
|
|||||||
Documentation coming soon.
|
Documentation coming soon.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var XML = require('xml'),
|
var XML = require('xml');
|
||||||
log = require('logging').from(__filename);
|
|
||||||
|
|
||||||
function RSS (options, items) {
|
function RSS (options, items) {
|
||||||
options = options || {};
|
options = options || {};
|
||||||
|
|||||||
10
package.json
10
package.json
@@ -1,12 +1,13 @@
|
|||||||
{
|
{
|
||||||
"name": "rss",
|
"name": "rss",
|
||||||
"version": "0.0.3",
|
"version": "0.0.4",
|
||||||
"description": "RSS feed generator. A really simple API to add RSS feeds to any project.",
|
"description": "RSS feed generator. A really simple API to add RSS feeds to any project.",
|
||||||
"homepage": "http://github.com/dylang/node-rss",
|
"homepage": "http://github.com/dylang/node-rss",
|
||||||
"author": "Dylan Greene <dylang@gmail.com>",
|
"author": "Dylan Greene <dylang@gmail.com>",
|
||||||
"contributors": [
|
"contributors": [
|
||||||
"Dylan Greene <dylang@gmail.com>",
|
"Dylan Greene <dylang@gmail.com>",
|
||||||
"Xavier Damman <xdamman@gmail.com>"
|
"Xavier Damman <xdamman@gmail.com>",
|
||||||
|
"Michael R. Lange"
|
||||||
],
|
],
|
||||||
"repository":
|
"repository":
|
||||||
{
|
{
|
||||||
@@ -20,10 +21,9 @@
|
|||||||
},
|
},
|
||||||
"dependencies":
|
"dependencies":
|
||||||
{
|
{
|
||||||
"xml": ">= 0.0.4",
|
"xml": ">= 0.0.4"
|
||||||
"logging": ">= 2.0.0"
|
|
||||||
},
|
},
|
||||||
"main": "index.js",
|
"main": "lib/rss.js",
|
||||||
"engines": { "node": ">=0.4.0" },
|
"engines": { "node": ">=0.4.0" },
|
||||||
"licenses" :
|
"licenses" :
|
||||||
[
|
[
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
use nodeunit to run tests.
|
use nodeunit to run tests.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var RSS = require('../index');
|
var RSS = require('../lib/rss');
|
||||||
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|||||||
Reference in New Issue
Block a user