chore: use lodash main dependency

This commit is contained in:
Vasco Santos 2018-07-03 16:21:32 +02:00 committed by GitHub
parent 73d4530c5b
commit f95fef4ad2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@
"async": "^2.6.1",
"interface-datastore": "~0.4.2",
"libp2p-crypto": "~0.13.0",
"lodash.merge": "^4.6.1",
"lodash": "^4.6.1",
"pull-stream": "^3.6.8",
"sanitize-filename": "^1.6.1"
},

View File

@ -2,7 +2,7 @@
'use strict'
const sanitize = require('sanitize-filename')
const deepmerge = require('lodash.merge')
const deepmerge = require('lodash/merge')
const crypto = require('libp2p-crypto')
const DS = require('interface-datastore')
const pull = require('pull-stream')