From c5098a89112fd39fc7f640a7437ba53d5ca839a4 Mon Sep 17 00:00:00 2001 From: gruntjs-updater Date: Sat, 20 Feb 2016 17:18:27 -0500 Subject: [PATCH] Update peerDependencies to support Grunt 1.0 Hello, This is an automated issue request to update the `peerDependencies` for your Grunt plugin. We ask you to merge this and **publish a new release on npm** to get your plugin working in Grunt 1.0! Read more here: http://gruntjs.com/blog/2016-02-11-grunt-1.0.0-rc1-released#peer-dependencies Also on Twitter: https://twitter.com/gruntjs/status/700819604155707392 If you have any questions or you no longer have time to maintain this plugin, then please let us know in this thread. Thanks for creating and working on this plugin! (P.S. Close this PR if it is a mistake, sorry) --- package.json | 94 +++++++++++++++++++++++++++++----------------------- 1 file changed, 52 insertions(+), 42 deletions(-) diff --git a/package.json b/package.json index e3c986b..4e19ca0 100644 --- a/package.json +++ b/package.json @@ -1,44 +1,54 @@ { - "name" : "grunt-fail", - "version" : "0.3.2", - "description" : - "Stop grunt execution with an error message and exit code of choice.", - "keywords" : - ["test", "testing", "task", "gruntplugin", "grunt", "deployment", "build", "fail", "error", "return", "exit", "deploy"], - "author" : { - "name" : "Adam Stallard", - "email" : "adam@goalzen.org", - "url" : "goalzen.org" - }, - "directories" : { - "test" : "test" - }, - "dependencies" : { - }, - "peerDependencies" : { - "grunt" : "~0.4" - }, - "devDependencies" : { - "grunt-vows-runner" : "*", - "grunt-contrib-jshint" : "*", - "chai" : "*" - }, - "license" : { - "type" : "MIT", - "url" : "https://github.com/goalzen/grunt-fail/blob/master/LICENSE-MIT" - }, - "engines" : { - "node" : ">=0.8.19" - }, - "scripts" : { - "test" : "grunt" - }, - "repository" : { - "type" : "git", - "url" : "https://github.com/goalzen/grunt-fail.git" - }, - "bugs" : { - "url" : "https://github.com/goalzen/grunt-fail/issues" -}, - "homepage" : "https://github.com/goalzen/grunt-fail.git" + "name": "grunt-fail", + "version": "0.3.2", + "description": "Stop grunt execution with an error message and exit code of choice.", + "keywords": [ + "test", + "testing", + "task", + "gruntplugin", + "grunt", + "deployment", + "build", + "fail", + "error", + "return", + "exit", + "deploy" + ], + "author": { + "name": "Adam Stallard", + "email": "adam@goalzen.org", + "url": "goalzen.org" + }, + "directories": { + "test": "test" + }, + "dependencies": {}, + "peerDependencies": { + "grunt": ">=0.4.0" + }, + "devDependencies": { + "grunt-vows-runner": "*", + "grunt-contrib-jshint": "*", + "chai": "*" + }, + "license": { + "type": "MIT", + "url": "https://github.com/goalzen/grunt-fail/blob/master/LICENSE-MIT" + }, + "engines": { + "node": ">=0.8.19" + }, + "scripts": { + "test": "grunt" + }, + "repository": { + "type": "git", + "url": "https://github.com/goalzen/grunt-fail.git" + }, + "bugs": { + "url": "https://github.com/goalzen/grunt-fail/issues" + }, + "homepage": "https://github.com/goalzen/grunt-fail.git" }