From 7cff1d65f7e5b27efba8e6ae680f16241b8baa92 Mon Sep 17 00:00:00 2001 From: Alexander Zobnin Date: Tue, 31 Oct 2017 11:26:21 +0300 Subject: [PATCH] simplify npm scripts --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index c70f58f..143129c 100644 --- a/package.json +++ b/package.json @@ -5,11 +5,11 @@ "description": "Zabbix plugin for Grafana", "scripts": { "test": "jest", - "build": "./node_modules/.bin/grunt && jest", - "watch": "./node_modules/.bin/grunt watch", - "codecov": "./node_modules/.bin/grunt && jest --coverage && codecov", - "ci-test": "./node_modules/.bin/grunt && jest --coverage && codecov", - "benchmark": "./node_modules/.bin/grunt bench" + "build": "grunt && jest", + "watch": "grunt watch", + "codecov": "grunt && jest --coverage && codecov", + "ci-test": "grunt && jest --coverage && codecov", + "benchmark": "grunt bench" }, "repository": { "type": "git",