diff --git a/.travis.yml b/.travis.yml index 939cb51..05d299e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,4 @@ language: node_js node_js: - - "0.8" - "0.10" - - "0.11" \ No newline at end of file + - "0.11" diff --git a/LICENSE b/LICENSE index 2118699..5daae2a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ (The MIT License) -Copyright (c) 2011 Dylan Greene +Copyright (c) 2011-2014 Dylan Greene Permission is hereby granted, free of charge, to any person obtaining 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 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/lib/rss.js b/lib/rss.js index 4566706..e0c1e53 100755 --- a/lib/rss.js +++ b/lib/rss.js @@ -1,6 +1,4 @@ -/* - Documentation coming soon. -*/ +'use strict'; var XML = require('xml'), mime = require('mime'), diff --git a/package.json b/package.json index c25914b..6bed6da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "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.", "homepage": "http://github.com/dylang/node-rss", "author": "Dylan Greene ", @@ -23,26 +23,18 @@ "url": "http://github.com/dylang/node-rss/issues" }, "dependencies": { - "xml": "~0.0.12", - "mime": "~1.2.11" + "mime": "^1.2.11", + "xml": "^1.0.0" }, "devDependencies": { - "chai": "~1.8.1", - "mocha": "~1.17.0", - "xml2js": "~0.4.1", - "q": "~1.0.0" + "chai": "^1.9.1", + "mocha": "^1.21.4", + "q": "^1.0.0", + "xml2js": "^0.4.1" }, "main": "lib/rss.js", "scripts": { - "test": "./node_modules/.bin/mocha --reporter spec" + "test": "mocha --reporter spec" }, - "engines": { - "node": ">=0.4.0" - }, - "licenses": [ - { - "type": "MIT", - "url": "http://github.com/dylang/node-rss/raw/master/LICENSE" - } - ] + "licenses": "MIT" }