{
  "name": "knex-paginate",
  "version": "3.1.2",
  "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": "^16.6.1",
    "auto-changelog": "^2.4.0",
    "dotenv": "^16.0.3",
    "jest": "^29.2.2",
    "knex": "^2.3.0",
    "knex-mock-client": "^1.8.4",
    "mysql2": "^3.9.4",
    "prettier": "^2.7.1",
    "release-it": "^15.5.0",
    "stringcase": "^4.3.1",
    "tsd": "^0.24.1"
  },
  "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"
    }
  }
}
