├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── lib └── dbgeo.js ├── package.json └── test ├── README.md ├── credentials.js.example ├── setup.sh └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jczaplew/dbgeo/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jczaplew/dbgeo/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jczaplew/dbgeo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jczaplew/dbgeo/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/dbgeo'); -------------------------------------------------------------------------------- /lib/dbgeo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jczaplew/dbgeo/HEAD/lib/dbgeo.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jczaplew/dbgeo/HEAD/package.json -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jczaplew/dbgeo/HEAD/test/README.md -------------------------------------------------------------------------------- /test/credentials.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jczaplew/dbgeo/HEAD/test/credentials.js.example -------------------------------------------------------------------------------- /test/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jczaplew/dbgeo/HEAD/test/setup.sh -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jczaplew/dbgeo/HEAD/test/test.js --------------------------------------------------------------------------------