Skip to content

Commit

Permalink
[npm] move jshint to peerDependencies
Browse files Browse the repository at this point in the history
Special versions of jshint are currently supported via the [`linter` config option](https://github.com/spalger/gulp-jshint#options), but with this change jshint is something you would install along with gulp-jshint.
  • Loading branch information
spalger committed Sep 24, 2015
1 parent 599f236 commit 3e7ad84
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -18,7 +18,7 @@

## Install

npm install gulp-jshint --save-dev
npm install jshint gulp-jshint --save-dev

## Usage

Expand Down
4 changes: 3 additions & 1 deletion package.json
Expand Up @@ -14,12 +14,14 @@
],
"dependencies": {
"gulp-util": "^3.0.0",
"jshint": "^2.7.0",
"lodash": "^3.0.1",
"minimatch": "^2.0.1",
"rcloader": "0.1.2",
"through2": "~0.6.1"
},
"peerDependencies": {
"jshint": "2.x"
},
"devDependencies": {
"gulp": "^3.8.10",
"mocha": "^2.1.0",
Expand Down

0 comments on commit 3e7ad84

Please sign in to comment.