From 1662285a4778138db8d1c6f80f30a350e4501c90 Mon Sep 17 00:00:00 2001 From: Seth McLaughlin Date: Tue, 17 Mar 2015 16:59:33 -0700 Subject: [PATCH] issue #356: update dependencies to work with node v0.12 Also fixed `npm test` to run mocha from local `./node_modules` --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index fc70442..3f3f26e 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "commander": "1.1.1", "consolidate": "0.3.0", "deferred": "0.6.5", - "dnode": "1.0.0", + "dnode": "1.2.0", "dustjs-linkedin": "0.6.0", "expect.js": "~0.2.0", "express": "3.6.0", @@ -54,7 +54,7 @@ "grunt": "0.4.5", "grunt-release": "0.7.0", "load-grunt-tasks": "0.6.0", - "mocha": "1.2.0", + "mocha": "2.2.1", "sinon": "1.3.4" }, "os": [ @@ -62,7 +62,7 @@ ], "preferGlobal": true, "scripts": { - "test": "mocha test/unit/node/test_suite.js && ./bin/venus run -t test/unit/client -n", - "int-test": "mocha test/integration" + "test": "./node_modules/.bin/mocha test/unit/node/test_suite.js && ./bin/venus run -t test/unit/client -n", + "int-test": "./node_modules/.bin/mocha test/integration" } }