├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── db.config.ci ├── db.config.example.json └── mongodb_test.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-migrate/mongodb/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-migrate/mongodb/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-migrate/mongodb/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | test/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-migrate/mongodb/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-migrate/mongodb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-migrate/mongodb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-migrate/mongodb/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-migrate/mongodb/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-migrate/mongodb/HEAD/package.json -------------------------------------------------------------------------------- /test/db.config.ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-migrate/mongodb/HEAD/test/db.config.ci -------------------------------------------------------------------------------- /test/db.config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-migrate/mongodb/HEAD/test/db.config.example.json -------------------------------------------------------------------------------- /test/mongodb_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/db-migrate/mongodb/HEAD/test/mongodb_test.js --------------------------------------------------------------------------------