node-authors
node-authors copied to clipboard
Roadmap of v0.1.0
Thanks @DTrejo for trusting me and allowing me to maintenance this project. Here's a roadmap that I'm planning to do.
Some of these features were originally implemented in xingrz/node-contributors and I'm planning to merge them into node-authors.
- [x] Better handles large amount of git log using streaming api
- [ ] JSON and plain text support
- [ ] Writing generated content to file
- [ ] Updates AUTHORS/README.md/package.json automatically #1
- [ ] Project stuffs (unit tests, Travis-CI integrating, etc...)
- [x] Use v3 Search API instead of deprecated Legacy Search API. #4 #6
This may be finished before Feburary. Since tons of changes may be made on the project, the version number is increased to 0.1.0.
These all sound like great changes. I did not know that package.json could contain contributors, good to know.
Please also put your name in really big words at the bottom of the readme, it is important that you give yourself credit for your work :)
Please excuse any brevity On Dec 23, 2013 10:45 AM, "XiNGRZ" [email protected] wrote:
Thanks @DTrejo https://github.com/DTrejo for trusting me and allowing me to maintenance this project. Here's a roadmap that I'm planning to do.
Some of these features were originally implemented in xingrz/node-contributors https://github.com/xingrz/node-contributorsand I'm planning to merge them into node-authors.
- JSON and plain text support
- Writing generated content to file
- Updates AUTHORS/README.md/package.json automatically
- Project stuffs (unit tests, Travis-CI integrating, etc...)
This may be finished before Feburary. Since tons of changes may be made on the project, the version number is increased to 0.1.0.
— Reply to this email directly or view it on GitHubhttps://github.com/DTrejo/node-authors/issues/5 .
@DTrejo
Take Express.js for example:
{
"name": "express",
"description": "Sinatra inspired web development framework",
"version": "3.4.7",
"author": "TJ Holowaychuk <[email protected]>",
"contributors": [
{
"name": "TJ Holowaychuk",
"email": "[email protected]"
},
{
"name": "Aaron Heckmann",
"email": "[email protected]"
},
{
"name": "Ciaran Jessup",
"email": "[email protected]"
},
{
"name": "Guillermo Rauch",
"email": "[email protected]"
}
],
......
Cool :)
Please excuse any brevity On Dec 23, 2013 9:16 PM, "XiNGRZ" [email protected] wrote:
@DTrejo https://github.com/DTrejo
Take Express.jshttps://github.com/visionmedia/express/blob/master/package.jsonfor example:
{ "name": "express", "description": "Sinatra inspired web development framework", "version": "3.4.7", "author": "TJ Holowaychuk [email protected]", "contributors": [ { "name": "TJ Holowaychuk", "email": "[email protected]" }, { "name": "Aaron Heckmann", "email": "[email protected]" }, { "name": "Ciaran Jessup", "email": "[email protected]" }, { "name": "Guillermo Rauch", "email": "[email protected]" } ], ......
— Reply to this email directly or view it on GitHubhttps://github.com/DTrejo/node-authors/issues/5#issuecomment-31159005 .