-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@algoan/nestjs-pagination",
"version": "6.0.2",
"description": "NestJS interceptor handling request's pagination",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc -p .",
"test:cov": "jest --coverage",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/algoan/nestjs-components.git",
"directory": "packages/pagination"
},
"files": [
"dist/src"
],
"keywords": [
"nodejs",
"typescript",
"nestjs",
"pagination",
"interceptor"
],
"author": "ccoeurderoy",
"license": "ISC",
"bugs": {
"url": "https://github.com/algoan/nestjs-components.git"
},
"homepage": "https://github.com/algoan/nestjs-components/packages/nestjs-pagination",
"publishConfig": {
"access": "public"
},
"dependencies": {
"content-range": "^2.0.2",
"format-link-header": "^3.1.1"
},
"peerDependencies": {
"@nestjs/common": ">=7",
"@nestjs/core": ">=7",
"@nestjs/platform-express": ">=7",
"express": ">=4",
"rxjs": ">=7"
}
}