Update lodash and replace pick by pickBy (babel/babel-eslint#301)

This commit is contained in:
Daniel Tschinder 2016-04-25 01:14:39 +02:00
parent cf456bfe4a
commit cbc0475634
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
var babylonToEspree = require("./babylon-to-espree");
var assign = require("lodash.assign");
var pick = require("lodash.pick");
var pick = require("lodash.pickby");
var Module = require("module");
var path = require("path");
var parse = require("babylon").parse;

View File

@ -15,8 +15,8 @@
"babel-traverse": "^6.0.20",
"babel-types": "^6.0.19",
"babylon": "^6.0.18",
"lodash.assign": "^3.2.0",
"lodash.pick": "^3.1.0"
"lodash.assign": "^4.0.0",
"lodash.pickby": "^4.0.0"
},
"scripts": {
"bootstrap": "git submodule update --init && cd eslint && npm install",