mirror of
https://github.com/LightAir/turbo-rss.git
synced 2026-02-04 03:56:19 +00:00
modernize, finally jump to 1.0.0 to use semver.
This commit is contained in:
@@ -1,5 +1,4 @@
|
|||||||
language: node_js
|
language: node_js
|
||||||
node_js:
|
node_js:
|
||||||
- "0.8"
|
|
||||||
- "0.10"
|
- "0.10"
|
||||||
- "0.11"
|
- "0.11"
|
||||||
|
|||||||
4
LICENSE
4
LICENSE
@@ -1,6 +1,6 @@
|
|||||||
(The MIT License)
|
(The MIT License)
|
||||||
|
|
||||||
Copyright (c) 2011 Dylan Greene <dylang@gmail.com>
|
Copyright (c) 2011-2014 Dylan Greene <dylang@gmail.com>
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
a copy of this software and associated documentation files (the
|
a copy of this software and associated documentation files (the
|
||||||
@@ -19,4 +19,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|||||||
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
||||||
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
||||||
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
/*
|
'use strict';
|
||||||
Documentation coming soon.
|
|
||||||
*/
|
|
||||||
|
|
||||||
var XML = require('xml'),
|
var XML = require('xml'),
|
||||||
mime = require('mime'),
|
mime = require('mime'),
|
||||||
|
|||||||
26
package.json
26
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "rss",
|
"name": "rss",
|
||||||
"version": "0.3.2",
|
"version": "1.0.0",
|
||||||
"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>",
|
||||||
@@ -23,26 +23,18 @@
|
|||||||
"url": "http://github.com/dylang/node-rss/issues"
|
"url": "http://github.com/dylang/node-rss/issues"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"xml": "~0.0.12",
|
"mime": "^1.2.11",
|
||||||
"mime": "~1.2.11"
|
"xml": "^1.0.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"chai": "~1.8.1",
|
"chai": "^1.9.1",
|
||||||
"mocha": "~1.17.0",
|
"mocha": "^1.21.4",
|
||||||
"xml2js": "~0.4.1",
|
"q": "^1.0.0",
|
||||||
"q": "~1.0.0"
|
"xml2js": "^0.4.1"
|
||||||
},
|
},
|
||||||
"main": "lib/rss.js",
|
"main": "lib/rss.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "./node_modules/.bin/mocha --reporter spec"
|
"test": "mocha --reporter spec"
|
||||||
},
|
},
|
||||||
"engines": {
|
"licenses": "MIT"
|
||||||
"node": ">=0.4.0"
|
|
||||||
},
|
|
||||||
"licenses": [
|
|
||||||
{
|
|
||||||
"type": "MIT",
|
|
||||||
"url": "http://github.com/dylang/node-rss/raw/master/LICENSE"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user