-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.12 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
{
"name": "@ladjs/pick-original",
"description": "Transform an Object that was transformed to return only the original properties recursively picked if they are not undefined.",
"version": "2.0.0",
"author": "Titanism",
"bugs": {
"url": "https://github.com/ladjs/pick-original/issues"
},
"contributors": [
"Titanism"
],
"dependencies": {
"@ladjs/node-dotify": "^3.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"ava": "^5.3.1",
"bson-objectid": "^1.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.49.0",
"eslint-config-xo-lass": "^2.0.1",
"eslint-plugin-compat": "^4.2.0",
"eslint-plugin-node": "^11.1.0",
"fixpack": "^4.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"nyc": "^17.0.0",
"remark-cli": "11.0.0",
"remark-preset-github": "^4.0.4",
"xo": "^0.56.0"
},
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/ladjs/pick-original",
"keywords": [
"database",
"db",
"deep",
"deepPluck",
"doc",
"document",
"fields",
"fields",
"filter",
"json",
"keys",
"lodash",
"mongo",
"mongodb",
"mongoose",
"obj",
"object",
"omit",
"original",
"original",
"pick",
"pick",
"pluck",
"pluck",
"plugin",
"props",
"recursive",
"recursively",
"schema",
"schematic",
"security",
"select",
"select",
"sensitive",
"to",
"toJSON",
"toObject",
"transform",
"transformer",
"undefined"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 50,
"reporter": [
"lcov",
"html",
"text"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ladjs/pick-original"
},
"scripts": {
"lint": "xo --fix && remark . -qfo && fixpack",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "npm run test-coverage",
"test-coverage": "cross-env NODE_ENV=test nyc ava"
}
}