-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "mongoose-unique-validator",
"version": "2.0.0",
"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.1",
"chai": "^4.1.2",
"eslint": "^4.16.0",
"mocha": "^5.0.0",
"mongoose": "^5.0.0"
},
"peerDependencies": {
"mongoose": "^5.0.0"
},
"dependencies": {
"lodash.foreach": "^4.1.0",
"lodash.get": "^4.0.2"
}
}