UNPKG

knex-paginate

Version:

Extension of Knex's query builder with `paginate` method that will help with your pagination tasks.

76 lines (75 loc) 1.83 kB
{ "name": "knex-paginate", "version": "3.2.0", "description": "Extension of Knex's query builder with `paginate` method that will help with your pagination tasks.", "main": "lib/index.js", "types": "types.d.ts", "files": [ "lib/*", "types.d.ts" ], "scripts": { "test": "jest", "test:types": "tsd", "version": "auto-changelog -p && git add CHANGELOG.md", "release": "release-it --only-version" }, "repository": { "type": "git", "url": "git+https://github.com/felixmosh/knex-paginate.git" }, "keywords": [ "knex", "pagination", "paginate" ], "author": "Felixmosh", "license": "ISC", "bugs": { "url": "https://github.com/felixmosh/knex-paginate/issues" }, "homepage": "https://github.com/felixmosh/knex-paginate#readme", "peerDependencies": { "knex": ">= 0.95.0" }, "devDependencies": { "@types/jest": "^29.2.0", "@types/node": "^18.19.34", "auto-changelog": "^2.4.0", "dotenv": "^16.4.5", "jest": "^29.7.0", "knex": "^3.1.0", "knex-mock-client": "^3.0.0", "mysql2": "^3.10.0", "prettier": "^3.3.0", "release-it": "^16.3.0", "stringcase": "^4.3.1", "tsd": "^0.31.0" }, "jest": { "testEnvironment": "node" }, "release-it": { "git": { "changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs" }, "hooks": { "before:init": [ "yarn test", "yarn test:types" ], "after:bump": "npx auto-changelog -p" }, "github": { "release": true } }, "tsd": { "directory": "__tests-tsd__", "compilerOptions": { "esModuleInterop": false, "module": "commonjs", "target": "ES2017" } } }