├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── config.json ├── docker-compose.yml ├── index.js ├── index.test.js ├── mongo.js ├── package.json ├── renovate.json └── test ├── config.json └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | coverage -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateodelnorte/sourced-repo-mongo/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateodelnorte/sourced-repo-mongo/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateodelnorte/sourced-repo-mongo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateodelnorte/sourced-repo-mongo/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateodelnorte/sourced-repo-mongo/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateodelnorte/sourced-repo-mongo/HEAD/index.js -------------------------------------------------------------------------------- /index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateodelnorte/sourced-repo-mongo/HEAD/index.test.js -------------------------------------------------------------------------------- /mongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateodelnorte/sourced-repo-mongo/HEAD/mongo.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateodelnorte/sourced-repo-mongo/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateodelnorte/sourced-repo-mongo/HEAD/renovate.json -------------------------------------------------------------------------------- /test/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateodelnorte/sourced-repo-mongo/HEAD/test/config.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mateodelnorte/sourced-repo-mongo/HEAD/test/index.js --------------------------------------------------------------------------------