Explicitly use nodejs to run tests

This commit is contained in:
murgatroid99 2015-02-19 16:33:21 -08:00
parent 7d499f8a59
commit c4b33e1f83
1 changed files with 2 additions and 2 deletions

View File

@ -3,8 +3,8 @@
"version": "0.2.0",
"description": "gRPC Library for Node",
"scripts": {
"lint": "jshint src test examples interop index.js",
"test": "./node_modules/mocha/bin/mocha && npm run-script lint"
"lint": "nodejs ./node_modules/jshint/bin/jshint src test examples interop index.js",
"test": "nodejs ./node_modules/mocha/bin/mocha && npm run-script lint"
},
"dependencies": {
"bindings": "^1.2.1",