# CONTRIBUTING

 - Fork it!
 - Clone your fork
 - Install development dependencies
   - ```cd package.js;```
   - ```npm install;```
 - Create your feature branch: `git checkout -b my-new-feature;`
 - Add a test for each new code
 - Add add your new code
 - Run the tests: `npm test;`
 - Check the coverage ```npm run cover-html;``` will produce a file called ```coverage.html;```
 - Commit your changes: `git commit -am 'Add some feature'`
 - Push to the branch: `git push origin my-new-feature`
 - Submit a pull request :D