-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 756 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 756 Bytes
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": "normalize-mongoose",
"version": "1.0.0",
"description": "Normalize Mongoose JSON output",
"license": "MIT",
"repository": "abranhe/normalize-mongoose",
"homepage": "https://p.abranhe.com/normalize-mongoose",
"author": {
"name": "Abraham Hernandez",
"email": "abraham@abranhe.com",
"url": "https://abranhe.com"
},
"type": "module",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"mongoose",
"normalize",
"normalize-mongoose",
"plugin",
"mongoose-plugin"
],
"devDependencies": {
"ava": "^4.3.1",
"mongodb-memory-server": "^8.8.0",
"mongoose": "^6.0.4",
"xo": "^0.51.0"
},
"xo": {
"rules": {
"new-cap": "off"
}
}
}