From fb4caf4dc178d59ec85d13e8c9943e2e55808fd0 Mon Sep 17 00:00:00 2001 From: Joe Fleming Date: Mon, 18 Apr 2016 16:34:30 -0700 Subject: [PATCH] add mocha-only script --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index b12d921..db1fc80 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,8 @@ "description": "", "main": "lib/index.js", "scripts": { - "test": "npm run build && mocha --compilers js:babel-core/register test/src/**", + "test": "npm run build && npm run mocha", + "mocha": "mocha --compilers js:babel-core/register test/src/**", "build": "babel src --out-dir lib", "prepublish": "npm run test" },