-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.25 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.25 KB
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
{
"name": "mongoose-model-manager",
"type": "module",
"version": "2.3.0",
"description": "ModelManager is a powerful and flexible manager for Mongoose models in Node.js applications. This class simplifies the management of data models, allowing developers to dynamically load and manage Mongoose models.",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"type-check": "npx @arethetypeswrong/cli",
"build-raw": "tsup",
"build": "npx eslint src test && tsup",
"test-only": "bash test-only.sh",
"test": "vitest --typecheck --coverage --disable-console-intercept --watch=false",
"test:watch": "vitest --typecheck --watch",
"test:unit": "vitest run --typecheck --testTimeout=300000 --coverage --disable-console-intercept --watch=false --config vitest.unit.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CyberT33N/ModelManager.git"
},
"keywords": [
"mongoose",
"model",
"manager",
"mongoose-model-manager",
"mongodb",
"node"
],
"author": "CyberT33N",
"license": "MIT",
"bugs": {
"url": "https://github.com/CyberT33N/ModelManager/issues"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.9",
"@types/node": "^20.12.11",
"@types/sinon": "^17.0.3",
"@vitest/coverage-v8": "^2.0.5",
"dotenv": "^16.4.5",
"eslint": "^9.12.0",
"globals": "^15.2.0",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.1"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"error-manager-helper": "^4.5.0",
"glob": "^10.3.15",
"lodash": "^4.17.21",
"mongodb-memory-server": "^10.1.2",
"mongoose": "^8.7.0"
},
"directories": {
"test": "test"
},
"homepage": "https://github.com/CyberT33N/ModelManager#readme"
}