-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 2.42 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
107
108
109
110
111
{
"name": "mongoose-validation-error-transform",
"description": "Automatically transform Mongoose validation error message(s) to a humanized and readable format",
"version": "0.0.6",
"author": "Nick Baugh <niftylettuce@gmail.com>",
"bugs": "https://github.com/niftylettuce/mongoose-validation-error-transform/issues",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"contributors": [
"Nick Baugh <niftylettuce@gmail.com>"
],
"dependencies": {
"capitalize": "^2.0.0",
"humanize-string": "^2.1.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"eslint": "^6.3.0",
"eslint-config-xo-lass": "^1.0.3",
"eslint-plugin-node": "^10.0.0",
"fixpack": "^2.3.1",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"remark-cli": "^7.0.0",
"remark-preset-github": "^0.0.16",
"rimraf": "^3.0.0",
"xo": "^0.24.0"
},
"engines": {
"node": ">= 6.x"
},
"files": [
"lib "
],
"homepage": "https://github.com/niftylettuce/mongoose-validation-error-transform",
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"alert",
"beautiful",
"custom",
"err",
"error",
"errors",
"handler",
"handling",
"messages",
"mongo",
"mongodb",
"mongoose",
"parse",
"parser",
"parsing",
"pretty",
"print",
"transform",
"unique",
"validation"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"xo --fix",
"git add"
],
"*.md": [
"remark . -qfo",
"git add"
],
"package.json": [
"fixpack",
"git add"
]
},
"main": "lib/index.js",
"prettier": {
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
},
"remarkConfig": {
"plugins": [
"preset-github"
]
},
"repository": "niftylettuce/mongoose-validation-error-transform",
"scripts": {
"compile": "rimraf lib && babel src --out-dir lib && eslint --no-inline-config -c .lib.eslintrc lib",
"lint": "xo && remark . -qfo",
"test": "npm run lint && npm run compile"
},
"xo": {
"prettier": true,
"space": true,
"extends": [
"xo-lass"
]
}
}