-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "remove-undefined-objects",
"version": "5.0.0",
"description": "Remove undefined properties and empty arrays from an object",
"license": "MIT",
"author": "Jon Ursenbach <[email protected]>",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git://github.com/readmeio/remove-undefined-objects.git"
},
"bugs": {
"url": "https://github.com/readmeio/remove-undefined-objects/issues"
},
"scripts": {
"build": "tsup",
"lint": "tsc --noEmit && eslint . --ext .js,.ts",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"pretest": "npm run lint",
"prettier": "prettier --list-different --write \"./**/**.{js,ts}\"",
"test": "vitest run --coverage"
},
"devDependencies": {
"@readme/eslint-config": "^14.0.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"prettier": "^3.0.1",
"tsup": "^8.0.1",
"typescript": "^5.1.3",
"vitest": "^2.0.5"
},
"prettier": "@readme/eslint-config/prettier"
}