{ "name": "nestjs-paginate", "version": "0.1.0", "author": "Philipp Petzold ", "license": "MIT", "main": "lib/index.js", "typings": "lib/index.d.ts", "files": [ "lib/**/*" ], "description": "Pagination and filtering helper method for TypeORM repostiories or query builders using Nest.js framework.", "keywords": [ "nestjs", "typeorm", "express", "pagination", "paginate", "filtration", "filter" ], "scripts": { "prebuild": "rimraf lib", "build": "tsc", "format": "prettier --write \"src/**/*.ts\"", "lint": "eslint \"src/**/*.ts\" --fix", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand" }, "dependencies": { "rxjs": "^6.5.5" }, "devDependencies": { "@nestjs/common": "^7.2.0", "@types/express": "^4.17.6", "@types/jest": "^26.0.3", "@types/node": "^14.0.14", "@typescript-eslint/eslint-plugin": "^3.4.0", "@typescript-eslint/parser": "^3.4.0", "eslint": "^7.3.1", "eslint-config-prettier": "^6.11.0", "eslint-plugin-prettier": "^3.1.4", "jest": "^26.1.0", "prettier": "^2.0.5", "reflect-metadata": "^0.1.13", "sqlite3": "^4.2.0", "ts-jest": "^26.1.1", "ts-node": "^8.10.2", "typeorm": "^0.2.25", "typescript": "^3.9.5" }, "peerDependencies": { "@nestjs/common": "^7.2.0", "express": "^4.17.1", "typeorm": "^0.2.25" }, "jest": { "moduleFileExtensions": [ "js", "json", "ts" ], "rootDir": "src", "testRegex": ".spec.ts$", "transform": { "^.+\\.(t|j)s$": "ts-jest" }, "coverageDirectory": "../coverage", "testEnvironment": "node" }, "repository": { "type": "git", "url": "git+https://github.com/ppetzold/nestjs-paginate.git" }, "homepage": "https://github.com/ppetzold/nestjs-paginate#readme", "bugs": { "url": "https://github.com/ppetzold/nestjs-paginate/issues" }, "publishConfig": { "access": "public" }, "release": { "branches": [ "master" ] } }