add AUTHORS.md

This commit is contained in:
Feross Aboukhadijeh
2016-03-07 13:16:12 -08:00
parent 271f827197
commit fdb228f937
2 changed files with 31 additions and 0 deletions

12
AUTHORS.md Normal file
View File

@@ -0,0 +1,12 @@
# Authors
#### Ordered by first contribution.
- Feross Aboukhadijeh <feross@feross.org>
- DC <dcposch@dcpos.ch>
- Nate Goldman <nate@ngoldman.me>
- Chris Morris <chris@chrismorris.org>
- Giuseppe Crinò <giuscri@gmail.com>
#### Generated by tools/authors.sh.

19
tools/authors.sh Executable file
View File

@@ -0,0 +1,19 @@
#!/bin/sh
# Update AUTHORS.md based on git history.
git log --reverse --format='%aN <%aE>' | perl -we '
BEGIN {
%seen = (), @authors = ();
}
while (<>) {
next if $seen{$_};
next if /<support\@greenkeeper.io>/;
$seen{$_} = push @authors, "- ", $_;
}
END {
print "# Authors\n\n";
print "#### Ordered by first contribution.\n\n";
print @authors, "\n";
print "#### Generated by tools/authors.sh.\n\n";
}
' > AUTHORS.md