package: Add `jshint` to `devDependencies`

Remove dependency on a globally installed jshint instance
and fix `npm test` on machines without a global jshint.
This commit is contained in:
Miroslav Bajtoš 2014-10-08 12:08:13 +02:00
parent e974033395
commit ed0880d00f
1 changed files with 4 additions and 3 deletions

View File

@ -31,11 +31,12 @@
"underscore": "^1.6.0" "underscore": "^1.6.0"
}, },
"devDependencies": { "devDependencies": {
"browserify": "^4.1.8",
"fs-extra": "^0.10.0",
"jshint": "^2.5.6",
"loopback": "^1.5.0", "loopback": "^1.5.0",
"mocha": "^1.19.0", "mocha": "^1.19.0",
"must": "^0.12.0", "must": "^0.12.0",
"supertest": "^0.13.0", "supertest": "^0.13.0"
"fs-extra": "^0.10.0",
"browserify": "^4.1.8"
} }
} }