-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
42 lines (42 loc) · 984 Bytes
/
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
{
"name": "mongoose-beautiful-unique-validation",
"description": "Plugin for Mongoose that turns duplicate errors into regular Mongoose validation errors",
"version": "7.1.1",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/matteodelabre/mongoose-beautiful-unique-validation.git"
},
"scripts": {
"test": "tape tests | tap-spec",
"lint": "eslint ."
},
"engines": {
"node": ">=0.10.0"
},
"keywords": [
"mongoose",
"plugin",
"mongodb",
"error",
"unique"
],
"author": {
"name": "Mattéo Delabre ✏️",
"email": "contact@matteodelabre.me",
"url": "https://github.com/matteodelabre"
},
"peerDependencies": {
"mongoose": ">=4.11.4"
},
"devDependencies": {
"eslint": "^4.4.1",
"eslint-plugin-security": "^1.4.0",
"kerberos": "0.0.23",
"mongoose": "^5.0.6",
"semver": "^5.5.0",
"tap-spec": "^4.1.1",
"tape": "^4.7.0"
}
}