├── .gitattributes ├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── index.js ├── lib └── mongoose-aggregate-paginate.js ├── package.json ├── test └── all.tests.js └── tsd.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/HEAD/index.js -------------------------------------------------------------------------------- /lib/mongoose-aggregate-paginate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/HEAD/lib/mongoose-aggregate-paginate.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/HEAD/package.json -------------------------------------------------------------------------------- /test/all.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/HEAD/test/all.tests.js -------------------------------------------------------------------------------- /tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/HEAD/tsd.json --------------------------------------------------------------------------------