forked from ycraaron/ts-mongoose-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "ts-mongoose-pagination",
"description": "Typescript pagination plugin for mongoose",
"version": "1.1.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Aaron Chengrui Yang",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"mongoose",
"paginate",
"pagination",
"paging",
"page",
"mongodb",
"nextpage",
"prevpage",
"paginator"
],
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && tsc",
"test": "jest --config jestconfig.json src/tests",
"prepublishOnly": "yarn test && yarn build"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/mongoose": "^5.5.1",
"jest": "^24.8.0",
"mongoose": "^5.5.8",
"prettier": "^1.17.1",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ycraaron/ts-mongoose-pagination.git"
},
"peerDependencies": {
"@types/mongoose": "5.x",
"mongoose": "5.x"
},
"bugs": {
"url": "https://github.com/ycraaron/ts-mongoose-pagination/issues"
},
"homepage": "https://github.com/ycraaron/ts-mongoose-pagination#readme"
}