This repository has been archived by the owner on Jan 18, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "mongoose-plugin-paginate",
"version": "2.0.0-pre.1",
"description": "Pagination plugin for mongoose",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"start": "tsc",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"check": "prettier --check \"{src,test}/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CheeseGrinder/mongoose-plugin-paginate.git"
},
"keywords": [
"typescript",
"mongo-db",
"mongoose",
"mongoose-plugin",
"mongoose-pagination"
],
"author": {
"name": "CheeseGrinder",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/CheeseGrinder/mongoose-plugin-paginate/issues"
},
"homepage": "https://github.com/CheeseGrinder/mongoose-plugin-paginate#readme",
"dependencies": {
"ts-node": "^10.2.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"prettier": "^2.3.2",
"mongodb-memory-server": "^6.9.3",
"mongoose": "^5.11.18",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
}
}