Skip to content

Commit

Permalink
Merge pull request #58 from jpmonette/version-1.1.0
Browse files Browse the repository at this point in the history
Version 1.1.0
  • Loading branch information
jpmonette committed Jun 3, 2017
2 parents df2a295 + d62a1d8 commit 3f46291
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .babelrc
@@ -1,3 +1,3 @@
{
"presets": ["latest"]
"presets": ["env"]
}
8 changes: 5 additions & 3 deletions .travis.yml
Expand Up @@ -6,6 +6,8 @@ cache:
- node_modules
before_install:
- export TZ=Europe/London
script: "npm run-script test-travis"
# Send coverage data to Coveralls
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
script:
- "npm run-script test-travis"
after_script:
- "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
- "codeclimate-test-reporter < ./coverage/lcov.info"
19 changes: 12 additions & 7 deletions package.json
@@ -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 <contact@jpmonette.net>",
"contributors": [
{
"name": "Ben McCormick",
"email": "ben.mccormick@windsorcircle.com"
},
{
"name": "Pierre Galvez",
"email": "contact@pierre-galvez.fr"
Expand All @@ -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,
Expand All @@ -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"
Expand Down

0 comments on commit 3f46291

Please sign in to comment.