grunt-jscs-checker
Advanced tools
Comparing version 0.7.0 to 0.7.1
{ | ||
"name": "grunt-jscs-checker", | ||
"description": "Grunt task for checking JavaScript Code Style with jscs.", | ||
"version": "0.7.0", | ||
"version": "0.7.1", | ||
"author": "Gustavo Henke <gustavo@injoin.com.br>", | ||
"license": "MIT", | ||
"homepage": "https://github.com/gustavohenke/grunt-jscs", | ||
"homepage": "https://github.com/jscs-dev/grunt-jscs", | ||
"contributors": [ | ||
@@ -13,6 +13,6 @@ "Oleg Gaidarenko <markelog@gmail.com>" | ||
"type": "git", | ||
"url": "https://github.com/gustavohenke/grunt-jscs.git" | ||
"url": "https://github.com/jscs-dev/grunt-jscs.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/gustavohenke/grunt-jscs/issues" | ||
"url": "https://github.com/jscs-dev/grunt-jscs/issues" | ||
}, | ||
@@ -31,3 +31,3 @@ "dependencies": { | ||
"load-grunt-tasks": "~0.6.0", | ||
"time-grunt": "~0.4.0" | ||
"time-grunt": "~1.0.0" | ||
}, | ||
@@ -34,0 +34,0 @@ "peerDependencies": { |
# grunt-jscs | ||
> Task for checking JavaScript Code Style with [jscs](https://github.com/mdevils/node-jscs). | ||
> Task for checking JavaScript Code Style with [jscs](https://github.com/jscs-dev/node-jscs). | ||
[![Build Status](https://travis-ci.org/gustavohenke/grunt-jscs.svg?branch=master)](https://travis-ci.org/gustavohenke/grunt-jscs) | ||
[![Dependency Status](https://david-dm.org/gustavohenke/grunt-jscs.svg)](https://david-dm.org/gustavohenke/grunt-jscs) | ||
[![devDependency Status](https://david-dm.org/gustavohenke/grunt-jscs/dev-status.svg)](https://david-dm.org/gustavohenke/grunt-jscs#info=devDependencies) | ||
[![Build Status](https://travis-ci.org/jscs-dev/grunt-jscs.svg?branch=master)](https://travis-ci.org/jscs-dev/grunt-jscs) | ||
[![Dependency Status](https://david-dm.org/jscs-dev/grunt-jscs.svg)](https://david-dm.org/jscs-dev/grunt-jscs) | ||
[![devDependency Status](https://david-dm.org/jscs-dev/grunt-jscs/dev-status.svg)](https://david-dm.org/jscs-dev/grunt-jscs#info=devDependencies) | ||
[![NPM version](https://badge.fury.io/js/grunt-jscs.svg)](http://badge.fury.io/js/grunt-jscs) | ||
@@ -36,3 +36,3 @@ | ||
Defines how to externally load a JSCS configuration via the [JSCS config loader](https://github.com/mdevils/node-jscs#--config). | ||
Defines how to externally load a JSCS configuration via the [JSCS config loader](https://github.com/jscs-dev/node-jscs#--config). | ||
The following is the behavior of this option: | ||
@@ -64,3 +64,3 @@ | ||
Allows you to modify the output. By default it will use a built-in `grunt` reporter. Set the path to your own custom reporter or to one of the built-in JSCS [reporters](https://github.com/mdevils/node-jscs/tree/master/lib/reporters). | ||
Allows you to modify the output. By default it will use a built-in `grunt` reporter. Set the path to your own custom reporter or to one of the built-in JSCS [reporters](https://github.com/jscs-dev/node-jscs/tree/master/lib/reporters). | ||
@@ -97,2 +97,2 @@ #### reporterOutput | ||
## Release History | ||
See the [releases page](https://github.com/gustavohenke/grunt-jscs/releases). | ||
See the [releases page](https://github.com/jscs-dev/grunt-jscs/releases). |
13802