Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Authors

#### Ordered by first contribution.

- Feross Aboukhadijeh <[email protected]>
- Mathias Buus <[email protected]>
- thermatk <[email protected]>
- fisch0920 <[email protected]>
- Aliaksei Sapach <[email protected]>
- John Hiesey <[email protected]>
- hicom150 <[email protected]>
- Theadd <[email protected]>
- Astro <[email protected]>
- Anthony MOI <[email protected]>
- Max Ogden <[email protected]>
- Sidd Sridharan <[email protected]>
- Nick Rafter <[email protected]>
- zckevin <[email protected]>
- Michael Williams <[email protected]>
- Garret Buell <[email protected]>
- Linus Unnebäck <[email protected]>
- Aram Drevekenin <[email protected]>
- Gustavo Rodrigues <[email protected]>
- Alex <[email protected]>
- Harsh Vakharia <[email protected]>
- Yoann Ciabaud <[email protected]>
- Diego Rodríguez Baquero <[email protected]>
- Autarc <[email protected]>

#### Generated by bin/update-authors.sh.
21 changes: 21 additions & 0 deletions bin/update-authors.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/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>/;
next if /<yoann\@atacma.agency>/;
next if /<yciabaud\@users.noreply.github.com>/;
$seen{$_} = push @authors, "- ", $_;
}
END {
print "# Authors\n\n";
print "#### Ordered by first contribution.\n\n";
print @authors, "\n";
print "#### Generated by bin/update-authors.sh.\n";
}
' > AUTHORS.md
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
"url": "git://github.com/feross/bittorrent-tracker.git"
},
"scripts": {
"update-authors": "./bin/update-authors.sh",
"test": "standard && tape test/*.js"
}
}