diff --git a/index.js b/index.js index 136fc15d..f4c43129 100644 --- a/index.js +++ b/index.js @@ -2,7 +2,7 @@ const path = require('path'); const eslint = require('eslint'); const globby = require('globby'); -const isEqual = require('lodash.isequal'); +const {isEqual} = require('lodash'); const multimatch = require('multimatch'); const arrify = require('arrify'); const optionsManager = require('./lib/options-manager'); diff --git a/lib/options-manager.js b/lib/options-manager.js index 5804a409..2aa067b8 100644 --- a/lib/options-manager.js +++ b/lib/options-manager.js @@ -2,7 +2,7 @@ const os = require('os'); const path = require('path'); const arrify = require('arrify'); -const mergeWith = require('lodash.mergewith'); +const {mergeWith} = require('lodash'); const multimatch = require('multimatch'); const pathExists = require('path-exists'); const pkgConf = require('pkg-conf'); diff --git a/package.json b/package.json index d193496f..ae8ae1f6 100644 --- a/package.json +++ b/package.json @@ -66,8 +66,7 @@ "get-stdin": "^7.0.0", "globby": "^9.0.0", "has-flag": "^4.0.0", - "lodash.isequal": "^4.5.0", - "lodash.mergewith": "^4.6.2", + "lodash": "^4.17.15", "meow": "^5.0.0", "multimatch": "^4.0.0", "open-editor": "^2.0.1",