Skip to content

Commit

Permalink
Move jest-cli to peerDependencies (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmurzy authored and alansouzati committed Jan 4, 2017
1 parent f1a67e0 commit bf18df7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gulp plugin for the Jest test library
## Installation

```bash
$ npm install gulp-jest
$ npm install gulp-jest jest-cli
```

## Usage
Expand Down
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,17 +29,20 @@
},
"homepage": "https://github.com/alansouzati/gulp-jest",
"dependencies": {
"jest-cli": "^17.0.0",
"gulp-util": "^3.0.0",
"through2": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-jest": "^17.0.0",
"babel-jest": ">=17.0.0",
"babel-plugin-transform-object-rest-spread": "^6.3.13",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"gulp": "^3.8.7"
"gulp": "^3.8.7",
"jest-cli": ">=17.0.0"
},
"peerDependencies": {
"jest-cli": ">=17.0.0"
},
"keywords": [
"gulpplugin",
Expand Down

0 comments on commit bf18df7

Please sign in to comment.