├── .babelrc ├── .gitignore ├── .travis.yml ├── README.MD ├── flint-opt.js ├── mocha.opts ├── package.json ├── src ├── gun-mongo.js └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gundb/gun-mongo/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | .DS_Store 3 | dist/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gundb/gun-mongo/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gundb/gun-mongo/HEAD/README.MD -------------------------------------------------------------------------------- /flint-opt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gundb/gun-mongo/HEAD/flint-opt.js -------------------------------------------------------------------------------- /mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gundb/gun-mongo/HEAD/mocha.opts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gundb/gun-mongo/HEAD/package.json -------------------------------------------------------------------------------- /src/gun-mongo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gundb/gun-mongo/HEAD/src/gun-mongo.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gundb/gun-mongo/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gundb/gun-mongo/HEAD/yarn.lock --------------------------------------------------------------------------------