Skip to content

Commit

Permalink
node 11 + cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
hueniverse committed Oct 31, 2018
1 parent bd1eba1 commit 725c3aa
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 24 deletions.
23 changes: 7 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
.idea
*.iml
npm-debug.log
dump.rdb
node_modules
results.tap
results.xml
config.json
.DS_Store
*/.DS_Store
*/*/.DS_Store
._*
*/._*
*/*/._*
**/node_modules
**/package-lock.json

coverage.*
.settings
package-lock.json

**/.DS_Store
**/._*

**/*.pem
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ language: node_js

node_js:
- "8"
- "9"
- "10"
- "11"
- "node"

sudo: false
6 changes: 1 addition & 5 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014-2017, Eran Hammer and Project contributors
Copyright (c) 2014-2018, Eran Hammer and Project contributors
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand All @@ -22,7 +22,3 @@ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

* * *

The complete list of contributors can be found at: https://github.com/hueniverse/cryptiles/graphs/contributors
1 change: 1 addition & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ exports.randomDigits = function (size) {
if (buffer[pos] < 250) {
digits.push(buffer[pos] % 10);
}

++pos;
}

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
"utilites"
],
"engines": {
"node": ">=8.9.0"
"node": ">=8.12.0"
},
"dependencies": {
"boom": "7.x.x"
},
"devDependencies": {
"code": "5.x.x",
"lab": "15.x.x"
"lab": "17.x.x"
},
"scripts": {
"test": "lab -a code -t 100 -L",
Expand Down

0 comments on commit 725c3aa

Please sign in to comment.