From 70114fe48a1fd1a2043ce5a3c8306ec2725e8900 Mon Sep 17 00:00:00 2001 From: Mohsen Azimi Date: Wed, 25 Mar 2015 12:50:23 -0700 Subject: [PATCH] Use node_modules/.bin for binary executions in scripts of package.json --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 4697775d..1cf0b560 100644 --- a/package.json +++ b/package.json @@ -6,10 +6,10 @@ "homepage": "http://swagger.io", "license": "Apache 2.0", "scripts": { - "build": "./node_modules/gulp/bin/gulp.js;", - "serve": "./node_modules/gulp/bin/gulp.js serve;", + "build": "gulp.js;", + "serve": "gulp.js serve;", "pretest": "jshint .", - "test": "./node_modules/gulp/bin/gulp.js; ./node_modules/mocha/bin/mocha", + "test": "gulp; mocha", "postinstall": "cd node_modules/swagger-client/; npm install; gulp" }, "repository": {