Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(package.json): Add all contributors to package.json #1163

Merged
merged 7 commits into from
Oct 10, 2018

Conversation

RichardLitt
Copy link
Member

@RichardLitt RichardLitt commented Jul 10, 2018

I got the following list of contributors by using name-your-contributors and the following jq commands:

cat contribs.json  | jq '.[][]' | jq 'if (.name | length) > 0 then {name: .name, url} else {name: .login, url} end' | jq -s . | jq unique

. This list reflects all of the contributors - either code or issue related, on GitHub or just in the commits. The list hadn't been updated in three years, so this list has now grown exponentially, but I don't see why we can't reference everyone. I'm very open to discussion on this.

Note: Unfortunately, my command line automatically ran the jq command. I hope I didn't just ping everyone, ever. My bad if so.

@RichardLitt RichardLitt added this to In Review in Community Building Jul 10, 2018
@hutson
Copy link

hutson commented Jul 12, 2018

@RichardLitt the full contents of package.json are fetched when a package is downloaded on disk, and nock is downloaded 36k times a day, so what kind of additional bandwidth consumption are we talking here?

@hutson
Copy link

hutson commented Jul 12, 2018

An alternative may be using a file in the repository that does not get automatically added to the npm package. Though Node is not an npm package, they are a good example of using a non-package.json file to maintain a list of everyone that has contributed to Node - AUTHORS.

@gr2m
Copy link
Member

gr2m commented Jul 12, 2018

I like the idea of listing contributors, but I wouldn’t do it in the package.json for The same reason that @hbetts mentioned

@RichardLitt
Copy link
Member Author

I agree with both of you. I've output the results into an AUTHORS.md file, and removed the Contributors field, which is outdated and which doesn't give attribution to people who've helped out on GitHub but who may not have contributed code. I think this is a much more elegant solution.

One thing I would suggest, before merging, would be to put the instructions for updating the Authors file somewhere for the future. What do you think?

@hutson
Copy link

hutson commented Jul 12, 2018

One thing I would suggest, before merging, would be to put the instructions for updating the Authors file somewhere for the future. What do you think?

Is there an app that does that (submits a PR whenever someone new contributes to the project)?

@RichardLitt
Copy link
Member Author

At the moment, no. That would be a good GitHub app to build, though. It would have to cache results and should do it once a month or so, as opposed to each time. This list comes from everyone who has every commented, reviewed code, opened an issue, or opened a PR, as well as committed.

@gr2m
Copy link
Member

gr2m commented Jul 13, 2018

Shall we rename AUTHORS.md to CONTRIBUTORS.md? And I would suggest to not publish the file to npm, otherwise we have the same problem as with the big package.json file.
Could you add documentation on how to update the file and maybe create a "help wanted" issue asking if someone would like to build a bot to keep it up-to-date?

@RichardLitt
Copy link
Member Author

I've added a note, and would be happy to make another issue. I've also ignored it from npm and renamed the file to CONTRIBUTORS.md. Look good? :)

@gr2m
Copy link
Member

gr2m commented Jul 23, 2018

Can we hold off on this? I’m not sure if it’s a good idea. My concerns are:

  1. It’s automated, so I’m not sure if people feel as recognized
  2. I'm not sure if it catches all the contributions we want to recognize
  3. It includes bots
  4. The file is quite big
  5. It increases the overhead for maintainers, another file we have to keep up-to-date. We could automate it, but that would be some extra effort

I agree that it would list contributors, but I’m not sure if that’s the right approach

@RichardLitt
Copy link
Member Author

Those are very good points, @gr2m, thank you.

I started this PR and this general course of action because the list of contributors in the package.json was out-of-date. While it's easy for me to justify including everyone as the best solution, in truth I didn't realize how big the contributors list was going to be. Having gone through this process, I'm not sure that keeping a contributor's list makes sense for this repository, given the size of the list. However, I think it is the right thing to do. (I'll get to why in a bit.)

One easy solution to resolve the issue that precipitated this work would be to simply remove contributors in the npm manifest, as it is out-of-date and no longer representative of the contributors in this repository. Another would be to only count authors of commits. You can do this very easily with git authors. There may be some edge cases that aren't counted, but overall this is the easiest way to get some form of a contributors list, and it takes almost no effort.

Superficially, Name Your Contributors works best when you want to inflate metrics regarding the size of your community for marketing purposes, because it counts interactions that GitHub doesn't. It also can work when you want to raise up people who post comments and review PRs, but aren't very active in terms of submitting code themselves, by naming them and including them in the project. This can be useful for new projects who are keen to foster a sense of inclusion and community, at the cost of lowering the barrier of entry for being a 'contributor' and thus possibly diluting the term for cynics (for lack of a better word) who have more conservative definitions of that term. There is certainly a trade off - do we include everyone, or no one? Or somewhere in between?

An automatic approach can remove some effort by making it easier to grab all of the contributors who fall into certain categories. But it does remove the sense of contributors being curated, hand-picked, and special. So, is it worth automating? That's a good question.

I find this to be a really interesting discussion to have. I've been blunt above, because my focus in this PR has been sidestepping these issues, and I think it's suffered for that. Instead of merging immediately, I think we should step back and ask harder questions.

How do we, as a project, thank people who contribute? Does a file of contributors names make sense? Do people feel need this list to feel like they're part of the project's history, or do they have that sense, anyway? Does the list cost more in maintainer efforts than it gives back to the people on it? I don't know the answer to these questions.

However, I think it is important to thank people, and I think this file is a step towards that. I would personally include it.

A recent NY Times article pointed me to this new research, which says that people undervalue how appreciative people are for being thanked. While a bot (or GitHub App) may remove some of the feeling of appreciate, it's still set up by the maintainers of the repo, which shows that at some point, someone thought to go out of their way to thank members of the community. I think that this is worth doing.

In this PR, I've suggested casting a wide net and thanking everyone by building this file. I think the PR could be improved by adding these lines in the file:

This list has been generated to thank everyone here for their contribution. Nock wouldn't be what it is without the individuals who've given their time to it. In alphabetical order, here is a list of people who the maintainers think are worthy of being thanked publicly and permanently here.

That makes it clear that it's not just a random file, but part of a wider, systemic approach towards being grateful to community members for their work.

I don't think the effort of automating the list, or the size of the file, or the fact that it is automated are detractors enough to not go through with this effort. @gr2m, you also mention you're not sure it catches all contributions - what other types do you want to get?

Ultimately, you and the other maintainers may think more specific categories are called for when defining 'contributors', or you may want a hand-curated list. I can see where you're coming from. Is that what you want?

I got the following list of contributors by using [name-your-contributors](https://github.com/mntnr/name-your-contributors) and the following jq commands: [
  {
    "name": "4no0p",
    "url": "https://github.com/4no0p"
  },
  {
    "name": "Aalhad Saraf",
    "url": "https://github.com/saraf"
  },
  {
    "name": "Aaron D Borden",
    "url": "https://github.com/adborden"
  },
  {
    "name": "Aaron Greenwald",
    "url": "https://github.com/aarongreenwald"
  },
  {
    "name": "Abdul Alkhatib",
    "url": "https://github.com/abdulito"
  },
  {
    "name": "Abdullah Ali",
    "url": "https://github.com/AbdullahAli"
  },
  {
    "name": "Abimbola Idowu",
    "url": "https://github.com/hisabimbola"
  },
  {
    "name": "Adam",
    "url": "https://github.com/snowmac"
  },
  {
    "name": "Adam Bretz",
    "url": "https://github.com/arb"
  },
  {
    "name": "Adam Cofer",
    "url": "https://github.com/acofer"
  },
  {
    "name": "Adam Ever-Hadani",
    "url": "https://github.com/adamhadani"
  },
  {
    "name": "Adam LaFave",
    "url": "https://github.com/lafave"
  },
  {
    "name": "Adam Tyler",
    "url": "https://github.com/AdamTyler"
  },
  {
    "name": "Adam Voss",
    "url": "https://github.com/adamvoss"
  },
  {
    "name": "Adara",
    "url": "https://github.com/adarrra"
  },
  {
    "name": "Aditya Bhardwaj",
    "url": "https://github.com/purezen"
  },
  {
    "name": "Aditya Gupta",
    "url": "https://github.com/aditya1315"
  },
  {
    "name": "Adrian Mejia",
    "url": "https://github.com/amejiarosario"
  },
  {
    "name": "Adrian Perez",
    "url": "https://github.com/blackxored"
  },
  {
    "name": "Aidan Feldman",
    "url": "https://github.com/afeld"
  },
  {
    "name": "Akshaya Kumar Sharma",
    "url": "https://github.com/lordakshaya"
  },
  {
    "name": "Alan Clarke",
    "url": "https://github.com/alanclarke"
  },
  {
    "name": "Alan Lee",
    "url": "https://github.com/mralanlee"
  },
  {
    "name": "Alastair Brunton",
    "url": "https://github.com/pyrat"
  },
  {
    "name": "Alberto Gasparin",
    "url": "https://github.com/albertogasparin"
  },
  {
    "name": "Alberto Pose",
    "url": "https://github.com/pose"
  },
  {
    "name": "Aleksander Barszczewski",
    "url": "https://github.com/alekbarszczewski"
  },
  {
    "name": "Aleksandr Gidenko",
    "url": "https://github.com/aleksgidenko"
  },
  {
    "name": "Aleksi Pekkala",
    "url": "https://github.com/epiphone"
  },
  {
    "name": "Alex Banks",
    "url": "https://github.com/MoonTahoe"
  },
  {
    "name": "Alex Dunn",
    "url": "https://github.com/dunn"
  },
  {
    "name": "Alex Gilleran",
    "url": "https://github.com/AlexGilleran"
  },
  {
    "name": "Alex Layton",
    "url": "https://github.com/awlayton"
  },
  {
    "name": "Alex Olson",
    "url": "https://github.com/alexkolson"
  },
  {
    "name": "Alex Panov",
    "url": "https://github.com/alexpanov"
  },
  {
    "name": "Alex Pavlov",
    "url": "https://github.com/macscripter"
  },
  {
    "name": "Alex Voitau",
    "url": "https://github.com/voitau"
  },
  {
    "name": "Alex Zylman",
    "url": "https://github.com/azylman"
  },
  {
    "name": "Alex0007",
    "url": "https://github.com/Alex0007"
  },
  {
    "name": "AlexRRR",
    "url": "https://github.com/AlexRRR"
  },
  {
    "name": "Alexander Christiansson",
    "url": "https://github.com/alexanderchr"
  },
  {
    "name": "Alexander Rusakov",
    "url": "https://github.com/arusakov"
  },
  {
    "name": "Alexander Simmerl",
    "url": "https://github.com/xla"
  },
  {
    "name": "Alexander Tesfamichael",
    "url": "https://github.com/alextes"
  },
  {
    "name": "Alexandru Vlăduţu",
    "url": "https://github.com/alessioalex"
  },
  {
    "name": "Alexey",
    "url": "https://github.com/akaguny"
  },
  {
    "name": "Alexey",
    "url": "https://github.com/i4got10"
  },
  {
    "name": "Alexis Metaireau",
    "url": "https://github.com/almet"
  },
  {
    "name": "Ali Abu Ras",
    "url": "https://github.com/aliaburas80"
  },
  {
    "name": "Ali Chen",
    "url": "https://github.com/ali322"
  },
  {
    "name": "Alison Kohl",
    "url": "https://github.com/alisonkohl"
  },
  {
    "name": "Alixe Bhagooa",
    "url": "https://github.com/alixeb"
  },
  {
    "name": "Allan Stewart",
    "url": "https://github.com/allan-stewart"
  },
  {
    "name": "Allen Luce",
    "url": "https://github.com/allenluce"
  },
  {
    "name": "Ami44",
    "url": "https://github.com/ami44"
  },
  {
    "name": "Amru E",
    "url": "https://github.com/amrue"
  },
  {
    "name": "Anders D. Johnson",
    "url": "https://github.com/AndersDJohnson"
  },
  {
    "name": "AndersAstrand",
    "url": "https://github.com/AndersAstrand"
  },
  {
    "name": "Anderson S. Otuka",
    "url": "https://github.com/anderson-otuka-dextra"
  },
  {
    "name": "Andras",
    "url": "https://github.com/andrasq"
  },
  {
    "name": "Andrea",
    "url": "https://github.com/gurghet"
  },
  {
    "name": "Andrea Gariboldi",
    "url": "https://github.com/aaaristo"
  },
  {
    "name": "Andrea Reginato",
    "url": "https://github.com/andreareginato"
  },
  {
    "name": "Andreas Pålsson",
    "url": "https://github.com/apals"
  },
  {
    "name": "Andrei Rusu",
    "url": "https://github.com/beatfactor"
  },
  {
    "name": "Andres Gariglio",
    "url": "https://github.com/andresgariglio"
  },
  {
    "name": "Andrew Chilton",
    "url": "https://github.com/chilts"
  },
  {
    "name": "Andrew Krespanis",
    "url": "https://github.com/andrewk"
  },
  {
    "name": "Andrew Luetgers",
    "url": "https://github.com/andrewluetgers"
  },
  {
    "name": "Andrew Luhring",
    "url": "https://github.com/andrew-luhring"
  },
  {
    "name": "Andrew Matteson",
    "url": "https://github.com/aromatt"
  },
  {
    "name": "Andrew T. Poe",
    "url": "https://github.com/andrewtpoe"
  },
  {
    "name": "Andri Möll",
    "url": "https://github.com/moll"
  },
  {
    "name": "André Cruz",
    "url": "https://github.com/satazor"
  },
  {
    "name": "André Gaul",
    "url": "https://github.com/andrenarchy"
  },
  {
    "name": "André Rodrigues",
    "url": "https://github.com/andrerod"
  },
  {
    "name": "Andy Fowler",
    "url": "https://github.com/andyfowler"
  },
  {
    "name": "Andy Kramolisch",
    "url": "https://github.com/andykram"
  },
  {
    "name": "Angel Tam",
    "url": "https://github.com/angeltam"
  },
  {
    "name": "Ankur Oberoi",
    "url": "https://github.com/aoberoi"
  },
  {
    "name": "Ankush Sharma",
    "url": "https://github.com/darxtrix"
  },
  {
    "name": "Anny He",
    "url": "https://github.com/annyh"
  },
  {
    "name": "Anshuman Verma",
    "url": "https://github.com/anshumanv"
  },
  {
    "name": "Anthony BARRE",
    "url": "https://github.com/abarre"
  },
  {
    "name": "Anthony Hildoer",
    "url": "https://github.com/ahildoer"
  },
  {
    "name": "Antoine Le Taxin",
    "url": "https://github.com/ModuloM"
  },
  {
    "name": "Antoine R. Dumont",
    "url": "https://github.com/ardumont"
  },
  {
    "name": "Antoine Rey",
    "url": "https://github.com/antoinerey"
  },
  {
    "name": "Anton",
    "url": "https://github.com/z-vr"
  },
  {
    "name": "Anton Samper Rivaya",
    "url": "https://github.com/antonsamper"
  },
  {
    "name": "Aria Stewart",
    "url": "https://github.com/aredridel"
  },
  {
    "name": "Arjan Frans",
    "url": "https://github.com/arjanfrans"
  },
  {
    "name": "Arnau González",
    "url": "https://github.com/arnaugm"
  },
  {
    "name": "Aron Woost",
    "url": "https://github.com/aronwoost"
  },
  {
    "name": "Artem Zakharchenko",
    "url": "https://github.com/blackrabbit99"
  },
  {
    "name": "Artur Mkrtchyan",
    "url": "https://github.com/arturmkrtchyan"
  },
  {
    "name": "Asaf Mesika",
    "url": "https://github.com/asafm"
  },
  {
    "name": "Ashik Vetrivelu",
    "url": "https://github.com/ashik94vc"
  },
  {
    "name": "Assaf Arkin",
    "url": "https://github.com/assaf"
  },
  {
    "name": "Attila Incze",
    "url": "https://github.com/atimb"
  },
  {
    "name": "Aurélien Thieriot",
    "url": "https://github.com/athieriot"
  },
  {
    "name": "Austin Birch",
    "url": "https://github.com/austinbirch"
  },
  {
    "name": "Austin Mao",
    "url": "https://github.com/austinmao"
  },
  {
    "name": "Avi (Ananya) Das",
    "url": "https://github.com/avidas"
  },
  {
    "name": "Avi Deitcher",
    "url": "https://github.com/deitch"
  },
  {
    "name": "Aviad Moreshet",
    "url": "https://github.com/CodeJjang"
  },
  {
    "name": "Balazs Nagy",
    "url": "https://github.com/balnagy"
  },
  {
    "name": "Bartek Szopka",
    "url": "https://github.com/bartaz"
  },
  {
    "name": "Bay",
    "url": "https://github.com/yamikuronue"
  },
  {
    "name": "Beilan Wang",
    "url": "https://github.com/beilanwang"
  },
  {
    "name": "Ben Buckman",
    "url": "https://github.com/benbuckman"
  },
  {
    "name": "Ben Feigin",
    "url": "https://github.com/bfeigin"
  },
  {
    "name": "Ben Gilman",
    "url": "https://github.com/BenMGilman"
  },
  {
    "name": "Ben Stokoe",
    "url": "https://github.com/benstokoe"
  },
  {
    "name": "Benjamin E. Coe",
    "url": "https://github.com/bcoe"
  },
  {
    "name": "Benjamin Urban",
    "url": "https://github.com/benurb"
  },
  {
    "name": "Benny Neugebauer",
    "url": "https://github.com/bennyn"
  },
  {
    "name": "Bharath Raja",
    "url": "https://github.com/bigomega"
  },
  {
    "name": "Bin Chang",
    "url": "https://github.com/BinChang"
  },
  {
    "name": "Boris Serebrov",
    "url": "https://github.com/serebrov"
  },
  {
    "name": "Boubker Boulahdid",
    "url": "https://github.com/bboulahdid"
  },
  {
    "name": "Brandon Keepers",
    "url": "https://github.com/bkeepers"
  },
  {
    "name": "Branko Zivanovic",
    "url": "https://github.com/zivanovicb1"
  },
  {
    "name": "Brent Van Minnen",
    "url": "https://github.com/Bjvanminnen"
  },
  {
    "name": "Brett Porter",
    "url": "https://github.com/brettporter"
  },
  {
    "name": "Brian Beck",
    "url": "https://github.com/exogen"
  },
  {
    "name": "Brian Dentino",
    "url": "https://github.com/bdentino"
  },
  {
    "name": "Brian Hann",
    "url": "https://github.com/c0bra"
  },
  {
    "name": "Brian J Brennan",
    "url": "https://github.com/brianloveswords"
  },
  {
    "name": "Brian M. Jemilo II",
    "url": "https://github.com/JemiloII"
  },
  {
    "name": "Brian Mann",
    "url": "https://github.com/brian-mann"
  },
  {
    "name": "Brian Mortenson",
    "url": "https://github.com/bgmort"
  },
  {
    "name": "Bruno Quaresma",
    "url": "https://github.com/BrunoQuaresma"
  },
  {
    "name": "Bryan Joseph",
    "url": "https://github.com/bj97301"
  },
  {
    "name": "Byron Bai",
    "url": "https://github.com/happybai"
  },
  {
    "name": "C. T. Lin",
    "url": "https://github.com/chentsulin"
  },
  {
    "name": "Cache Hamm",
    "url": "https://github.com/CacheControl"
  },
  {
    "name": "Cacie Prins",
    "url": "https://github.com/cacieprins"
  },
  {
    "name": "Cade Ward",
    "url": "https://github.com/cadebward"
  },
  {
    "name": "Cameron Lakenen",
    "url": "https://github.com/lakenen"
  },
  {
    "name": "Cameron Roe",
    "url": "https://github.com/cameronroe"
  },
  {
    "name": "Cameron Sutter",
    "url": "https://github.com/cameronsutter"
  },
  {
    "name": "Carl Ansley",
    "url": "https://github.com/carlansley"
  },
  {
    "name": "Carl Napier-Cook",
    "url": "https://github.com/carlnc"
  },
  {
    "name": "Carlos Villuendas Zambrana",
    "url": "https://github.com/carlosvillu"
  },
  {
    "name": "Celestino Ferreira Gomes",
    "url": "https://github.com/tinogomes"
  },
  {
    "name": "Charles Lindsay",
    "url": "https://github.com/chazomaticus"
  },
  {
    "name": "Charles Phillips",
    "url": "https://github.com/doublerebel"
  },
  {
    "name": "Charlie Briggs",
    "url": "https://github.com/Limess"
  },
  {
    "name": "Charlie Robbins",
    "url": "https://github.com/indexzero"
  },
  {
    "name": "Charlie Rudolph",
    "url": "https://github.com/charlierudolph"
  },
  {
    "name": "Chase Wilson",
    "url": "https://github.com/jiggliemon"
  },
  {
    "name": "Chevdor",
    "url": "https://github.com/chevdor"
  },
  {
    "name": "Chris Cuellar",
    "url": "https://github.com/ChrisC"
  },
  {
    "name": "Chris Jamieson",
    "url": "https://github.com/jamiesoncj"
  },
  {
    "name": "Chris Keen",
    "url": "https://github.com/zedd45"
  },
  {
    "name": "Chris Salvato",
    "url": "https://github.com/csalvato"
  },
  {
    "name": "Chris Thompson",
    "url": "https://github.com/cjthompson"
  },
  {
    "name": "Chris Ward",
    "url": "https://github.com/cw6365"
  },
  {
    "name": "Christoph Neuroth",
    "url": "https://github.com/c089"
  },
  {
    "name": "Christoph Wagner",
    "url": "https://github.com/PandaWhisperer"
  },
  {
    "name": "Claudio Petrini",
    "url": "https://github.com/claudiopetrini"
  },
  {
    "name": "Claudius Coenen",
    "url": "https://github.com/ccoenen"
  },
  {
    "name": "Cody A. Taylor",
    "url": "https://github.com/CodeMan99"
  },
  {
    "name": "Cody Greene",
    "url": "https://github.com/cody-greene"
  },
  {
    "name": "Cole Turner",
    "url": "https://github.com/coleturner"
  },
  {
    "name": "Cory Reed",
    "url": "https://github.com/swashcap"
  },
  {
    "name": "Cosmo Wolfe",
    "url": "https://github.com/cozmo"
  },
  {
    "name": "Coveralls",
    "url": "https://github.com/coveralls"
  },
  {
    "name": "Craig Freeman",
    "url": "https://github.com/CFreeAtEbsco"
  },
  {
    "name": "Craig Morris",
    "url": "https://github.com/morrislaptop"
  },
  {
    "name": "Cristian Cialli",
    "url": "https://github.com/ciccia"
  },
  {
    "name": "Cristian Szwarc",
    "url": "https://github.com/cristianszwarc"
  },
  {
    "name": "Csaba Palfi",
    "url": "https://github.com/csabapalfi"
  },
  {
    "name": "Cyril Auburtin",
    "url": "https://github.com/caub"
  },
  {
    "name": "Dallon Feldner",
    "url": "https://github.com/dallonf"
  },
  {
    "name": "Damian Janowski",
    "url": "https://github.com/djanowski"
  },
  {
    "name": "Damian Kaczmarek",
    "url": "https://github.com/Rush"
  },
  {
    "name": "Damian Krzeminski",
    "url": "https://github.com/pirxpilot"
  },
  {
    "name": "Dan",
    "url": "https://github.com/danpantry"
  },
  {
    "name": "Dan Jenkins",
    "url": "https://github.com/danjenkins"
  },
  {
    "name": "Dan Ristea",
    "url": "https://github.com/danrr"
  },
  {
    "name": "Dan Riti",
    "url": "https://github.com/danriti"
  },
  {
    "name": "Daniel Bretoi",
    "url": "https://github.com/danielb2"
  },
  {
    "name": "Daniel Fenton",
    "url": "https://github.com/dmfenton"
  },
  {
    "name": "Daniel Pupius",
    "url": "https://github.com/dpup"
  },
  {
    "name": "Daniel Upton",
    "url": "https://github.com/elkelk"
  },
  {
    "name": "Daniil Zavyalov",
    "url": "https://github.com/daniilzav123"
  },
  {
    "name": "Daniël Illouz",
    "url": "https://github.com/danillouz"
  },
  {
    "name": "Danny",
    "url": "https://github.com/dannyid"
  },
  {
    "name": "Danny Andrews",
    "url": "https://github.com/danny-andrews"
  },
  {
    "name": "Dario Spadoni",
    "url": "https://github.com/dariospadoni"
  },
  {
    "name": "Dave Cadwallader",
    "url": "https://github.com/geekdave"
  },
  {
    "name": "Dave Jensen",
    "url": "https://github.com/djensen47"
  },
  {
    "name": "Dave Meehan",
    "url": "https://github.com/dmeehan1968"
  },
  {
    "name": "Dave Schinkel",
    "url": "https://github.com/dschinkel"
  },
  {
    "name": "David Björklund",
    "url": "https://github.com/kesla"
  },
  {
    "name": "David Braun",
    "url": "https://github.com/NodeGuy"
  },
  {
    "name": "David Chambers",
    "url": "https://github.com/davidchambers"
  },
  {
    "name": "David Chase",
    "url": "https://github.com/davidchase"
  },
  {
    "name": "David Judik",
    "url": "https://github.com/judikdavid"
  },
  {
    "name": "David M. Lee",
    "url": "https://github.com/leedm777"
  },
  {
    "name": "David Pate",
    "url": "https://github.com/DavidTPate"
  },
  {
    "name": "David Rissato Cruz",
    "url": "https://github.com/davidrissato"
  },
  {
    "name": "David Rousselie",
    "url": "https://github.com/dax"
  },
  {
    "name": "David Schoen",
    "url": "https://github.com/neerolyte"
  },
  {
    "name": "David Stone",
    "url": "https://github.com/dcstone09"
  },
  {
    "name": "David Tanner",
    "url": "https://github.com/DavidTanner"
  },
  {
    "name": "David Wong",
    "url": "https://github.com/sirdavidwong"
  },
  {
    "name": "Davit Ohanyan",
    "url": "https://github.com/OhDavit"
  },
  {
    "name": "Dawid Ciężarkiewicz",
    "url": "https://github.com/dpc"
  },
  {
    "name": "Deepti Agrawal",
    "url": "https://github.com/deeptiagrawa"
  },
  {
    "name": "Dennis Johnson",
    "url": "https://github.com/songawee"
  },
  {
    "name": "Devanshu Gupta",
    "url": "https://github.com/devanshug"
  },
  {
    "name": "Devin Jett",
    "url": "https://github.com/djett41"
  },
  {
    "name": "Devon Wesley",
    "url": "https://github.com/devonwesley"
  },
  {
    "name": "Diana Ionita",
    "url": "https://github.com/DianaIonita"
  },
  {
    "name": "Diana Thayer",
    "url": "https://github.com/garbados"
  },
  {
    "name": "Diego José Molina González",
    "url": "https://github.com/kaizenberg"
  },
  {
    "name": "Diego Rani Mazine",
    "url": "https://github.com/dmazine"
  },
  {
    "name": "Dimitri Rosenberg",
    "url": "https://github.com/rosendi"
  },
  {
    "name": "Dimitris Halatsis",
    "url": "https://github.com/mitsos1os"
  },
  {
    "name": "Dipun Mistry",
    "url": "https://github.com/dipunm"
  },
  {
    "name": "Dmitrii Sorin",
    "url": "https://github.com/1999"
  },
  {
    "name": "Dmitry Polushkin",
    "url": "https://github.com/dmitry"
  },
  {
    "name": "Dmytro Semenov",
    "url": "https://github.com/dimichgh"
  },
  {
    "name": "Doan Nguyen",
    "url": "https://github.com/nguyendinhdoan"
  },
  {
    "name": "Domenic Denicola",
    "url": "https://github.com/domenic"
  },
  {
    "name": "Dominic Barnes",
    "url": "https://github.com/dominicbarnes"
  },
  {
    "name": "Dominykas Blyžė",
    "url": "https://github.com/dominykas"
  },
  {
    "name": "Dongkeon Kim",
    "url": "https://github.com/shallwefootball"
  },
  {
    "name": "Douglas Eggleton",
    "url": "https://github.com/douglaseggleton"
  },
  {
    "name": "Duke Jones",
    "url": "https://github.com/dukejones"
  },
  {
    "name": "Dustin Deus",
    "url": "https://github.com/StarpTech"
  },
  {
    "name": "Dustin J. Mitchell",
    "url": "https://github.com/djmitche"
  },
  {
    "name": "Dylan Millikin",
    "url": "https://github.com/PommeVerte"
  },
  {
    "name": "Dávid Szakállas",
    "url": "https://github.com/dszakallas"
  },
  {
    "name": "E W",
    "url": "https://github.com/walshe"
  },
  {
    "name": "E. Itah",
    "url": "https://github.com/eitah"
  },
  {
    "name": "Ed",
    "url": "https://github.com/anotheredward"
  },
  {
    "name": "Ed Moore",
    "url": "https://github.com/eddiemoore"
  },
  {
    "name": "Edan Schwartz",
    "url": "https://github.com/eschwartz"
  },
  {
    "name": "Eddie Antonio Santos",
    "url": "https://github.com/eddieantonio"
  },
  {
    "name": "Edo Rivai",
    "url": "https://github.com/edorivai"
  },
  {
    "name": "Eduard Bondarenko",
    "url": "https://github.com/eduardbcom"
  },
  {
    "name": "Elnur Abdurrakhimov",
    "url": "https://github.com/elnur"
  },
  {
    "name": "Em Smith",
    "url": "https://github.com/miksago"
  },
  {
    "name": "Emelia Smith",
    "url": "https://github.com/ThisIsMissEm"
  },
  {
    "name": "Emily M Coco",
    "url": "https://github.com/emilycoco"
  },
  {
    "name": "Enzo Hernan NIcolorich",
    "url": "https://github.com/dkenzox"
  },
  {
    "name": "Eric",
    "url": "https://github.com/calidion"
  },
  {
    "name": "Eric Adamski",
    "url": "https://github.com/ericadamski"
  },
  {
    "name": "Eric Hulburd",
    "url": "https://github.com/erichulburd"
  },
  {
    "name": "Eric Saboia",
    "url": "https://github.com/ericsaboia"
  },
  {
    "name": "Eric Skogen",
    "url": "https://github.com/audionerd"
  },
  {
    "name": "Erik Rothwell",
    "url": "https://github.com/bacchusrx"
  },
  {
    "name": "Erik W",
    "url": "https://github.com/technicallyerik"
  },
  {
    "name": "Erol Akarsu",
    "url": "https://github.com/eakarsu"
  },
  {
    "name": "Esa-Matti Suuronen",
    "url": "https://github.com/epeli"
  },
  {
    "name": "Espen Hovlandsdal",
    "url": "https://github.com/rexxars"
  },
  {
    "name": "Esteban",
    "url": "https://github.com/invernizzie"
  },
  {
    "name": "Ethan Arrowood",
    "url": "https://github.com/Ethan-Arrowood"
  },
  {
    "name": "Ethan Garofolo",
    "url": "https://github.com/juanpaco"
  },
  {
    "name": "Eugene Krevenets",
    "url": "https://github.com/hyzhak"
  },
  {
    "name": "Evan Davis",
    "url": "https://github.com/evandavis"
  },
  {
    "name": "Evan Faulk",
    "url": "https://github.com/faulke"
  },
  {
    "name": "Evan Siroky",
    "url": "https://github.com/evansiroky"
  },
  {
    "name": "Evgenii Ponomarev",
    "url": "https://github.com/Elergy"
  },
  {
    "name": "Evgeny Zislis",
    "url": "https://github.com/kesor"
  },
  {
    "name": "Eyo O. E.",
    "url": "https://github.com/maziey93"
  },
  {
    "name": "Fabiano França",
    "url": "https://github.com/fabiano"
  },
  {
    "name": "Facundo Olano",
    "url": "https://github.com/facundoolano"
  },
  {
    "name": "Faiq Raza",
    "url": "https://github.com/faiq"
  },
  {
    "name": "Farid Nouri Neshat",
    "url": "https://github.com/alFReD-NSH"
  },
  {
    "name": "Felipe Dornelas",
    "url": "https://github.com/felipead"
  },
  {
    "name": "Felipe Rocha",
    "url": "https://github.com/felipellrocha"
  },
  {
    "name": "Ferriel Melarpis",
    "url": "https://github.com/FerrielMelarpis"
  },
  {
    "name": "Filip Skokan",
    "url": "https://github.com/panva"
  },
  {
    "name": "Filipe Deschamps",
    "url": "https://github.com/filipedeschamps"
  },
  {
    "name": "Francesc Rosas",
    "url": "https://github.com/frosas"
  },
  {
    "name": "Francesco Negri",
    "url": "https://github.com/dhinus"
  },
  {
    "name": "Francis Gulotta",
    "url": "https://github.com/reconbot"
  },
  {
    "name": "Francis Zabala",
    "url": "https://github.com/franciszabala"
  },
  {
    "name": "Frank",
    "url": "https://github.com/yeahoffline"
  },
  {
    "name": "Frank Jakop",
    "url": "https://github.com/fjakop"
  },
  {
    "name": "Fred Mameri",
    "url": "https://github.com/CodeFred"
  },
  {
    "name": "Frederic Hemberger",
    "url": "https://github.com/fhemberger"
  },
  {
    "name": "Fábio Santos",
    "url": "https://github.com/fabiosantoscode"
  },
  {
    "name": "G Kiran Kumar Reddy",
    "url": "https://github.com/norules4kiran"
  },
  {
    "name": "Gabe Gorelick",
    "url": "https://github.com/gabegorelick"
  },
  {
    "name": "Gabe Isman",
    "url": "https://github.com/GabeIsman"
  },
  {
    "name": "Gabriel Birke",
    "url": "https://github.com/gbirke"
  },
  {
    "name": "Gabriel Falkenberg",
    "url": "https://github.com/gabrielf"
  },
  {
    "name": "Gabriel Nyante",
    "url": "https://github.com/heregoes"
  },
  {
    "name": "Gabriel Théron",
    "url": "https://github.com/GabeAtWork"
  },
  {
    "name": "Gabriel Wicke",
    "url": "https://github.com/gwicke"
  },
  {
    "name": "Gajus Kuizinas",
    "url": "https://github.com/gajus"
  },
  {
    "name": "Garry Polley",
    "url": "https://github.com/garrypolley"
  },
  {
    "name": "Gary Cheng",
    "url": "https://github.com/yra99ary"
  },
  {
    "name": "Gastón Avila",
    "url": "https://github.com/avilaton"
  },
  {
    "name": "Gastón Jorquera",
    "url": "https://github.com/gjorquera"
  },
  {
    "name": "Gavin Mogan",
    "url": "https://github.com/halkeye"
  },
  {
    "name": "George Maddocks",
    "url": "https://github.com/gwpmad"
  },
  {
    "name": "George Miroshnykov",
    "url": "https://github.com/laggyluke"
  },
  {
    "name": "George Ornbo",
    "url": "https://github.com/shapeshed"
  },
  {
    "name": "Gergo Barcza",
    "url": "https://github.com/barczaG"
  },
  {
    "name": "Girish Ramakrishnan",
    "url": "https://github.com/gramakri"
  },
  {
    "name": "Golo Roden",
    "url": "https://github.com/goloroden"
  },
  {
    "name": "Goran Gajic",
    "url": "https://github.com/gorangajic"
  },
  {
    "name": "Greenkeeper",
    "url": "https://github.com/greenkeeperio-bot"
  },
  {
    "name": "Greg Leppert",
    "url": "https://github.com/leppert"
  },
  {
    "name": "Gregor Martynus",
    "url": "https://github.com/gr2m"
  },
  {
    "name": "Gurpreet Atwal",
    "url": "https://github.com/gurpreetatwal"
  },
  {
    "name": "Gustavo Henke",
    "url": "https://github.com/gustavohenke"
  },
  {
    "name": "Gustavo Jiménez",
    "url": "https://github.com/gustavjf"
  },
  {
    "name": "Haider MA",
    "url": "https://github.com/hayderma"
  },
  {
    "name": "Hal Carleton",
    "url": "https://github.com/halcarleton"
  },
  {
    "name": "Harlan T Wood",
    "url": "https://github.com/harlantwood"
  },
  {
    "name": "Harry Hedger",
    "url": "https://github.com/hedgerh"
  },
  {
    "name": "Harry Moreno",
    "url": "https://github.com/morenoh149"
  },
  {
    "name": "Haz",
    "url": "https://github.com/diegohaz"
  },
  {
    "name": "Hector Guillermo Parra Alvarez (HGPA)",
    "url": "https://github.com/hparra"
  },
  {
    "name": "Hendrik Cech",
    "url": "https://github.com/hendrikcech"
  },
  {
    "name": "Hendrik Liebau",
    "url": "https://github.com/KingHenne"
  },
  {
    "name": "Herman",
    "url": "https://github.com/hermansb"
  },
  {
    "name": "Hidenari Nozaki",
    "url": "https://github.com/ghiden"
  },
  {
    "name": "Hirad Yazdanpanah",
    "url": "https://github.com/hiradyazdan"
  },
  {
    "name": "Hugo Durães",
    "url": "https://github.com/hugoduraes"
  },
  {
    "name": "Huu Da Tran",
    "url": "https://github.com/danosaure"
  },
  {
    "name": "Hyjaz",
    "url": "https://github.com/Hyjaz"
  },
  {
    "name": "Hyunju Choi",
    "url": "https://github.com/blackpost38"
  },
  {
    "name": "Ian Walker-Sperber",
    "url": "https://github.com/ianwsperber"
  },
  {
    "name": "Ian Young",
    "url": "https://github.com/iangreenleaf"
  },
  {
    "name": "Igor Galić",
    "url": "https://github.com/igalic"
  },
  {
    "name": "Igor Pelekhan",
    "url": "https://github.com/ipelekhan"
  },
  {
    "name": "Ihor Poplavskyi",
    "url": "https://github.com/Poplava"
  },
  {
    "name": "Ilya Antipenko",
    "url": "https://github.com/aivus"
  },
  {
    "name": "Ilya Sotov",
    "url": "https://github.com/ilsotov"
  },
  {
    "name": "Imran Chaudhry",
    "url": "https://github.com/imran-uk"
  },
  {
    "name": "Ingwar Wirjawan",
    "url": "https://github.com/rawgni"
  },
  {
    "name": "Ioan Lucut",
    "url": "https://github.com/ioanlucut"
  },
  {
    "name": "Ioannis Poulakas",
    "url": "https://github.com/giannisp"
  },
  {
    "name": "Islam Sharabash",
    "url": "https://github.com/ibash"
  },
  {
    "name": "Ivan Erceg",
    "url": "https://github.com/ierceg"
  },
  {
    "name": "Ivan Poluyanov",
    "url": "https://github.com/poluyanov"
  },
  {
    "name": "Izaak Rogan",
    "url": "https://github.com/izaakrogan"
  },
  {
    "name": "Izik Lisbon",
    "url": "https://github.com/izikl"
  },
  {
    "name": "Jack Franklin",
    "url": "https://github.com/jackfranklin"
  },
  {
    "name": "Jack Stevens",
    "url": "https://github.com/jpstevens"
  },
  {
    "name": "Jacob Wejendorp",
    "url": "https://github.com/wejendorp"
  },
  {
    "name": "Jake",
    "url": "https://github.com/samouri"
  },
  {
    "name": "Jake Craige",
    "url": "https://github.com/jakecraige"
  },
  {
    "name": "Jake Pruitt",
    "url": "https://github.com/jakepruitt"
  },
  {
    "name": "Jakub Holy",
    "url": "https://github.com/jakubholynet"
  },
  {
    "name": "James Filtness",
    "url": "https://github.com/jamesfiltness"
  },
  {
    "name": "James Harrison Fisher",
    "url": "https://github.com/jameshfisher"
  },
  {
    "name": "James Herdman",
    "url": "https://github.com/jherdman"
  },
  {
    "name": "James Pace",
    "url": "https://github.com/pacey"
  },
  {
    "name": "James Talmage",
    "url": "https://github.com/jamestalmage"
  },
  {
    "name": "Jamie Jennings",
    "url": "https://github.com/jamiemjennings"
  },
  {
    "name": "Jamison Dance",
    "url": "https://github.com/jergason"
  },
  {
    "name": "Jan Lehnardt",
    "url": "https://github.com/janl"
  },
  {
    "name": "Jan Potoms",
    "url": "https://github.com/Janpot"
  },
  {
    "name": "Jane Nguyen",
    "url": "https://github.com/piichimochi"
  },
  {
    "name": "Jared Klopper",
    "url": "https://github.com/optical"
  },
  {
    "name": "Jarid Margolin",
    "url": "https://github.com/jaridmargolin"
  },
  {
    "name": "Jason Avinger",
    "url": "https://github.com/jasonav"
  },
  {
    "name": "Jason Fischl",
    "url": "https://github.com/jfischl"
  },
  {
    "name": "Jason Galea",
    "url": "https://github.com/lecstor"
  },
  {
    "name": "Jason Kuhrt",
    "url": "https://github.com/jasonkuhrt"
  },
  {
    "name": "Jason Plumb",
    "url": "https://github.com/breedx2"
  },
  {
    "name": "Jasper Kuperus",
    "url": "https://github.com/jasperkuperus"
  },
  {
    "name": "Jay Chae",
    "url": "https://github.com/chaekit"
  },
  {
    "name": "Jeff",
    "url": "https://github.com/visualjeff"
  },
  {
    "name": "Jeff Burn",
    "url": "https://github.com/jeffora"
  },
  {
    "name": "Jeff Dickey",
    "url": "https://github.com/jdxcode"
  },
  {
    "name": "Jeff Lee",
    "url": "https://github.com/jeffomatic"
  },
  {
    "name": "Jeffrey Charles",
    "url": "https://github.com/jeffcharles"
  },
  {
    "name": "Jeffrey Jagoda",
    "url": "https://github.com/jagoda"
  },
  {
    "name": "Jehan",
    "url": "https://github.com/jtremback"
  },
  {
    "name": "Jens Claes",
    "url": "https://github.com/entropitor"
  },
  {
    "name": "Jens Peter Secher",
    "url": "https://github.com/jpsecher"
  },
  {
    "name": "JeongHoon Byun (aka Outsider)",
    "url": "https://github.com/outsideris"
  },
  {
    "name": "Jeremiah Lee",
    "url": "https://github.com/jeremiahlee"
  },
  {
    "name": "Jeremy Sik",
    "url": "https://github.com/jeremysik"
  },
  {
    "name": "Jerome Gravel-Niquet",
    "url": "https://github.com/jeromegn"
  },
  {
    "name": "Jesús Leganés-Combarro",
    "url": "https://github.com/piranna"
  },
  {
    "name": "Jezeniel Zapanta",
    "url": "https://github.com/jezeniel"
  },
  {
    "name": "Jhuliano Skittberg Moreno",
    "url": "https://github.com/jhuliano"
  },
  {
    "name": "Jianzhong Chen",
    "url": "https://github.com/cjzcpsyx"
  },
  {
    "name": "Jiayi Hu",
    "url": "https://github.com/jiayihu"
  },
  {
    "name": "Jim Brusstar",
    "url": "https://github.com/jimbru"
  },
  {
    "name": "Jinwoo Lee",
    "url": "https://github.com/jinwoo"
  },
  {
    "name": "Jiri Spac",
    "url": "https://github.com/capaj"
  },
  {
    "name": "Joaquim Serafim",
    "url": "https://github.com/joaquimserafim"
  },
  {
    "name": "Joe Becher",
    "url": "https://github.com/drazisil"
  },
  {
    "name": "Joe Kent",
    "url": "https://github.com/itsjoekent"
  },
  {
    "name": "Joe Norman",
    "url": "https://github.com/joseph-norman"
  },
  {
    "name": "Joe Smith",
    "url": "https://github.com/Yasumoto"
  },
  {
    "name": "Johan Borestad",
    "url": "https://github.com/borestad"
  },
  {
    "name": "Johan Nordberg",
    "url": "https://github.com/jnordberg"
  },
  {
    "name": "Johannes Jörg Schmidt",
    "url": "https://github.com/jo"
  },
  {
    "name": "Johannes Zellner",
    "url": "https://github.com/nebulade"
  },
  {
    "name": "John",
    "url": "https://github.com/jhnlsn"
  },
  {
    "name": "John Duhamel",
    "url": "https://github.com/jjduhamel"
  },
  {
    "name": "John Dzak",
    "url": "https://github.com/jdzak"
  },
  {
    "name": "John Mathis",
    "url": "https://github.com/JohnDMathis"
  },
  {
    "name": "John T",
    "url": "https://github.com/digitaltsai"
  },
  {
    "name": "John-David Dalton",
    "url": "https://github.com/jdalton"
  },
  {
    "name": "Jon B",
    "url": "https://github.com/PizzaAficionado"
  },
  {
    "name": "Jon Jaques",
    "url": "https://github.com/jonjaques"
  },
  {
    "name": "Jon Skulski",
    "url": "https://github.com/jskulski"
  },
  {
    "name": "Jonas",
    "url": "https://github.com/jlilja"
  },
  {
    "name": "Jonas Scheffner",
    "url": "https://github.com/jscheffner"
  },
  {
    "name": "Jonathan Bergknoff",
    "url": "https://github.com/jbergknoff"
  },
  {
    "name": "Jonathan Glock",
    "url": "https://github.com/glockjt"
  },
  {
    "name": "Jonathan Lau",
    "url": "https://github.com/jonahlau"
  },
  {
    "name": "Jonathan Petitcolas",
    "url": "https://github.com/jpetitcolas"
  },
  {
    "name": "Jonathan Rainey",
    "url": "https://github.com/Tivoli"
  },
  {
    "name": "Jonathon Herbert",
    "url": "https://github.com/jonathonherbert"
  },
  {
    "name": "Joni Salmi",
    "url": "https://github.com/josalmi"
  },
  {
    "name": "Jordan Harband",
    "url": "https://github.com/ljharb"
  },
  {
    "name": "Joseph Callaars",
    "url": "https://github.com/bcallaars"
  },
  {
    "name": "Josh Crowther",
    "url": "https://github.com/jshcrowthe"
  },
  {
    "name": "Josh Marchello",
    "url": "https://github.com/jmarchello"
  },
  {
    "name": "Josh McMillan",
    "url": "https://github.com/mcmillan"
  },
  {
    "name": "Joshua Acheson",
    "url": "https://github.com/joshacheson"
  },
  {
    "name": "Joshua Holbrook",
    "url": "https://github.com/jfhbrook"
  },
  {
    "name": "Josip Delic",
    "url": "https://github.com/delijati"
  },
  {
    "name": "José F. Romaniello",
    "url": "https://github.com/jfromaniello"
  },
  {
    "name": "João Ferreira",
    "url": "https://github.com/jmnsf"
  },
  {
    "name": "JuHwon",
    "url": "https://github.com/JuHwon"
  },
  {
    "name": "Juan Cruz Viotti",
    "url": "https://github.com/jviotti"
  },
  {
    "name": "Julian Hille",
    "url": "https://github.com/julianhille"
  },
  {
    "name": "Juraci de Lima Vieira Neto",
    "url": "https://github.com/Juraci"
  },
  {
    "name": "Justin",
    "url": "https://github.com/justincy"
  },
  {
    "name": "Justin Helmer",
    "url": "https://github.com/justinhelmer"
  },
  {
    "name": "Justin Marrington",
    "url": "https://github.com/HowlingEverett"
  },
  {
    "name": "Jérôme Avoustin",
    "url": "https://github.com/rehia"
  },
  {
    "name": "Jörg Henning",
    "url": "https://github.com/joerx"
  },
  {
    "name": "Kafo",
    "url": "https://github.com/hyalkaf"
  },
  {
    "name": "Kaiwalya Kher",
    "url": "https://github.com/knkher"
  },
  {
    "name": "Kalashnikov Igor",
    "url": "https://github.com/silentroach"
  },
  {
    "name": "Kamal Marhubi",
    "url": "https://github.com/kamalmarhubi"
  },
  {
    "name": "Karina Jain",
    "url": "https://github.com/sacredMonster"
  },
  {
    "name": "Karl Atkinson",
    "url": "https://github.com/karlatkinson"
  },
  {
    "name": "Karol Janyst",
    "url": "https://github.com/LKay"
  },
  {
    "name": "Ke Zhu",
    "url": "https://github.com/shawnzhu"
  },
  {
    "name": "Keith Laban",
    "url": "https://github.com/kelaban"
  },
  {
    "name": "Kelly",
    "url": "https://github.com/kellyrmilligan"
  },
  {
    "name": "Ken Ding",
    "url": "https://github.com/choonkending"
  },
  {
    "name": "Ken Sheedlo",
    "url": "https://github.com/ksheedlo"
  },
  {
    "name": "Kevin Bloch (@codingthat)",
    "url": "https://github.com/codingthat"
  },
  {
    "name": "Kevin Burke",
    "url": "https://github.com/kevinburke"
  },
  {
    "name": "Kevin Burke",
    "url": "https://github.com/kevinburkeshyp"
  },
  {
    "name": "Kevin Hodges",
    "url": "https://github.com/kevinhodges"
  },
  {
    "name": "Kevin Ingersoll",
    "url": "https://github.com/holic"
  },
  {
    "name": "Kevin Locke",
    "url": "https://github.com/kevinoid"
  },
  {
    "name": "Kevin McDermott",
    "url": "https://github.com/bigkevmcd"
  },
  {
    "name": "Kevin Smith",
    "url": "https://github.com/ksmith97"
  },
  {
    "name": "Kevin Whitaker",
    "url": "https://github.com/kwhitaker"
  },
  {
    "name": "Kevin Woo",
    "url": "https://github.com/kevinawoo"
  },
  {
    "name": "Keyvan Fatehi",
    "url": "https://github.com/kfatehi"
  },
  {
    "name": "Khizar",
    "url": "https://github.com/khizar"
  },
  {
    "name": "Kilian Ciuffolo",
    "url": "https://github.com/kilianc"
  },
  {
    "name": "Kimmo Brunfeldt",
    "url": "https://github.com/kimmobrunfeldt"
  },
  {
    "name": "Kirill Enykeev",
    "url": "https://github.com/enykeev"
  },
  {
    "name": "Komran Rashidov",
    "url": "https://github.com/krashidov"
  },
  {
    "name": "Konstantin Koss",
    "url": "https://github.com/KonstantinKo"
  },
  {
    "name": "Kostas",
    "url": "https://github.com/vrinek"
  },
  {
    "name": "Krishna Rajendran",
    "url": "https://github.com/blazzy"
  },
  {
    "name": "Kun Yan",
    "url": "https://github.com/kunyan"
  },
  {
    "name": "Kyle White",
    "url": "https://github.com/chainlink"
  },
  {
    "name": "Kévin Bernard-Allies",
    "url": "https://github.com/BAKFR"
  },
  {
    "name": "LAU Thierry",
    "url": "https://github.com/lauterry"
  },
  {
    "name": "Lars Haßler",
    "url": "https://github.com/LarsHassler"
  },
  {
    "name": "Lars Nyström",
    "url": "https://github.com/larsnystrom"
  },
  {
    "name": "Leo Iannacone",
    "url": "https://github.com/LeoIannacone"
  },
  {
    "name": "Leo Liang",
    "url": "https://github.com/aleung"
  },
  {
    "name": "Leo Soto",
    "url": "https://github.com/leosoto"
  },
  {
    "name": "Leonardo Couto",
    "url": "https://github.com/wallacyyy"
  },
  {
    "name": "Leonid Blinov",
    "url": "https://github.com/lblinovs"
  },
  {
    "name": "Levi Wheatcroft",
    "url": "https://github.com/leviwheatcroft"
  },
  {
    "name": "Liam Morley",
    "url": "https://github.com/carpeliam"
  },
  {
    "name": "Linus Unnebäck",
    "url": "https://github.com/LinusU"
  },
  {
    "name": "Lior Brauer",
    "url": "https://github.com/liorbrauer"
  },
  {
    "name": "Little Gnome",
    "url": "https://github.com/LittleGnome"
  },
  {
    "name": "Logan Allred",
    "url": "https://github.com/redbugz"
  },
  {
    "name": "Logan Tegman",
    "url": "https://github.com/ltegman"
  },
  {
    "name": "Lohann Paterno Coutinho Ferreira",
    "url": "https://github.com/Lohann"
  },
  {
    "name": "Loïc Mahieu",
    "url": "https://github.com/LoicMahieu"
  },
  {
    "name": "Luan Nico",
    "url": "https://github.com/luanpotter"
  },
  {
    "name": "Lucas Feliciano",
    "url": "https://github.com/lucasfeliciano"
  },
  {
    "name": "Lucas Lago",
    "url": "https://github.com/lucaslago"
  },
  {
    "name": "Luigi Pinca",
    "url": "https://github.com/lpinca"
  },
  {
    "name": "Luis Del Águila",
    "url": "https://github.com/delaguilaluis"
  },
  {
    "name": "Luke Childs",
    "url": "https://github.com/lukechilds"
  },
  {
    "name": "Luke Nimtz",
    "url": "https://github.com/protometa"
  },
  {
    "name": "Luu Ninh",
    "url": "https://github.com/ninhxuanluu"
  },
  {
    "name": "MJ",
    "url": "https://github.com/maheshjag"
  },
  {
    "name": "Mac Angell",
    "url": "https://github.com/mac-"
  },
  {
    "name": "Maciek Sakrejda",
    "url": "https://github.com/uhoh-itsmaciek"
  },
  {
    "name": "Madan Raj",
    "url": "https://github.com/manmadan03"
  },
  {
    "name": "Malcolm Rebughini",
    "url": "https://github.com/malcolmrebughini"
  },
  {
    "name": "Manan Jadhav",
    "url": "https://github.com/CurosMJ"
  },
  {
    "name": "Maor Hayoun",
    "url": "https://github.com/maorhayoun"
  },
  {
    "name": "Marc Boscher",
    "url": "https://github.com/marcboscher"
  },
  {
    "name": "Marco",
    "url": "https://github.com/marco-c"
  },
  {
    "name": "Marco Nascimento (Coi)",
    "url": "https://github.com/Coooi"
  },
  {
    "name": "Mario Mendes",
    "url": "https://github.com/hyprstack"
  },
  {
    "name": "Mario Mol",
    "url": "https://github.com/mariohmol"
  },
  {
    "name": "Mario Pareja",
    "url": "https://github.com/mpareja"
  },
  {
    "name": "Mark Meyer",
    "url": "https://github.com/mark-meyer"
  },
  {
    "name": "Mark van Cuijk",
    "url": "https://github.com/phedny"
  },
  {
    "name": "Martin Charles",
    "url": "https://github.com/0xcaff"
  },
  {
    "name": "Martin Dimitrov",
    "url": "https://github.com/clicktravel-martindimitrov"
  },
  {
    "name": "Martin Kuba",
    "url": "https://github.com/martinkuba"
  },
  {
    "name": "Martin Wawrusch",
    "url": "https://github.com/mwawrusch"
  },
  {
    "name": "Martin Štekl",
    "url": "https://github.com/stekycz"
  },
  {
    "name": "Matan Hershberg",
    "url": "https://github.com/matanh-tzmedical"
  },
  {
    "name": "Mathew Joe Thomas",
    "url": "https://github.com/disrupticons"
  },
  {
    "name": "Mathias Schreck",
    "url": "https://github.com/lo1tuma"
  },
  {
    "name": "Mathieu Derelle",
    "url": "https://github.com/MathieuDerelle"
  },
  {
    "name": "Matias Singers",
    "url": "https://github.com/matiassingers"
  },
  {
    "name": "Matija Marohnić",
    "url": "https://github.com/silvenon"
  },
  {
    "name": "Matt Dell",
    "url": "https://github.com/mattdell"
  },
  {
    "name": "Matt Ferrante",
    "url": "https://github.com/ferrants"
  },
  {
    "name": "Matt Kantor",
    "url": "https://github.com/mkantor"
  },
  {
    "name": "Matt Knight",
    "url": "https://github.com/abstractvector"
  },
  {
    "name": "Matt Lavin",
    "url": "https://github.com/mdlavin"
  },
  {
    "name": "Matt Oakes",
    "url": "https://github.com/matt-oakes"
  },
  {
    "name": "Matt Olson",
    "url": "https://github.com/mlolson"
  },
  {
    "name": "Matt Robenolt",
    "url": "https://github.com/mattrobenolt"
  },
  {
    "name": "Matt Tortolani",
    "url": "https://github.com/doodlemoonch"
  },
  {
    "name": "Matt Travi",
    "url": "https://github.com/travi"
  },
  {
    "name": "Matteo Contrini",
    "url": "https://github.com/matteocontrini"
  },
  {
    "name": "Matteo Mazzarolo",
    "url": "https://github.com/mmazzarolo"
  },
  {
    "name": "Matthew Mirande",
    "url": "https://github.com/busticated"
  },
  {
    "name": "Matthew Oaxaca",
    "url": "https://github.com/moaxaca"
  },
  {
    "name": "Matthew Robben",
    "url": "https://github.com/mfrobben"
  },
  {
    "name": "Matthew Turney",
    "url": "https://github.com/pho3nixf1re"
  },
  {
    "name": "Mattia Asti",
    "url": "https://github.com/mtt87"
  },
  {
    "name": "Max Brosnahan",
    "url": "https://github.com/gingermusketeer"
  },
  {
    "name": "Max Greenblatt",
    "url": "https://github.com/maxGreenblatt"
  },
  {
    "name": "Mayank Badola",
    "url": "https://github.com/mbad0la"
  },
  {
    "name": "Mayur Awaghade",
    "url": "https://github.com/mayurva"
  },
  {
    "name": "Michael Diep",
    "url": "https://github.com/MADiep"
  },
  {
    "name": "Michael Ford",
    "url": "https://github.com/mtford90"
  },
  {
    "name": "Michael Graf",
    "url": "https://github.com/MaerF0x0"
  },
  {
    "name": "Michael J. Abraham",
    "url": "https://github.com/mjabraham47"
  },
  {
    "name": "Michael K",
    "url": "https://github.com/0815fox"
  },
  {
    "name": "Michael Lippens",
    "url": "https://github.com/mlippens"
  },
  {
    "name": "Michael Nisi",
    "url": "https://github.com/michaelnisi"
  },
  {
    "name": "Michael Pardue",
    "url": "https://github.com/mpardue"
  },
  {
    "name": "Michael Pratt",
    "url": "https://github.com/Urthen"
  },
  {
    "name": "Michael Seidel",
    "url": "https://github.com/mjseidel"
  },
  {
    "name": "Michael Vogt",
    "url": "https://github.com/neophob"
  },
  {
    "name": "Michael Walker",
    "url": "https://github.com/cmswalker"
  },
  {
    "name": "Michael Weibel",
    "url": "https://github.com/mweibel"
  },
  {
    "name": "Michał Wadas",
    "url": "https://github.com/Ginden"
  },
  {
    "name": "Michele Spina",
    "url": "https://github.com/mikspi"
  },
  {
    "name": "Michiel Helvensteijn",
    "url": "https://github.com/mhelvens"
  },
  {
    "name": "Mickaël Tricot",
    "url": "https://github.com/mickaeltr"
  },
  {
    "name": "Miguel Espinoza",
    "url": "https://github.com/purefan"
  },
  {
    "name": "Miguel Isidoro",
    "url": "https://github.com/misidoro"
  },
  {
    "name": "Miha Rebernik",
    "url": "https://github.com/mihar"
  },
  {
    "name": "Mikael Arneborn",
    "url": "https://github.com/marneborn"
  },
  {
    "name": "Mike Chen",
    "url": "https://github.com/mhchen"
  },
  {
    "name": "Mike Emery",
    "url": "https://github.com/MikeEmery"
  },
  {
    "name": "Mike James",
    "url": "https://github.com/export-mike"
  },
  {
    "name": "Mike Reinstein",
    "url": "https://github.com/mreinstein"
  },
  {
    "name": "Mikela",
    "url": "https://github.com/glassresistor"
  },
  {
    "name": "Mikey Powers",
    "url": "https://github.com/mvpowers"
  },
  {
    "name": "Mikko Koponen",
    "url": "https://github.com/mtkopone"
  },
  {
    "name": "Mohammad Salim",
    "url": "https://github.com/MSaIim"
  },
  {
    "name": "MooYeol Prescott Lee",
    "url": "https://github.com/mooyoul"
  },
  {
    "name": "NRaf",
    "url": "https://github.com/NRaf"
  },
  {
    "name": "Naga Pavan Kumar Kunisetty",
    "url": "https://github.com/nagapavan"
  },
  {
    "name": "Nagarjuna-S",
    "url": "https://github.com/Nagarjuna-S"
  },
  {
    "name": "Nate Wang",
    "url": "https://github.com/supnate"
  },
  {
    "name": "Nathan",
    "url": "https://github.com/naw"
  },
  {
    "name": "Nathan Friedly",
    "url": "https://github.com/nfriedly"
  },
  {
    "name": "Nathan Houle",
    "url": "https://github.com/ndhoule"
  },
  {
    "name": "Nathan Richards",
    "url": "https://github.com/LAD500"
  },
  {
    "name": "Neeraj",
    "url": "https://github.com/smurfpandey"
  },
  {
    "name": "Nic Aitch",
    "url": "https://github.com/nicinabox"
  },
  {
    "name": "Nicholas Calugar",
    "url": "https://github.com/SocalNick"
  },
  {
    "name": "Nick Howes",
    "url": "https://github.com/halfninja"
  },
  {
    "name": "Nick Stefan",
    "url": "https://github.com/NickStefan"
  },
  {
    "name": "Nicky Jay",
    "url": "https://github.com/niksajanjic"
  },
  {
    "name": "Nico Schlömer",
    "url": "https://github.com/nschloe"
  },
  {
    "name": "Nicolas Del Valle",
    "url": "https://github.com/ndelvalle"
  },
  {
    "name": "Nicolas Froidure",
    "url": "https://github.com/nfroidure"
  },
  {
    "name": "Nicolas Lacasse",
    "url": "https://github.com/nlacasse"
  },
  {
    "name": "Nicolás Bevacqua",
    "url": "https://github.com/bevacqua"
  },
  {
    "name": "Niels Krijger",
    "url": "https://github.com/nielskrijger"
  },
  {
    "name": "Niggler",
    "url": "https://github.com/Niggler"
  },
  {
    "name": "Nikolaus Piccolotto",
    "url": "https://github.com/prayerslayer"
  },
  {
    "name": "Nils Bunger",
    "url": "https://github.com/nilsbunger"
  },
  {
    "name": "Nils Knappmeier",
    "url": "https://github.com/nknapp"
  },
  {
    "name": "Nock Bot",
    "url": "https://github.com/nockbot"
  },
  {
    "name": "Nordes Ménard-Lamarre",
    "url": "https://github.com/Nordes"
  },
  {
    "name": "Nuno Job",
    "url": "https://github.com/dscape"
  },
  {
    "name": "Nuno Sousa",
    "url": "https://github.com/nunofgs"
  },
  {
    "name": "Nutelac",
    "url": "https://github.com/Nutelac"
  },
  {
    "name": "Oleg",
    "url": "https://github.com/omakoleg"
  },
  {
    "name": "Oliver Wong",
    "url": "https://github.com/owiber"
  },
  {
    "name": "Olivier Louvignes",
    "url": "https://github.com/mgcrea"
  },
  {
    "name": "Olivier Tassinari",
    "url": "https://github.com/oliviertassinari"
  },
  {
    "name": "Omar Khan",
    "url": "https://github.com/omarkhan"
  },
  {
    "name": "Ondřej Ždych",
    "url": "https://github.com/zdychacek"
  },
  {
    "name": "Operations Research Engineering Software+",
    "url": "https://github.com/ORESoftware"
  },
  {
    "name": "Owen Evans",
    "url": "https://github.com/buildmaster"
  },
  {
    "name": "Pablo Lacerda de Miranda",
    "url": "https://github.com/pablolmiranda"
  },
  {
    "name": "Pascal Lalancette",
    "url": "https://github.com/okcompute"
  },
  {
    "name": "PatSmuk360",
    "url": "https://github.com/PatSmuk360"
  },
  {
    "name": "Patrick Williams",
    "url": "https://github.com/pwmckenna"
  },
  {
    "name": "Paul Dechov",
    "url": "https://github.com/dechov"
  },
  {
    "name": "Paul Fox",
    "url": "https://github.com/gibbitz"
  },
  {
    "name": "Paul Jaworski",
    "url": "https://github.com/paulwithap"
  },
  {
    "name": "Paul Lunow",
    "url": "https://github.com/lunow"
  },
  {
    "name": "Paul Melnikow",
    "url": "https://github.com/paulmelnikow"
  },
  {
    "name": "Pauli Price",
    "url": "https://github.com/marfarma"
  },
  {
    "name": "Pavel",
    "url": "https://github.com/PavelPolyakov"
  },
  {
    "name": "Pavel Teshchin",
    "url": "https://github.com/satispunk"
  },
  {
    "name": "Pedro Costa Neves",
    "url": "https://github.com/persocon"
  },
  {
    "name": "Pedro Pinho",
    "url": "https://github.com/donbitto"
  },
  {
    "name": "Pedro Teixeira",
    "url": "https://github.com/pgte"
  },
  {
    "name": "Petar Dodev",
    "url": "https://github.com/dodev"
  },
  {
    "name": "Peter A. Bigot",
    "url": "https://github.com/pabigot"
  },
  {
    "name": "Peter Berg",
    "url": "https://github.com/peteratticusberg"
  },
  {
    "name": "Peter Chanthamynavong",
    "url": "https://github.com/peterkc"
  },
  {
    "name": "Peter Conerly",
    "url": "https://github.com/pconerly"
  },
  {
    "name": "Peter Czibik",
    "url": "https://github.com/peteyycz"
  },
  {
    "name": "Peter Lyons",
    "url": "https://github.com/focusaurus"
  },
  {
    "name": "Peter Strøiman",
    "url": "https://github.com/stroiman"
  },
  {
    "name": "Petr Joachim",
    "url": "https://github.com/petrjoachim"
  },
  {
    "name": "Phaninder Pasupula",
    "url": "https://github.com/pasupulaphani"
  },
  {
    "name": "Phil Wells",
    "url": "https://github.com/thephilwells"
  },
  {
    "name": "Philip Kobernik",
    "url": "https://github.com/philipkobernik"
  },
  {
    "name": "Philipp Kretzschmar",
    "url": "https://github.com/k0pernikus"
  },
  {
    "name": "Philipp Kyeck",
    "url": "https://github.com/pkyeck"
  },
  {
    "name": "Phillip Johnsen",
    "url": "https://github.com/phillipj"
  },
  {
    "name": "Pierre Voisin",
    "url": "https://github.com/pvoisin"
  },
  {
    "name": "Prabir Shrestha",
    "url": "https://github.com/prabirshrestha"
  },
  {
    "name": "Prodigy",
    "url": "https://github.com/surya12badrinath"
  },
  {
    "name": "Prokop Simek",
    "url": "https://github.com/prokopsimek"
  },
  {
    "name": "Puneet Gupta",
    "url": "https://github.com/puneetguptanitj"
  },
  {
    "name": "Rachel H",
    "url": "https://github.com/rainyday"
  },
  {
    "name": "Rafael",
    "url": "https://github.com/rgarcia"
  },
  {
    "name": "Rahul Chaudhary",
    "url": "https://github.com/rash805115"
  },
  {
    "name": "Raine Virta",
    "url": "https://github.com/raine"
  },
  {
    "name": "Raquel Vélez",
    "url": "https://github.com/rockbot"
  },
  {
    "name": "Rashid Omar",
    "url": "https://github.com/rashthedude"
  },
  {
    "name": "Ray Tung",
    "url": "https://github.com/raytung"
  },
  {
    "name": "Reda",
    "url": "https://github.com/redben"
  },
  {
    "name": "Rhys Evans",
    "url": "https://github.com/wheresrhys"
  },
  {
    "name": "Ricard Fredin",
    "url": "https://github.com/Cordazar"
  },
  {
    "name": "Ricardo Bordon",
    "url": "https://github.com/rjbordon"
  },
  {
    "name": "Ricardo Gama",
    "url": "https://github.com/ricardogama"
  },
  {
    "name": "Richard Harrington",
    "url": "https://github.com/FuzzySockets"
  },
  {
    "name": "Richard Lay",
    "url": "https://github.com/richardlay"
  },
  {
    "name": "Richard Littauer",
    "url": "https://github.com/RichardLitt"
  },
  {
    "name": "Richard Meijer",
    "url": "https://github.com/richmeij"
  },
  {
    "name": "Richard Watkins",
    "url": "https://github.com/RichardWatkins1"
  },
  {
    "name": "Rico Sta. Cruz",
    "url": "https://github.com/rstacruz"
  },
  {
    "name": "Rob Ballou",
    "url": "https://github.com/robballou"
  },
  {
    "name": "Rob Calcroft",
    "url": "https://github.com/robcalcroft"
  },
  {
    "name": "Rob Forsythe",
    "url": "https://github.com/robforsythe"
  },
  {
    "name": "Rob Stevenson",
    "url": "https://github.com/thisdotrob"
  },
  {
    "name": "Rob Wu",
    "url": "https://github.com/Rob--W"
  },
  {
    "name": "Robert Hurst",
    "url": "https://github.com/RobertWHurst"
  },
  {
    "name": "Robert Simpson",
    "url": "https://github.com/rsimp"
  },
  {
    "name": "Robin Bobbitt",
    "url": "https://github.com/robinbobbitt"
  },
  {
    "name": "Rocky Assad",
    "url": "https://github.com/CodisRedding"
  },
  {
    "name": "Rod Howard",
    "url": "https://github.com/rodhoward"
  },
  {
    "name": "Rodrigo Gomes da Silva",
    "url": "https://github.com/rodrigogs"
  },
  {
    "name": "Rohit Kalkur",
    "url": "https://github.com/rovolution"
  },
  {
    "name": "Rolf Strijdhorst",
    "url": "https://github.com/rolfst"
  },
  {
    "name": "Romain",
    "url": "https://github.com/rprieto"
  },
  {
    "name": "Roman",
    "url": "https://github.com/moltar"
  },
  {
    "name": "Roman Hotsiy",
    "url": "https://github.com/RomanGotsiy"
  },
  {
    "name": "Roman Pearah",
    "url": "https://github.com/neverfox"
  },
  {
    "name": "Roman Shtylman",
    "url": "https://github.com/defunctzombie"
  },
  {
    "name": "Ronan Jouchet",
    "url": "https://github.com/ronjouch"
  },
  {
    "name": "Ronen Amiel",
    "url": "https://github.com/ronami"
  },
  {
    "name": "Rory Dent",
    "url": "https://github.com/Thebigbignooby"
  },
  {
    "name": "Roy Choo",
    "url": "https://github.com/roychoo"
  },
  {
    "name": "Ruben Verborgh",
    "url": "https://github.com/RubenVerborgh"
  },
  {
    "name": "Rudy Jahchan",
    "url": "https://github.com/rudyjahchan"
  },
  {
    "name": "Rui Marinho",
    "url": "https://github.com/ruimarinho"
  },
  {
    "name": "Rui Quelhas",
    "url": "https://github.com/ruiquelhas"
  },
  {
    "name": "Ruimou Xu",
    "url": "https://github.com/noperative"
  },
  {
    "name": "Russell Dempsey",
    "url": "https://github.com/SgtPooki"
  },
  {
    "name": "Ryan Juve",
    "url": "https://github.com/ryanjuve-porch"
  },
  {
    "name": "Ryan Lewis",
    "url": "https://github.com/ryanmurakami"
  },
  {
    "name": "Ryan Zander",
    "url": "https://github.com/Exide"
  },
  {
    "name": "Ryan Zec",
    "url": "https://github.com/ryanzec"
  },
  {
    "name": "Ryunosuke Sato",
    "url": "https://github.com/tricknotes"
  },
  {
    "name": "Rémi Bèges",
    "url": "https://github.com/Overdrivr"
  },
  {
    "name": "Rémi Jarasson",
    "url": "https://github.com/ArTiSTiX"
  },
  {
    "name": "Rémy Boulanouar",
    "url": "https://github.com/DblK"
  },
  {
    "name": "Rémy HUBSCHER",
    "url": "https://github.com/Natim"
  },
  {
    "name": "SARUNYHOT SUVANNACHOTI",
    "url": "https://github.com/chenka"
  },
  {
    "name": "Sahat Yalkabov",
    "url": "https://github.com/sahat"
  },
  {
    "name": "Sam Saccone",
    "url": "https://github.com/samccone"
  },
  {
    "name": "Sam Vloeberghs",
    "url": "https://github.com/samvloeberghs"
  },
  {
    "name": "Samuel Roldan",
    "url": "https://github.com/sam3k"
  },
  {
    "name": "Samuel Thompson",
    "url": "https://github.com/samuelt1"
  },
  {
    "name": "Sarah Hayman",
    "url": "https://github.com/serahhh"
  },
  {
    "name": "Sarah Vessels",
    "url": "https://github.com/cheshire137"
  },
  {
    "name": "Saran Siriphantnon",
    "url": "https://github.com/deoxen0n2"
  },
  {
    "name": "Sascha Drews",
    "url": "https://github.com/perfusorius"
  },
  {
    "name": "Saïd Tayebi",
    "url": "https://github.com/SaidTayebi"
  },
  {
    "name": "Scott Tesoriere",
    "url": "https://github.com/scottkf"
  },
  {
    "name": "Sean",
    "url": "https://github.com/seanmcintyre"
  },
  {
    "name": "Sean Massa",
    "url": "https://github.com/EndangeredMassa"
  },
  {
    "name": "Sean McLellan",
    "url": "https://github.com/Oceanswave"
  },
  {
    "name": "Sebastian Durandeu",
    "url": "https://github.com/sdurandeu"
  },
  {
    "name": "Sebastian Thiel",
    "url": "https://github.com/Byron-TW"
  },
  {
    "name": "Seth Miller",
    "url": "https://github.com/four43"
  },
  {
    "name": "Seth Westphal",
    "url": "https://github.com/westy92"
  },
  {
    "name": "Sethen Maleno",
    "url": "https://github.com/sethen"
  },
  {
    "name": "Seán Hayes",
    "url": "https://github.com/SeanHayes"
  },
  {
    "name": "Shahar Talmi",
    "url": "https://github.com/shahata"
  },
  {
    "name": "Shai",
    "url": "https://github.com/shai32"
  },
  {
    "name": "Sharikov Vladislav",
    "url": "https://github.com/sharikovvladislav"
  },
  {
    "name": "Shota",
    "url": "https://github.com/shotaK"
  },
  {
    "name": "Shrey",
    "url": "https://github.com/shreychaturvedi123"
  },
  {
    "name": "Shu Pengfei",
    "url": "https://github.com/stormslowly"
  },
  {
    "name": "Shuan Wang",
    "url": "https://github.com/swang"
  },
  {
    "name": "Siddhartha Dabral",
    "url": "https://github.com/sidabs"
  },
  {
    "name": "Silvio Rainoldi",
    "url": "https://github.com/ianaz"
  },
  {
    "name": "Simen Bekkhus",
    "url": "https://github.com/SimenB"
  },
  {
    "name": "Simon Brewster",
    "url": "https://github.com/ssbrewster"
  },
  {
    "name": "Simon Elvery",
    "url": "https://github.com/drzax"
  },
  {
    "name": "Simon Legg",
    "url": "https://github.com/leggsimon"
  },
  {
    "name": "Simon Taylor",
    "url": "https://github.com/s-taylor"
  },
  {
    "name": "Simon Turvey",
    "url": "https://github.com/serenitus"
  },
  {
    "name": "Sindre Sorhus",
    "url": "https://github.com/sindresorhus"
  },
  {
    "name": "Soroush Pour",
    "url": "https://github.com/soroushjp"
  },
  {
    "name": "Spencer",
    "url": "https://github.com/spalger"
  },
  {
    "name": "Srdjan Cengic",
    "url": "https://github.com/srkimir"
  },
  {
    "name": "Stas Slesarev",
    "url": "https://github.com/ceoworks"
  },
  {
    "name": "Stephen Cresswell",
    "url": "https://github.com/cressie176"
  },
  {
    "name": "Stephen Matthew Davies",
    "url": "https://github.com/stevematdavies"
  },
  {
    "name": "Stephen Solka",
    "url": "https://github.com/trashhalo"
  },
  {
    "name": "Stephen Sugden",
    "url": "https://github.com/grncdr"
  },
  {
    "name": "Stephen Woods",
    "url": "https://github.com/saw"
  },
  {
    "name": "Steve Gentile",
    "url": "https://github.com/sgentile"
  },
  {
    "name": "Steve Oliveira",
    "url": "https://github.com/soliveira-nascent"
  },
  {
    "name": "Steven Olsen",
    "url": "https://github.com/solsend2l"
  },
  {
    "name": "Steven Oxley",
    "url": "https://github.com/xonev"
  },
  {
    "name": "Steven Vachon",
    "url": "https://github.com/stevenvachon"
  },
  {
    "name": "Stian Grytøyr",
    "url": "https://github.com/stiang"
  },
  {
    "name": "Stuart Dotson",
    "url": "https://github.com/sdotson"
  },
  {
    "name": "Suraj Byanju",
    "url": "https://github.com/surajbyanju"
  },
  {
    "name": "Sushant",
    "url": "https://github.com/sushantdhiman"
  },
  {
    "name": "Sven Lito",
    "url": "https://github.com/svnlto"
  },
  {
    "name": "Swift",
    "url": "https://github.com/theycallmeswift"
  },
  {
    "name": "Szymon Przybylski",
    "url": "https://github.com/sprzybylski"
  },
  {
    "name": "Tanner \"tanman\" Hoisington",
    "url": "https://github.com/THoisington"
  },
  {
    "name": "Taylor Bockman",
    "url": "https://github.com/angrygoats"
  },
  {
    "name": "Taylor Everding",
    "url": "https://github.com/taylor1791"
  },
  {
    "name": "Tedde Lundgren",
    "url": "https://github.com/tedeh"
  },
  {
    "name": "Terin Stock",
    "url": "https://github.com/terinjokes"
  },
  {
    "name": "TheFive",
    "url": "https://github.com/TheFive"
  },
  {
    "name": "Theo Gravity",
    "url": "https://github.com/theogravity"
  },
  {
    "name": "Thiebaud Thomas",
    "url": "https://github.com/thomasthiebaud"
  },
  {
    "name": "Thierry Schellenbach",
    "url": "https://github.com/tschellenbach"
  },
  {
    "name": "Thomas Alexander",
    "url": "https://github.com/tomalex0"
  },
  {
    "name": "Thomas Heymann",
    "url": "https://github.com/cyberthom"
  },
  {
    "name": "Thomas Lahr",
    "url": "https://github.com/tjlahr"
  },
  {
    "name": "Thomas Parisot",
    "url": "https://github.com/oncletom"
  },
  {
    "name": "Thomas Rix",
    "url": "https://github.com/rixth"
  },
  {
    "name": "Thomas Shafer",
    "url": "https://github.com/trshafer"
  },
  {
    "name": "Thomas Watson",
    "url": "https://github.com/watson"
  },
  {
    "name": "Tiago",
    "url": "https://github.com/tiagocpontesp"
  },
  {
    "name": "Tiago Ribeiro",
    "url": "https://github.com/fixe"
  },
  {
    "name": "Tim Jonischkat",
    "url": "https://github.com/timjonischkat"
  },
  {
    "name": "Tim Kindberg",
    "url": "https://github.com/timkindberg"
  },
  {
    "name": "Tim Perry",
    "url": "https://github.com/pimterry"
  },
  {
    "name": "Tim Robinson",
    "url": "https://github.com/timjrobinson"
  },
  {
    "name": "Tim Savery",
    "url": "https://github.com/timsavery"
  },
  {
    "name": "Tim Yager",
    "url": "https://github.com/creativetim"
  },
  {
    "name": "Tobias Kaupat",
    "url": "https://github.com/Niondir"
  },
  {
    "name": "Tom",
    "url": "https://github.com/tconroy"
  },
  {
    "name": "Tom",
    "url": "https://github.com/traverse"
  },
  {
    "name": "Tom Beddard",
    "url": "https://github.com/subblue"
  },
  {
    "name": "Tom Dunlap",
    "url": "https://github.com/motevets"
  },
  {
    "name": "Tom Spencer",
    "url": "https://github.com/fiznool"
  },
  {
    "name": "Tomasz Janczuk",
    "url": "https://github.com/tjanczuk"
  },
  {
    "name": "Trevor L",
    "url": "https://github.com/landau"
  },
  {
    "name": "Trevor Livingston",
    "url": "https://github.com/tlivings"
  },
  {
    "name": "Trevor Muraro",
    "url": "https://github.com/TrevorMuraro"
  },
  {
    "name": "Trym Skaar",
    "url": "https://github.com/trym"
  },
  {
    "name": "Tudor Gergely",
    "url": "https://github.com/tudorgergely"
  },
  {
    "name": "Tushar Mathur",
    "url": "https://github.com/tusharmath"
  },
  {
    "name": "Tyler",
    "url": "https://github.com/tyrw"
  },
  {
    "name": "Tyler Benziger",
    "url": "https://github.com/tybenz"
  },
  {
    "name": "Tyler Childs",
    "url": "https://github.com/tylerchilds"
  },
  {
    "name": "Tyler Renelle",
    "url": "https://github.com/lefnire"
  },
  {
    "name": "UndeadBaneGitHub",
    "url": "https://github.com/UndeadBaneGitHub"
  },
  {
    "name": "Vahe Hovhannisyan",
    "url": "https://github.com/vhpoet"
  },
  {
    "name": "Vasiliy Yorkin",
    "url": "https://github.com/vyorkin"
  },
  {
    "name": "Venkat",
    "url": "https://github.com/Venkat-18"
  },
  {
    "name": "Vincent Quigley",
    "url": "https://github.com/vquigley"
  },
  {
    "name": "Vincent Voyer",
    "url": "https://github.com/vvo"
  },
  {
    "name": "Vinh Bachsy",
    "url": "https://github.com/vinh0604"
  },
  {
    "name": "Vitalii Honcharenko",
    "url": "https://github.com/vithonch"
  },
  {
    "name": "Vitalij Kudresov",
    "url": "https://github.com/kudresov"
  },
  {
    "name": "Vitor Arins",
    "url": "https://github.com/vitorarins"
  },
  {
    "name": "Vojtech Novak",
    "url": "https://github.com/vonovak"
  },
  {
    "name": "Vsevolod Strukchinsky",
    "url": "https://github.com/floatdrop"
  },
  {
    "name": "Wes Johnson",
    "url": "https://github.com/sterlingwes"
  },
  {
    "name": "Will Prater",
    "url": "https://github.com/wprater"
  },
  {
    "name": "Will Simons",
    "url": "https://github.com/bigredwill"
  },
  {
    "name": "Willson Mock",
    "url": "https://github.com/fay-jai"
  },
  {
    "name": "Winson Tsang",
    "url": "https://github.com/winsontsang"
  },
  {
    "name": "Xavier Zhou",
    "url": "https://github.com/xavierchou"
  },
  {
    "name": "Yann Odeyer",
    "url": "https://github.com/yodeyer"
  },
  {
    "name": "Yaroslav",
    "url": "https://github.com/mrs…
@RichardLitt
Copy link
Member Author

I've added the paragraph I suggest to the Contributors file. What do you think?

@gr2m
Copy link
Member

gr2m commented Aug 22, 2018

My main concern at this point is that generating the file is not automated and I fear we will easily forget about it.

To benefit from the appreciation we would also need to make sure that new contributors get notified if they get added to the list. Which Ideally we automate, too, e.g. by mentioning them in the commit message?

@RichardLitt RichardLitt moved this from In Review to In progress in Community Building Aug 22, 2018
@RichardLitt
Copy link
Member Author

Can we open another issue to automate it? For now, I think that that concern is holding up this PR. This PR is an improvement on the old information in the package.json, so I think it should stand on its own merits, not just how it will be six months from now.

Make sense?

@gr2m
Copy link
Member

gr2m commented Sep 28, 2018

Automating it works for me. It would make a nice standalone issue that someone could work on. Hacktoberfest is around the corner, that could make a fitting issue

@RichardLitt RichardLitt merged commit 33da255 into master Oct 10, 2018
@RichardLitt RichardLitt moved this from In progress to Done in Community Building Oct 12, 2018
@lock
Copy link

lock bot commented Oct 24, 2018

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue and add a reference to this one if it’s related. Thank you!

@lock lock bot locked as resolved and limited conversation to collaborators Oct 24, 2018
@nockbot
Copy link
Collaborator

nockbot commented Nov 3, 2018

🎉 This PR is included in version 10.0.2 🎉

The release is available on:

Your semantic-release bot 📦🚀

@paulmelnikow paulmelnikow deleted the feat/add-contributors branch December 19, 2018 17:16
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
Development

Successfully merging this pull request may close these issues.

None yet

4 participants