nestjs-paginate/package.json
renovate[bot] 7e3937409f
chore(deps): update dependency typeorm to ^0.2.34 (#30)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-07-20 17:08:32 +02:00

87 lines
2.1 KiB
JSON

{
"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",
"filtering",
"search"
],
"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"
},
"devDependencies": {
"@nestjs/common": "^7.6.17",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.22",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.7",
"sqlite3": "^5.0.2",
"ts-jest": "^26.5.4",
"ts-node": "^9.1.1",
"typeorm": "^0.2.34",
"typescript": "^4.2.3"
},
"peerDependencies": {
"@nestjs/common": "^7.6.17",
"express": "^4.17.1",
"typeorm": "^0.2.34"
},
"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"
]
}
}