-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.56 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.56 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
{
"name": "moleculer-db-adapter-mongoose",
"version": "0.11.0",
"description": "Mongoose adapter for Moleculer DB service",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"dev": "nodemon examples/index.js",
"ci": "jest --watch",
"test:unit": "jest --testMatch \"**/unit/**/*.spec.js\" --coverage",
"test:integration": "jest --testMatch \"**/integration/**/*.spec.js\" --runInBand --coverage",
"lint": "eslint --ext=.js src test",
"deps": "npm-check -u",
"coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"keywords": [
"microservice",
"moleculer"
],
"repository": {
"type": "git",
"url": "https://github.com/moleculerjs/moleculer-db.git"
},
"homepage": "https://github.com/moleculerjs/moleculer-db/tree/master/packages/moleculer-db-adapter-mongoose#readme",
"author": "MoleculerJS",
"license": "MIT",
"peerDependencies": {
"moleculer": "^0.12.0 || ^0.13.0 || ^0.14.0 || ^0.15.0",
"mongoose": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"devDependencies": {
"benchmarkify": "^3.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.21.0",
"fakerator": "^0.3.6",
"jest": "^27.2.5",
"jest-cli": "^27.2.5",
"lolex": "^6.0.0",
"moleculer": "^0.15.0",
"mongoose": "^6.13.3",
"nodemon": "^2.0.19",
"npm-check": "^5.9.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/services/"
]
},
"engines": {
"node": ">= 22.x.x"
},
"dependencies": {
"lodash": "^4.17.21"
}
}