From 26ca78e0594e6d68b5e25ddab927e39901993251 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@keylocation.sg> Date: Fri, 13 Jan 2017 12:39:54 +0100 Subject: [PATCH] Fix package.json --- package.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2929428b77..d2c9fd41e2 100644 --- a/package.json +++ b/package.json @@ -5,10 +5,13 @@ "bin": "./app/index.js", "main": "app/index.js", "scripts": { + "eslint": "eslint app", + "eslint-fix": "eslint app --fix", + "istanbul": "istanbul cover _mocha test", "lint": "eslint app", - "lint-fix": "eslint app --fix", + "mocha": "mocha test", "start": "node app", - "test": "istanbul cover _mocha test" + "test": "npm run lint && npm run istanbul" }, "repository": { "type": "git", -- GitLab