├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.js ├── package.json └── tests ├── index.js └── save.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteodelabre/mongoose-beautiful-unique-validation/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteodelabre/mongoose-beautiful-unique-validation/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteodelabre/mongoose-beautiful-unique-validation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteodelabre/mongoose-beautiful-unique-validation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteodelabre/mongoose-beautiful-unique-validation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteodelabre/mongoose-beautiful-unique-validation/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteodelabre/mongoose-beautiful-unique-validation/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteodelabre/mongoose-beautiful-unique-validation/HEAD/package.json -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteodelabre/mongoose-beautiful-unique-validation/HEAD/tests/index.js -------------------------------------------------------------------------------- /tests/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteodelabre/mongoose-beautiful-unique-validation/HEAD/tests/save.js --------------------------------------------------------------------------------