reading
Version:
A minimal RSS/Atom feed reader
41 lines (40 loc) • 907 B
JSON
{
"name": "reading",
"version": "0.1.0",
"description": "A minimal RSS/Atom feed reader",
"bin": "bin/reading.js",
"main": "index.js",
"scripts": {
"lint": "eslint './*.js' './bin/*.js' './lib/*.js'",
"test": "echo \"No tests yet. I know, I know.\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/mikekreuzer/Reading"
},
"keywords": [
"RSS",
"Atom",
"feed",
"blog",
"subscription",
"OPML",
"reader"
],
"author": "Mike Kreuzer <motherfunctor@yahoo.com.au> (http://mikekreuzer.com)",
"license": "MIT",
"dependencies": {
"chalk": "^1.1.1",
"commander": "^2.9.0",
"feedparser": "^1.1.4",
"fs-extra": "^0.26.2",
"jade": "^1.11.0",
"moment": "^2.10.6",
"request": "^2.67.0",
"sanitize-html": "^1.11.1",
"xml2js": "^0.4.15"
},
"devDependencies": {
"eslint": "^1.10.1"
}
}