├── .gitignore ├── .npmignore ├── .travis.yml ├── Gruntfile.coffee ├── README.md ├── lib ├── index.js └── index.js.map ├── package.json ├── src └── index.coffee └── test ├── index-tests.coffee └── support └── load-server.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedoctor/hapi-mongoose-db-connector/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedoctor/hapi-mongoose-db-connector/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedoctor/hapi-mongoose-db-connector/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedoctor/hapi-mongoose-db-connector/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedoctor/hapi-mongoose-db-connector/HEAD/README.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedoctor/hapi-mongoose-db-connector/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedoctor/hapi-mongoose-db-connector/HEAD/lib/index.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedoctor/hapi-mongoose-db-connector/HEAD/package.json -------------------------------------------------------------------------------- /src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedoctor/hapi-mongoose-db-connector/HEAD/src/index.coffee -------------------------------------------------------------------------------- /test/index-tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedoctor/hapi-mongoose-db-connector/HEAD/test/index-tests.coffee -------------------------------------------------------------------------------- /test/support/load-server.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codedoctor/hapi-mongoose-db-connector/HEAD/test/support/load-server.coffee --------------------------------------------------------------------------------