├── .editorconfig ├── .eslintrc ├── .github └── workflows │ └── tests.yaml ├── .gitignore ├── .taprc ├── CHANGELOG.md ├── LICENSE.txt ├── README.md ├── index.d.ts ├── index.js ├── package.json └── tests.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Twipped/joi-to-swagger/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "twipped/node" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Twipped/joi-to-swagger/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /coverage 3 | /.nyc_output 4 | -------------------------------------------------------------------------------- /.taprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Twipped/joi-to-swagger/HEAD/.taprc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Twipped/joi-to-swagger/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Twipped/joi-to-swagger/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Twipped/joi-to-swagger/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Twipped/joi-to-swagger/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Twipped/joi-to-swagger/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Twipped/joi-to-swagger/HEAD/package.json -------------------------------------------------------------------------------- /tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Twipped/joi-to-swagger/HEAD/tests.js --------------------------------------------------------------------------------