├── .eslintrc.json ├── .gitignore ├── LICENCE.md ├── README.md ├── jest.config.ts ├── package.json ├── src ├── __test__ │ ├── __snapshots__ │ │ └── apiToReadme.test.ts.snap │ ├── apiToReadme.test.ts │ └── readme.md ├── apiToReadme.ts └── index.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/api-to-readme/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env 3 | dist/ -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/api-to-readme/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/api-to-readme/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/api-to-readme/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/api-to-readme/HEAD/package.json -------------------------------------------------------------------------------- /src/__test__/__snapshots__/apiToReadme.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/api-to-readme/HEAD/src/__test__/__snapshots__/apiToReadme.test.ts.snap -------------------------------------------------------------------------------- /src/__test__/apiToReadme.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/api-to-readme/HEAD/src/__test__/apiToReadme.test.ts -------------------------------------------------------------------------------- /src/__test__/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/api-to-readme/HEAD/src/__test__/readme.md -------------------------------------------------------------------------------- /src/apiToReadme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/api-to-readme/HEAD/src/apiToReadme.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/api-to-readme/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/api-to-readme/HEAD/tsconfig.json --------------------------------------------------------------------------------