-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·66 lines (66 loc) · 1.67 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "nestjs-keyset-paginator",
"version": "3.0.4",
"description": "a simple pagination library made for nestjs(mongoose) by hungreebee technologies",
"main": "dist",
"types": "dist",
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p .",
"build:pack": "npm run build && cd builds && npm pack ../",
"doc": "typedoc",
"lint": "eslint \"src/**/*.ts\"",
"prepublish": "npm run build",
"fmt": "prettier --config .prettierrc \"**/*.{ts,mjs}\" --write",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hungreebee-Technologies/Nestjs-Keyset-Paginator.git"
},
"keywords": [
"nestjs",
"keyset",
"pagination",
"hungreebee",
"typescript",
"mongoose"
],
"authors": [
{
"name": "Sushant Zope",
"url": "https://github.com/sushant9096"
},
{
"name": "Shubham Badgujar",
"url": "https://github.com/shubham8550"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Hungreebee-Technologies/Nestjs-Keyset-Paginator/issues"
},
"homepage": "https://github.com/Hungreebee-Technologies/Nestjs-Keyset-Paginator#readme",
"devDependencies": {
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"prettier": "2.5.1",
"release-it": "^14.11.8",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.2"
},
"dependencies": {
"mongoose": "^6.1.0"
},
"peerDependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2"
}
}