-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "mongoose-unique-validator",
"version": "3.0.2",
"description": "mongoose-unique-validator is a plugin which adds pre-save validation for unique fields within a Mongoose schema.",
"main": "index.js",
"scripts": {
"test": "mocha test --exit && ./node_modules/eslint/bin/eslint.js index.js test",
"lint": "eslint index.js test"
},
"keywords": [
"mongoose",
"unique",
"validator"
],
"author": {
"name": "Blake Haswell",
"email": "[email protected]",
"url": "http://blakehaswell.com/"
},
"contributors": [
{
"name": "Mike Botsko",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/blakehaswell/mongoose-unique-validator.git"
},
"devDependencies": {
"bluebird": "^3.5.4",
"chai": "^4.3.7",
"eslint": "^8.44.0",
"mocha": "^10.2.0",
"mongoose": "~6.3.0"
},
"peerDependencies": {
"mongoose": "^6.0.0"
},
"dependencies": {
"lodash.foreach": "^4.1.0",
"lodash.get": "^4.0.2"
},
"files": [
"index.js",
"package.json",
"yarn.lock",
"CHANGELOG.md",
"LICENSE",
"README.md"
]
}