-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.11 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
{
"name": "lodash-omitdeep",
"type": "module",
"version": "1.4.0",
"description": "lodash omitDeep/omitByDeep object key/value recursively",
"author": {
"name": "SIBERIA CAN CODE 🧊",
"url": "https://github.com/siberiacancode"
},
"contributors": [
{
"name": "Dmitry Babin",
"url": "https://github.com/debabin"
}
],
"license": "MIT",
"homepage": "https://github.com/siberiacancode/lodash-omitdeep",
"repository": {
"type": "git",
"url": "https://github.com/siberiacancode/lodash-omitdeep"
},
"bugs": {
"url": "https://github.com/siberiacancode/lodash-omitdeep/issues"
},
"keywords": [
"lodash",
"omit",
"omitDeep",
"omitBy",
"omitByDeep",
"key",
"keys",
"delete",
"remove",
"object",
"deep"
],
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "shx rm -rf dist && rollup -c --bundleConfigAsCjs",
"lint": "eslint . --fix",
"type": "tsc --noEmit",
"format": "prettier --write .",
"pretty": "yarn type && yarn lint && yarn format",
"prepare": "husky",
"unit-test": "vitest"
},
"peerDependencies": {
"lodash.isnil": "^4.0.0",
"lodash.isplainobject": "^4.0.6",
"lodash.omit": "^4.5.0",
"lodash.omitby": "^4.6.0"
},
"dependencies": {
"lodash.isnil": "^4.0.0",
"lodash.isplainobject": "^4.0.6",
"lodash.omit": "^4.5.0",
"lodash.omitby": "^4.6.0"
},
"devDependencies": {
"@siberiacancode/builder": "^1.3.17",
"@siberiacancode/eslint": "^2.6.0",
"@siberiacancode/prettier": "^1.1.1",
"@siberiacancode/vitest": "^1.2.4",
"@types/lodash.isnil": "^4.0.9",
"@types/lodash.isplainobject": "^4.0.9",
"@types/lodash.omit": "^4.5.9",
"@types/lodash.omitby": "^4.6.9",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"shx": "^0.3.4",
"typescript": "^5.7.2"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}