From a2925af0440740d62fa0a662ea96b3086a5125d5 Mon Sep 17 00:00:00 2001 From: David da Silva Date: Mon, 15 Dec 2014 13:51:58 +0100 Subject: [PATCH] changed mocha reporter to spec and bumped mocha version, solves #403 --- package.json | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 1542449..06a9b97 100644 --- a/package.json +++ b/package.json @@ -7,15 +7,20 @@ "type": "git", "url": "https://github.com/janl/mustache.js.git" }, - "keywords": ["mustache", "template", "templates", "ejs"], + "keywords": [ + "mustache", + "template", + "templates", + "ejs" + ], "main": "./mustache.js", - "devDependencies": { - "mocha": "1.5.0" - }, "volo": { "url": "https://raw.github.com/janl/mustache.js/{version}/mustache.js" }, "scripts": { - "test": "mocha test" + "test": "mocha --reporter spec test" + }, + "devDependencies": { + "mocha": "2.0.1" } }