├── .editorconfig ├── .github └── workflows │ ├── bb.yml │ └── main.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .remarkignore ├── index.js ├── lib ├── formatters.js ├── get-contributors-from-package.default.js ├── get-contributors-from-package.node.js └── index.js ├── license ├── package.json ├── readme.md ├── test ├── fixtures │ ├── existing │ │ ├── expected.md │ │ ├── index.md │ │ └── package.json │ ├── heading-contributors │ │ ├── deep │ │ │ └── deeper │ │ │ │ └── deepest │ │ │ │ ├── expected.md │ │ │ │ └── index.md │ │ ├── expected-align.md │ │ ├── expected.md │ │ ├── index.md │ │ └── package.json │ ├── heading │ │ ├── expected-complex.md │ │ ├── expected-format.md │ │ ├── expected-formatters.md │ │ ├── expected-if-custom.md │ │ ├── expected-if-partial-custom.md │ │ └── index.md │ ├── invalid-package │ │ └── index.md │ ├── match-heading │ │ ├── expected.md │ │ ├── index.md │ │ └── package.json │ ├── no-contributors │ │ └── index.md │ ├── no-heading │ │ ├── expected-if-append.md │ │ ├── expected-if-partial-custom.md │ │ ├── expected.md │ │ ├── index.md │ │ └── package.json │ └── other-table │ │ ├── expected.md │ │ ├── index.md │ │ └── package.json └── index.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/bb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/.github/workflows/bb.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | *.md 3 | -------------------------------------------------------------------------------- /.remarkignore: -------------------------------------------------------------------------------- 1 | /test/fixtures/ 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/index.js -------------------------------------------------------------------------------- /lib/formatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/lib/formatters.js -------------------------------------------------------------------------------- /lib/get-contributors-from-package.default.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Noop in browsers. 3 | */ 4 | export function getContributorsFromPackage() {} 5 | -------------------------------------------------------------------------------- /lib/get-contributors-from-package.node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/lib/get-contributors-from-package.node.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/lib/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/readme.md -------------------------------------------------------------------------------- /test/fixtures/existing/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/existing/expected.md -------------------------------------------------------------------------------- /test/fixtures/existing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/existing/index.md -------------------------------------------------------------------------------- /test/fixtures/existing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/existing/package.json -------------------------------------------------------------------------------- /test/fixtures/heading-contributors/deep/deeper/deepest/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/heading-contributors/deep/deeper/deepest/expected.md -------------------------------------------------------------------------------- /test/fixtures/heading-contributors/deep/deeper/deepest/index.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | ## Contributors 4 | -------------------------------------------------------------------------------- /test/fixtures/heading-contributors/expected-align.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/heading-contributors/expected-align.md -------------------------------------------------------------------------------- /test/fixtures/heading-contributors/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/heading-contributors/expected.md -------------------------------------------------------------------------------- /test/fixtures/heading-contributors/index.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | ## Contributors 4 | -------------------------------------------------------------------------------- /test/fixtures/heading-contributors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/heading-contributors/package.json -------------------------------------------------------------------------------- /test/fixtures/heading/expected-complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/heading/expected-complex.md -------------------------------------------------------------------------------- /test/fixtures/heading/expected-format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/heading/expected-format.md -------------------------------------------------------------------------------- /test/fixtures/heading/expected-formatters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/heading/expected-formatters.md -------------------------------------------------------------------------------- /test/fixtures/heading/expected-if-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/heading/expected-if-custom.md -------------------------------------------------------------------------------- /test/fixtures/heading/expected-if-partial-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/heading/expected-if-partial-custom.md -------------------------------------------------------------------------------- /test/fixtures/heading/index.md: -------------------------------------------------------------------------------- 1 | # Heading 2 | 3 | ## Contributors 4 | -------------------------------------------------------------------------------- /test/fixtures/invalid-package/index.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | ## Contributors 4 | -------------------------------------------------------------------------------- /test/fixtures/match-heading/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/match-heading/expected.md -------------------------------------------------------------------------------- /test/fixtures/match-heading/index.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | ## Mitwirkende 4 | -------------------------------------------------------------------------------- /test/fixtures/match-heading/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/match-heading/package.json -------------------------------------------------------------------------------- /test/fixtures/no-contributors/index.md: -------------------------------------------------------------------------------- 1 | # Example 2 | 3 | ## Contributors 4 | -------------------------------------------------------------------------------- /test/fixtures/no-heading/expected-if-append.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/no-heading/expected-if-append.md -------------------------------------------------------------------------------- /test/fixtures/no-heading/expected-if-partial-custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/no-heading/expected-if-partial-custom.md -------------------------------------------------------------------------------- /test/fixtures/no-heading/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/no-heading/expected.md -------------------------------------------------------------------------------- /test/fixtures/no-heading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/no-heading/index.md -------------------------------------------------------------------------------- /test/fixtures/no-heading/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/no-heading/package.json -------------------------------------------------------------------------------- /test/fixtures/other-table/expected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/other-table/expected.md -------------------------------------------------------------------------------- /test/fixtures/other-table/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/other-table/index.md -------------------------------------------------------------------------------- /test/fixtures/other-table/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/fixtures/other-table/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/test/index.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-contributors/HEAD/tsconfig.json --------------------------------------------------------------------------------