├── .gitattributes ├── .github └── workflows │ ├── dependabot.yml │ ├── nodejs.yml │ └── semantic-release.yml ├── .gitignore ├── .releaserc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── config.json.example ├── license ├── package.json ├── readme.md ├── src ├── cli.js ├── graphql.js ├── index.js └── queries.js └── test ├── integration-test.js └── queries-test.js /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/workflows/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/.github/workflows/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/semantic-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/.github/workflows/semantic-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/.releaserc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/config.json.example -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/readme.md -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/graphql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/src/graphql.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/src/index.js -------------------------------------------------------------------------------- /src/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/src/queries.js -------------------------------------------------------------------------------- /test/integration-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/test/integration-test.js -------------------------------------------------------------------------------- /test/queries-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mntnr/name-your-contributors/HEAD/test/queries-test.js --------------------------------------------------------------------------------