forked from leepowelldev/mongoose-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.32 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "mongoose-validator",
"description": "Validators for mongoose models utilising validator.js",
"version": "2.0.2",
"author": {
"name": "Lee Powell",
"email": "lee@leepowell.co.uk",
"url": "https://leepowell.co.uk"
},
"repository": {
"type": "git",
"url": "git://github.com/leepowellcouk/mongoose-validator.git"
},
"bugs": {
"url": "https://github.com/leepowellcouk/mongoose-validator/issues"
},
"license": "MIT",
"main": "./lib/mongoose-validator",
"scripts": {
"test": "mocha -R list",
"docs": "jsdoc lib/mongoose-validator.js -d ./docs/",
"lint": "eslint lib test",
"format": "prettier --write \"{lib,test}/**/*.js\""
},
"husky": {
"hooks": {
"pre-commit": "npm run format && npm test"
}
},
"eslintConfig": {
"extends": [
"standard",
"prettier",
"prettier/standard"
],
"plugins": [
"standard",
"prettier"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"engines": {
"node": "*"
},
"keywords": [
"mongoose",
"validate",
"validation",
"models",
"schema"
],
"dependencies": {
"is": "^3.2.1",
"validator": "^9.4.1"
},
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"husky": "^0.14.3",
"jsdoc": "^3.4.3",
"mocha": "^5.0.0",
"mongoose": "^5.0.3",
"prettier": "^1.10.2",
"should": "^13.2.1"
},
"contributors": [
{
"name": "Francesco Pasqua",
"url": "https://github.com/cesconix/"
},
{
"name": "Igor Escobar",
"url": "https://github.com/igorescobar/"
},
{
"name": "Todd Bluhm",
"url": "https://github.com/toddbluhm/"
},
{
"name": "Subash Pathak",
"url": "https://github.com/subash/"
},
{
"name": "Kristijan Sedlak",
"url": "https://github.com/xpepermint"
},
{
"name": "Eric Saboia",
"url": "https://github.com/ericsaboia"
},
{
"name": "Rob Rodriguez",
"url": "https://github.com/rodriguise"
}
]
}