diff --git a/LICENSE b/LICENSE index 6e5daef..c232535 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ The MIT License (MIT) -Copyright (c) 2016 Anthony Maki https://anthony.codes +Copyright (c) 2017 Justin Schuhmann Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/README.md b/README.md index 81a84c2..b4fe16d 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,21 @@ -# grunt-standard [![JavaScript Standard Style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/) [![GitHub release](https://img.shields.io/github/release/4cm4k1/grunt-standard.svg)](https://github.com/4cm4k1/grunt-standard/releases) [![npm (scoped)](https://img.shields.io/npm/v/@4cm4k1/grunt-standard.svg)](https://www.npmjs.com/package/@4cm4k1/grunt-standard) [![license](https://img.shields.io/github/license/4cm4k1/grunt-standard.svg)](https://github.com/4cm4k1/grunt-standard/blob/master/LICENSE) [![Twitter Follow](https://img.shields.io/twitter/follow/4cm4k1.svg?style=social&label=Follow)](https://twitter.com/4cm4k1) [![GitHub followers](https://img.shields.io/github/followers/4cm4k1.svg?style=social&label=Follow)](https://github.com/4cm4k1) +# grunt-standard [![JavaScript Standard Style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com/) [![GitHub release](https://img.shields.io/github/release/EasyAsABC123/grunt-standard.svg)](https://github.com/EasyAsABC123/grunt-standard/releases) [![npm (scoped)](https://img.shields.io/npm/v/grunt-standard.svg)](https://www.npmjs.com/package/grunt-standard) [![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/EasyAsABC123/grunt-standard/blob/master/LICENSE) [![GitHub issues](https://img.shields.io/github/issues/EasyAsABC123/grunt-standard.svg)](https://github.com/EasyAsABC123/grunt-standard/issues) [![GitHub followers](https://img.shields.io/github/followers/EasyAsABC123.svg?style=social&label=Follow)](https://github.com/EasyAsABC123) > Grunt Plugin for [JavaScript Standard Style](https://github.com/feross/standard) Linting and Formatting -> Based on [@pdehaan/grunt-standard](https://github.com/pdehaan/grunt-standard) -> And on [@4cm4k1/grunt-standard](https://github.com/4cm4k1/grunt-standard) - > Dependencies up-to-date! ## Install -The following shell commands will install `@EasyAsABC123/grunt-standard` to your project's `package.json` in `devDependencies`. +The following shell commands will install `grunt-standard` to your project's `package.json` in `devDependencies`. ### npm ```shell -npm install @EasyAsABC123/grunt-standard --save-dev +npm install grunt-standard --save-dev ``` ### Yarn ```shell -yarn add @EasyAsABC123/grunt-standard --dev +yarn add grunt-standard --dev ``` ### Assumptions @@ -28,7 +25,7 @@ yarn add @EasyAsABC123/grunt-standard --dev - You are running the latest version of `node`. ```javascript -grunt.loadNpmTasks('@EasyAsABC123/grunt-standard') +grunt.loadNpmTasks('grunt-standard') ``` ## Configure @@ -56,7 +53,7 @@ grunt.initConfig({ #### options.ignore - **Type:** `Array` -- **Default:** `[]]` +- **Default:** `[]` - **Action:** Lint source files using [JavaScript Standard Style](https://github.com/feross/standard#standardlintfilesfiles-opts-callback). #### options.cwd @@ -112,4 +109,4 @@ grunt.initConfig({ }) ``` -## [Contribute](https://github.com/4cm4k1/grunt-standard/blob/master/CONTRIBUTE.md) +## [Contribute](CONTRIBUTE.md) diff --git a/package.json b/package.json index 92521ac..903b4d9 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@EasyAsABC123/grunt-standard", + "name": "grunt-standard", "version": "3.0.2", "description": "Grunt Plugin for JavaScript Standard Style Linting and Formatting", "main": "Gruntfile.js", @@ -7,20 +7,41 @@ "url": "git@github.com:EasyAsABC123/grunt-standard.git", "type": "git" }, - "author": "Justin Schuhmann ", + "author": { + "name": "Justin Schuhmann", + "email": "jmschu02@gmail.com" + }, + "bugs": { + "url": "https://github.com/EasyAsABC123/grunt-standard/issues" + }, "license": "MIT", + "main": "Gruntfile.js", + "repository": { + "type": "git", + "url": "git://github.com/EasyAsABC123/grunt-standard.git" + }, "dependencies": { "chalk": "^1.1.3", "promise": "^7.1.1", - "standard": "^8.5.0", + "standard": "^9.0.0", "text-table": "^0.2.0" }, "devDependencies": { "grunt": "^1.0.1" }, + "engines": { + "node": ">=0.10.0" + }, + "homepage": "https://github.com/EasyAsABC123/grunt-standard", "standard": { "globals": [ "grunt" ] + }, + "scripts": { + "outdated": "npm outdated --depth 0", + "postshrinkwrap": "grunt validate-shrinkwrap --force", + "shrinkwrap": "npm-shrinkwrap --dev", + "test": "standard" } }