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-01-20 14:49:05 +00:00
|
|
|
"@nestjs/common": "^8.2.6",
|
2021-07-27 11:58:05 +00:00
|
|
|
"@types/express": "^4.17.13",
|
2022-02-06 18:59:16 +00:00
|
|
|
"@types/jest": "^27.4.0",
|
2021-12-10 13:04:08 +00:00
|
|
|
"@types/lodash": "^4.14.178",
|
2022-02-01 14:11:08 +00:00
|
|
|
"@types/node": "^16.11.22",
|
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",
|
2021-07-20 15:09:31 +00:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
2021-09-09 10:45:00 +00:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2022-02-04 20:50:21 +00:00
|
|
|
"fastify": "^3.27.1",
|
2022-02-06 18:59:16 +00:00
|
|
|
"jest": "^27.5.0",
|
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-08 17:44:25 +00:00
|
|
|
"rxjs": "^7.5.3",
|
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-02-08 17:44:33 +00:00
|
|
|
"ts-node": "^10.5.0",
|
2021-12-01 09:03:20 +00:00
|
|
|
"typeorm": "^0.2.41",
|
2022-01-21 09:55:20 +00:00
|
|
|
"typescript": "^4.5.5"
|
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-01-20 14:49:05 +00:00
|
|
|
"@nestjs/common": "^8.2.6",
|
2022-01-20 15:09:23 +00:00
|
|
|
"express": "^4.17.2",
|
2022-02-04 20:50:21 +00:00
|
|
|
"fastify": "^3.27.1",
|
2021-12-01 09:03:20 +00:00
|
|
|
"typeorm": "^0.2.41"
|
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
|
|
|
}
|