Package Exports
- ember-humans-txt
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ember-humans-txt) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ember-humans-txt 
This Ember addon helps you generate and mantain a humans.txt file for your website.
Example
/config/humans.js
module.exports = function humans() {
return {
team: 'Santiago Ferreira (@san650 at Twitter and Github)',
thanks: [
'EmberJS team for the great framework',
'ember-cli team for such a great tool'
],
site: [
'Standards: HTML5, CSS3, ES2015',
'Components: EmberJS, node',
'Software: VIM, ember-cli'
],
note: 'Give san650/ember-humans-txt a star on github!'
};
}generates...
/* TEAM */
Santiago Ferreira (@san650 at Twitter and Github)
/* THANKS */
EmberJS team for the great framework
ember-cli team for such a great tool
/* SITE */
Standards: HTML5, CSS3, ES2015
Components: EmberJS, node
Software: VIM, ember-cli
/* NOTE */
Give san650/ember-humans-txt a star on github!and also links the humans.txt file in your index.html.
<link rel="author" href="humans.txt">See humans.txt standard for more information.
API
teamis a string or array of team members.thanksis a string or array of people you'd like to thank.siteis a string or array of technical specifications about your site.noteis a string or array of things you'd like to mention.
Installation
$ ember install ember-humans-txtThis generates a config/humans.js configuration file.
Development
$ git clone https://github.com/san650/ember-humans-txt.git
$ cd $_
$ yarn # (or npm install)
$ bower installRunning tests
$ npm testProject's health
Thanks
Thanks to humans-generator project for the ideas.
License
ember-humans-txt is licensed under the MIT license.
See LICENSE for the full license text.