Closes #29. Improved the package.json
Including: - Keywords - Contributors - Bugs URL
This commit is contained in:
parent
54e61a816f
commit
66933d9a69
|
@ -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
|
||||
|
||||
|
|
44
package.json
44
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"
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue