-
-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from jpmonette/version-1.1.0
Version 1.1.0
- Loading branch information
Showing
3 changed files
with
18 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"presets": ["latest"] | ||
"presets": ["env"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
{ | ||
"name": "feed", | ||
"version": "1.0.2", | ||
"version": "1.1.0", | ||
"description": "Feed is a RSS and Atom feed generator for Node.js, making content syndication simple and intuitive!", | ||
"homepage": "http://projets.jpmonette.net/en/feed", | ||
"author": "Jean-Philippe Monette <[email protected]>", | ||
"contributors": [ | ||
{ | ||
"name": "Ben McCormick", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Pierre Galvez", | ||
"email": "[email protected]" | ||
|
@@ -16,7 +20,7 @@ | |
"build": "rm -rf lib/ && mkdir lib && babel -d lib/ src/ --ignore **/*.spec.js -s", | ||
"prepublish": "npm run build", | ||
"test": "export NODE_ENV=test && jest", | ||
"test-travis": "export NODE_ENV=test && jest" | ||
"test-travis": "export NODE_ENV=test && jest --coverage" | ||
}, | ||
"jest": { | ||
"verbose": true, | ||
|
@@ -38,13 +42,14 @@ | |
"blog" | ||
], | ||
"dependencies": { | ||
"xml": ">= 0.0.5" | ||
"xml": "^1.0.1" | ||
}, | ||
"devDependencies": { | ||
"babel-cli": "^6.24.0", | ||
"babel-preset-latest": "^6.24.0", | ||
"coveralls": "^2.13.0", | ||
"jest": "^19.0.2" | ||
"babel-cli": "^6.24.1", | ||
"babel-preset-env": "^1.5.1", | ||
"codeclimate-test-reporter": "^0.5.0", | ||
"coveralls": "^2.13.1", | ||
"jest": "^20.0.4" | ||
}, | ||
"engines": { | ||
"node": ">=0.4.0" | ||
|