-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.78 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
{
"name": "@ladjs/mongoose",
"description": "Mongoose helper for Lad, which is used as an alternative to the default `mongoose.connect()` for multiple connection management. See the Forward Email codebase for further insight into setup.",
"version": "7.0.0",
"author": "Nick Baugh <[email protected]> (http://niftylettuce.com)",
"bugs": {
"url": "https://github.com/ladjs/mongoose/issues",
"email": "[email protected]"
},
"config": {
"mongodbMemoryServer": {
"version": "5.0.0"
}
},
"contributors": [
"Nick Baugh <[email protected]> (http://niftylettuce.com)",
"Spencer Snyder <[email protected]> (http://spencersnyder.io)"
],
"dependencies": {
"boolean": "^3.2.0",
"merge-options": "^3.0.4"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"ava": "5",
"cross-env": "^7.0.3",
"delay": "5.0.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "8.0.3",
"lint-staged": "^15.2.7",
"mongodb-memory-server": "^9.4.0",
"mongoose": "^6.9.0",
"nyc": "^17.0.0",
"remark-cli": "11.0.0",
"remark-preset-github": "^4.0.4",
"signale": "^1.4.0",
"xo": "0.56.0"
},
"engines": {
"node": ">=16"
},
"files": [
"index.js"
],
"homepage": "https://github.com/ladjs/mongoose",
"keywords": [
"agenda",
"lad",
"lass",
"mongoose"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"mongoose": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/ladjs/mongoose"
},
"scripts": {
"lint": "xo --fix && remark . -qfo && fixpack",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test nyc ava"
}
}