-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·70 lines (70 loc) · 1.73 KB
/
package.json
File metadata and controls
executable file
·70 lines (70 loc) · 1.73 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
{
"name": "@rxstack/mongoose-service",
"version": "0.8.2",
"description": "RxStack Mongoose Service",
"private": false,
"author": "Nikolay Georgiev <symfonist@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/rxstack/mongoose-service.git"
},
"engines": {
"node": ">=12"
},
"keywords": [
"rxstack",
"platform",
"mongodb",
"mongoose"
],
"main": "dist/index",
"typings": "dist/index",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p .",
"clean": "rm -rf dist",
"eslint": "eslint src/**/*.ts",
"jest": "jest --collect-coverage --reporter=lcov",
"test": "npm run eslint && npm run jest"
},
"peerDependencies": {
"@rxstack/core": "^0.8",
"@rxstack/platform": "^0.8",
"@rxstack/security": "^0.8"
},
"dependencies": {
"chalk": "^4.1.2",
"injection-js": "^2.4.0",
"mongodb": "^6.10.0",
"mongoose": "^8.7.3",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.12",
"@types/node": "^22.7.6",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.12.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.5.4",
"typescript-eslint": "^8.10.0",
"uuid": "^11.0.1",
"winston-transport": "^4.8.0"
},
"bugs": {
"url": "https://github.com/rxstack/mongoose-service/issues"
},
"homepage": "https://github.com/rxstack/mongoose-service",
"files": [
"dist",
"README.md",
"LICENSE"
]
}