├── .editorconfig ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json ├── test ├── README.md ├── basic.spec.js ├── helpers │ └── index.js ├── pet-store.spec.js ├── refs.spec.js └── swagger-schemas │ ├── basic.json │ ├── pet-store.json │ └── refs.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | dist 5 | lib 6 | es 7 | coverage 8 | .idea 9 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/package.json -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/test/README.md -------------------------------------------------------------------------------- /test/basic.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/test/basic.spec.js -------------------------------------------------------------------------------- /test/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/test/helpers/index.js -------------------------------------------------------------------------------- /test/pet-store.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/test/pet-store.spec.js -------------------------------------------------------------------------------- /test/refs.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/test/refs.spec.js -------------------------------------------------------------------------------- /test/swagger-schemas/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/test/swagger-schemas/basic.json -------------------------------------------------------------------------------- /test/swagger-schemas/pet-store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/test/swagger-schemas/pet-store.json -------------------------------------------------------------------------------- /test/swagger-schemas/refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/test/swagger-schemas/refs.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/naz/swagger-express-validator/HEAD/yarn.lock --------------------------------------------------------------------------------