From 66933d9a6956717fa61289c250a9b030903aa5fc Mon Sep 17 00:00:00 2001 From: Glavin Wiechert Date: Sat, 14 Jun 2014 20:13:32 -0300 Subject: [PATCH] Closes #29. Improved the package.json Including: - Keywords - Contributors - Bugs URL --- README.md | 5 +++-- package.json | 44 +++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 46 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0de28aa..5fe8ff5 100644 --- a/README.md +++ b/README.md @@ -106,8 +106,9 @@ See [examples/nested-jsbeautifyrc/.jsbeautifyrc](https://github.com/donaldpipowi [See all contributors on GitHub](https://github.com/donaldpipowitch/atom-beautify/graphs/contributors). -Please update the [CHANGELOG.md](https://github.com/donaldpipowitch/atom-beautify/blob/master/CHANGELOG.md) -file and submit a [Pull Request on GitHub](https://help.github.com/articles/using-pull-requests). +Please update the [CHANGELOG.md](https://github.com/donaldpipowitch/atom-beautify/blob/master/CHANGELOG.md), +add yourself as a contributor to the [package.json](https://github.com/donaldpipowitch/atom-beautify/blob/master/package.json), +and submit a [Pull Request on GitHub](https://help.github.com/articles/using-pull-requests). ## License diff --git a/package.json b/package.json index fd1745a..2a18c6d 100644 --- a/package.json +++ b/package.json @@ -4,13 +4,55 @@ "version": "0.3.1", "private": true, "description": "Beautify HTML, CSS and Javascript in Atom", - "repository": "https://github.com/donaldpipowitch/atom-beautify", + "repository": { + "type": "git", + "url": "https://github.com/donaldpipowitch/atom-beautify" + }, + "bugs": { + "url": "https://github.com/donaldpipowitch/atom-beautify/issues" + }, "license": "MIT", "author": { "name": "Donald Pipowitch", "email": "pipo@senaeh.de", "url": "https://github.com/donaldpipowitch" }, + "contributors": [{ + "name": "László Károlyi", + "url": "https://github.com/karolyi" + }, { + "name": "Glavin Wiechert", + "email": "glavin.wiechert@gmail.com", + "url": "https://github.com/Glavin001" + }, { + "name": "Marco Tanzi", + "url": "https://github.com/mtanzi" + }, { + "name": "gvn lazar suntop", + "url": "https://github.com/gvn" + }, { + "name": "Vadim K.", + "url": "https://github.com/vadirn" + }], + "keywords": [ + "atom", + "beautify", + "beautifier", + "js-beautify", + "format", + "pretty", + "html", + "handlebars", + "xml", + "css", + "javascript", + "json", + "css", + "sass", + "scss", + "less", + "sql" + ], "engines": { "atom": ">0.50.0" },