From e4fe5019f27baf83c630b1bdc6e7f88934ef49d8 Mon Sep 17 00:00:00 2001 From: Weston Platter Date: Mon, 24 Feb 2014 22:58:35 -0700 Subject: [PATCH] add mocha and chai for testing setup --- package.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index d00b3e434a..e1140c83ab 100755 --- a/package.json +++ b/package.json @@ -2,7 +2,8 @@ "name": "hackathon-starter", "version": "0.0.0", "scripts": { - "start": "node app.js" + "start": "node app.js", + "test": "mocha tests/**/*.js" }, "dependencies": { "async": "~0.2.10", @@ -38,5 +39,9 @@ "crypto": "0.0.3", "csso": "~1.3.11", "uglify-js": "~2.4.12" + }, + "devDependencies": { + "chai": "~1.9.0", + "mocha": "~1.17.1" } }