├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib └── pagination.js ├── package.json └── test └── paginate.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveline/mongoose-pagination/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveline/mongoose-pagination/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveline/mongoose-pagination/HEAD/README.md -------------------------------------------------------------------------------- /lib/pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveline/mongoose-pagination/HEAD/lib/pagination.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveline/mongoose-pagination/HEAD/package.json -------------------------------------------------------------------------------- /test/paginate.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moveline/mongoose-pagination/HEAD/test/paginate.coffee --------------------------------------------------------------------------------