update packages

This commit is contained in:
Henry Zhu 2015-10-07 20:05:11 -04:00
parent 463cda9a10
commit afd72ba541
2 changed files with 7 additions and 7 deletions

View File

@ -8,10 +8,10 @@
"url": "https://github.com/babel/babel-eslint.git" "url": "https://github.com/babel/babel-eslint.git"
}, },
"dependencies": { "dependencies": {
"babel-core": "^5.8.23", "babel-core": "^5.8.25",
"lodash.assign": "^3.0.0", "lodash.assign": "^3.2.0",
"lodash.pick": "^3.1.0", "lodash.pick": "^3.1.0",
"acorn-to-esprima": "^1.0.2" "acorn-to-esprima": "^1.0.4"
}, },
"scripts": { "scripts": {
"bootstrap": "git submodule update --init && cd eslint && npm install", "bootstrap": "git submodule update --init && cd eslint && npm install",
@ -26,8 +26,8 @@
}, },
"homepage": "https://github.com/babel/babel-eslint", "homepage": "https://github.com/babel/babel-eslint",
"devDependencies": { "devDependencies": {
"eslint": "^1.3.1", "eslint": "^1.6.0",
"espree": "^2.2.4", "espree": "^2.2.5",
"mocha": "^2.2.5" "mocha": "^2.3.3"
} }
} }

View File

@ -47,7 +47,7 @@ describe("verify", function () {
verifyAndAssertMessages( verifyAndAssertMessages(
"{ , res }", "{ , res }",
{}, {},
[ "1:3 Unexpected token" ] [ "1:3 Parsing error: Unexpected token" ]
); );
}); });