Skip to content

Commit 85fcb25

Browse files
committedNov 3, 2017
Update deps. Closes #117
1 parent a878e86 commit 85fcb25

File tree

5 files changed

+160
-308
lines changed

5 files changed

+160
-308
lines changed
 

‎.gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ dump.rdb
55
node_modules
66
results.tap
77
results.xml
8-
npm-shrinkwrap.json
98
config.json
109
.DS_Store
1110
*/.DS_Store
@@ -14,5 +13,6 @@ config.json
1413
*/._*
1514
*/*/._*
1615
coverage.*
17-
lib-cov
18-
complexity.md
16+
.settings
17+
package-lock.json
18+

‎.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: node_js
22

33
node_js:
44
- "8"
5+
- "9"
56
- "node"
67

78
sudo: false

‎lib/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// Load modules
44

55
const NodeUtil = require('util');
6+
67
const Hoek = require('hoek');
78

89

‎package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
"assertion"
1111
],
1212
"engines": {
13-
"node": ">=8.0.0"
13+
"node": ">=8.9.0"
1414
},
1515
"dependencies": {
16-
"hoek": "4.x.x"
16+
"hoek": "5.x.x"
1717
},
1818
"devDependencies": {
19-
"lab": "14.x.x",
19+
"lab": "15.x.x",
2020
"markdown-toc": "1.1.x"
2121
},
2222
"scripts": {

‎test/index.js

+152-302
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.