From 0b3ff0b87829cac3c2a0f863d190ac1500ad29dc Mon Sep 17 00:00:00 2001 From: Brian Drum Date: Wed, 12 Oct 2016 09:10:13 -0400 Subject: [PATCH] Standardize package.json --- package.json | 39 +++++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/package.json b/package.json index dadaa9f..b839932 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,27 @@ { "name": "suitcss-components-button", - "description": "Structural button styles for SUIT CSS", "version": "5.0.0", - "style": "index.css", + "description": "Structural button styles for SUIT CSS", + "keywords": [ + "browser", + "css-components", + "button", + "suitcss", + "style" + ], + "homepage": "https://github.com/suitcss/components-button#readme", + "bugs": "https://github.com/suitcss/components-button/labels/bug", + "license": "MIT", + "author": "Nicolas Gallagher", "files": [ "index.css", "lib" ], - "devDependencies": { - "stylelint-config-suitcss": "^4.0.0", - "suitcss-components-test": "*", - "suitcss-preprocessor": "^1.0.1" + "style": "index.css", + "repository": { + "type": "git", + "url": "git://github.com/suitcss/components-button.git" }, - "license": "MIT", "scripts": { "build": "npm run setup && npm run preprocess", "build-test": "npm run setup && npm run preprocess-test", @@ -23,15 +32,9 @@ "watch": "npm run preprocess-test -- -w -v", "test": "npm run lint" }, - "repository": { - "type": "git", - "url": "git://github.com/suitcss/components-button.git" - }, - "keywords": [ - "browser", - "css-components", - "button", - "suitcss", - "style" - ] + "devDependencies": { + "stylelint-config-suitcss": "^4.0.0", + "suitcss-components-test": "*", + "suitcss-preprocessor": "^1.0.1" + } }