{ "id": "README", "title": "Contributors page", "contents": "\n\n\n\n
\n

Contributors pagelink

\n

We have an official accounting of who is on the Angular Team, who are \"trusted collaborators\" (see https://team.angular.io/collaborators), and so on.

\n

The contributors.json should be maintained to keep our \"org chart\" in a single consistent place.

\n

GDE listingslink

\n

There are two pages:

\n\n

About the datalink

\n\n

Processing the datalink

\n

Install https://stedolan.github.io/jq/ which is amazing.

\n\nfor handle in $(jq keys[] --raw-output < aio/content/marketing/contributors.json)\ndo echo -e \"\\n$handle\\n---------\\n\"; curl --silent -H \"Authorization: token ${TOKEN}\" https://api.github.com/users/$handle \\\n | jq \".message,.name,.company,.blog,.bio\" --raw-output\ndone\n\n

Relevant scripts are stored in aio/scripts/contributors/.

\n\n \n
\n\n\n" }