Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
felipernb committed Oct 20, 2015
1 parent 7bc7e37 commit 4435a15
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
sudo: false
node_js:
- "0.12"
- "4.1"
script: "make"
after_success: "make coveralls"
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
],
"dependencies": {},
"devDependencies": {
"coveralls": "^2.11.3",
"eslint": "^1.0.0",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"pre-commit": "^1.1.1"
"coveralls": "^2.11.4",
"eslint": "^1.7.2",
"istanbul": "^0.4.0",
"mocha": "^2.3.3",
"pre-commit": "^1.1.2"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/algorithms/math/collatz_conjecture.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function generateCollatzConjecture(number) {
do {
number = calculateCollatzConjecture(number);
collatzConjecture.push(number);
} while (number !== 1)
} while (number !== 1);

return collatzConjecture;
}
Expand Down

0 comments on commit 4435a15

Please sign in to comment.