├── .editorconfig ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── package.json ├── src ├── ValidatorError.ts ├── index.ts ├── key.ts └── message.ts ├── test └── index.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/package.json -------------------------------------------------------------------------------- /src/ValidatorError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/src/ValidatorError.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/src/key.ts -------------------------------------------------------------------------------- /src/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/src/message.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/test/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VitorLuizC/valite/HEAD/yarn.lock --------------------------------------------------------------------------------