-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.31 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
{
"name": "omit-empty-es",
"description": "(fork of omit-empty) Recursively omit empty properties from an object. Omits empty objects, arrays, strings or zero.",
"version": "1.2.0",
"homepage": "https://github.com/emmenko/omit-empty-es",
"repository": {
"type": "git",
"url": "https://github.com/emmenko/omit-empty-es.git",
"directory": "."
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"files": [
"dist",
"CHANGELOG.md"
],
"main": "dist/omit-empty-es.cjs.js",
"module": "dist/omit-empty-es.esm.js",
"scripts": {
"build": "preconstruct build",
"watch": "preconstruct watch",
"format": "prettier --write '**/*.{js,ts,tsx}'",
"lint": "eslint src/*",
"test": "jest",
"typecheck": "tsc --noEmit",
"changeset:version-and-format": "changeset version && yarn prettier --write --parser json 'package.json' && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install"
},
"dependencies": {
"@babel/runtime": "^7.22.5",
"@babel/runtime-corejs3": "^7.22.5"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "7.22.5",
"@babel/preset-env": "7.22.5",
"@babel/preset-typescript": "7.22.5",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.2",
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"@preconstruct/cli": "2.7.0",
"@types/jest": "29.5.2",
"@types/node": "16.18.37",
"@typescript-eslint/eslint-plugin": "5.60.1",
"@typescript-eslint/parser": "5.60.1",
"babel-jest": "29.5.0",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-formatter-pretty": "5.0.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.2",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"jest": "29.5.0",
"lint-staged": "13.2.3",
"prettier": "2.8.8",
"rimraf": "5.0.1",
"typescript": "5.1.6"
},
"keywords": [
"clear",
"delete",
"empty",
"find",
"has",
"hasown",
"javascript",
"js",
"key",
"keys",
"node",
"node-js",
"object",
"omit",
"properties",
"property",
"remove",
"util",
"utilities",
"utility",
"value"
],
"packageManager": "[email protected]"
}