├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .prettierrc ├── .travis.yml ├── cli.js ├── fixtures ├── lots-of-contributors │ └── package.json ├── no-readme │ └── package.json ├── no-repository │ ├── package.json │ └── readme.md ├── package.json ├── readme-expected.md ├── readme.md ├── repository-object │ ├── package.json │ └── readme.md └── used │ ├── package.json │ ├── readme-expected.md │ └── readme.md ├── index.js ├── license ├── package.json ├── readme.md └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/.travis.yml -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/cli.js -------------------------------------------------------------------------------- /fixtures/lots-of-contributors/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "repository": "facebook/react" 3 | } 4 | -------------------------------------------------------------------------------- /fixtures/no-readme/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "repository": "baxterthehacker/public-repo" 3 | } 4 | -------------------------------------------------------------------------------- /fixtures/no-repository/package.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /fixtures/no-repository/readme.md: -------------------------------------------------------------------------------- 1 | [//]: contributor-faces 2 | -------------------------------------------------------------------------------- /fixtures/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "repository": "baxterthehacker/public-repo" 3 | } 4 | -------------------------------------------------------------------------------- /fixtures/readme-expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/fixtures/readme-expected.md -------------------------------------------------------------------------------- /fixtures/readme.md: -------------------------------------------------------------------------------- 1 | [//]: contributor-faces 2 | -------------------------------------------------------------------------------- /fixtures/repository-object/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/fixtures/repository-object/package.json -------------------------------------------------------------------------------- /fixtures/repository-object/readme.md: -------------------------------------------------------------------------------- 1 | [//]: contributor-faces 2 | -------------------------------------------------------------------------------- /fixtures/used/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "repository": "baxterthehacker/public-repo" 3 | } 4 | -------------------------------------------------------------------------------- /fixtures/used/readme-expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/fixtures/used/readme-expected.md -------------------------------------------------------------------------------- /fixtures/used/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/fixtures/used/readme.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/readme.md -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngryman/contributor-faces/HEAD/test.js --------------------------------------------------------------------------------