2020-06-26 21:25:03 +00:00
|
|
|
{
|
|
|
|
"name": "nestjs-paginate",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"author": "Philipp Petzold <ppetzold@protonmail.com>",
|
|
|
|
"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",
|
2020-06-28 17:56:45 +00:00
|
|
|
"filtering",
|
|
|
|
"search"
|
2020-06-26 21:25:03 +00:00
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"prebuild": "rimraf lib",
|
|
|
|
"build": "tsc",
|
|
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
2021-10-12 11:06:20 +00:00
|
|
|
"format:ci": "prettier --list-different \"src/**/*.ts\"",
|
2021-10-10 13:06:38 +00:00
|
|
|
"lint": "eslint -c .eslintrc.json --ext .ts --max-warnings 0 src",
|
2020-06-26 21:25:03 +00:00
|
|
|
"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"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-03-03 12:20:38 +00:00
|
|
|
"@nestjs/common": "^8.4.0",
|
2021-07-27 11:58:05 +00:00
|
|
|
"@types/express": "^4.17.13",
|
2022-02-25 20:13:53 +00:00
|
|
|
"@types/jest": "^27.4.1",
|
2022-03-03 12:20:56 +00:00
|
|
|
"@types/lodash": "^4.14.179",
|
2022-02-25 20:13:35 +00:00
|
|
|
"@types/node": "^16.11.26",
|
2021-10-06 21:47:19 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.33.0",
|
|
|
|
"@typescript-eslint/parser": "^4.33.0",
|
2021-08-12 08:16:01 +00:00
|
|
|
"eslint": "^7.32.0",
|
2022-03-03 12:20:04 +00:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2021-09-09 10:45:00 +00:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2022-02-25 20:16:40 +00:00
|
|
|
"fastify": "^3.27.2",
|
2022-02-09 19:58:37 +00:00
|
|
|
"jest": "^27.5.1",
|
2021-12-10 13:04:26 +00:00
|
|
|
"prettier": "^2.5.1",
|
2020-06-26 21:25:03 +00:00
|
|
|
"reflect-metadata": "^0.1.13",
|
2022-02-09 19:58:26 +00:00
|
|
|
"rxjs": "^7.5.4",
|
2021-03-04 12:51:47 +00:00
|
|
|
"sqlite3": "^5.0.2",
|
2022-01-17 08:10:18 +00:00
|
|
|
"ts-jest": "^27.1.3",
|
2022-03-03 12:20:22 +00:00
|
|
|
"ts-node": "^10.6.0",
|
2022-03-04 19:35:08 +00:00
|
|
|
"typeorm": "^0.2.45",
|
2022-03-03 12:20:48 +00:00
|
|
|
"typescript": "^4.6.2"
|
2020-06-26 21:25:03 +00:00
|
|
|
},
|
2021-10-12 11:22:25 +00:00
|
|
|
"dependencies": {
|
|
|
|
"lodash": "^4.17.21"
|
|
|
|
},
|
2020-06-26 21:25:03 +00:00
|
|
|
"peerDependencies": {
|
2022-03-03 12:20:38 +00:00
|
|
|
"@nestjs/common": "^8.4.0",
|
2022-02-17 07:54:43 +00:00
|
|
|
"express": "^4.17.3",
|
2022-02-25 20:16:40 +00:00
|
|
|
"fastify": "^3.27.2",
|
2022-03-04 19:35:08 +00:00
|
|
|
"typeorm": "^0.2.45"
|
2020-06-26 21:25:03 +00:00
|
|
|
},
|
|
|
|
"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"
|
|
|
|
]
|
|
|
|
}
|
2021-10-12 11:22:25 +00:00
|
|
|
}
|