Removed explicit references to node_modules/.bin

NPM sets up its own virtualenv like environment. There's no real
need to refer to the executable explicitly.

Change-Id: I5af4967903b2311b2892826ddb8f44300ec9ed9a
This commit is contained in:
Michael Krotscheck 2016-04-12 05:14:55 -07:00
parent 33f755ed2c
commit f87bf1dce4
No known key found for this signature in database
GPG Key ID: 20E618D878DE38AB

View File

@ -4,15 +4,15 @@
"description": "An all-javascript webclient for the Storyboard API",
"main": "index.html",
"scripts": {
"clean": "./node_modules/.bin/grunt clean",
"clean": "grunt clean",
"lint": "eslint ./",
"pretest-unit": "grunt build",
"test-unit": "karma start ./karma-unit.conf.js",
"test-functional": "./node_modules/.bin/grunt test:functional",
"test-integration": "./node_modules/.bin/grunt test:integration",
"draft": "./node_modules/.bin/grunt build:draft",
"build": "./node_modules/.bin/grunt build",
"serve": "./node_modules/.bin/grunt serve",
"test-functional": "grunt test:functional",
"test-integration": "grunt test:integration",
"draft": "grunt build:draft",
"build": "grunt build",
"serve": "grunt serve",
"postinstall": "bower install"
},
"repository": "https://git.openstack.org/openstack-infra/storyboard-webclient",