-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 2.64 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "monguito",
"version": "6.0.2",
"description": "MongoDB Abstract Repository implementation for Node.js",
"author": "Josu Martinez <josu.martinez@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/josuto/monguito#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/josuto/monguito.git"
},
"bugs": {
"url": "https://github.com/josuto/monguito/issues",
"email": "josu.martinez@gmail.com"
},
"engines": {
"node": ">=18.18.0"
},
"keywords": [
"node",
"nodejs",
"node.js",
"nest",
"nestjs",
"nest.js",
"repository",
"abstract repository",
"generic repository",
"custom repository",
"repository pattern",
"polymorphic",
"polymorphism",
"polymorphic repository",
"polymorphic pattern",
"mongo",
"mongodb",
"mongoose",
"mongoosejs",
"mongoose.js"
],
"type": "module",
"source": "./src/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/repo.cjs",
"default": "./dist/repo.modern.js"
}
},
"main": "./dist/repo.cjs",
"module": "./dist/repo.module.js",
"unpkg": "./dist/repo.umd.js",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "microbundle",
"build:dev": "microbundle watch",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.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",
"test:e2e": "jest --config examples/nestjs-mongoose-book-manager/test-util/jest-e2e.json",
"prepare": "husky"
},
"peerDependencies": {
"mongoose": ">= 8.0.0"
},
"dependencies": {
"typescript-optional": "3.0.0-alpha.3"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/mongoose-unique-validator": "^1.0.9",
"@types/node": "^22.7.7",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-or-skip-tests": "^2.6.2",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"microbundle": "^0.15.1",
"mongodb-memory-server": "^10.1.2",
"mongoose": "^8.7.2",
"mongoose-unique-validator": "^5.0.0",
"prettier": "^3.3.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}