mirror of
https://github.com/dzeiocom/libs.git
synced 2025-04-22 02:42:13 +00:00
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"name": "@dzeio/object-util",
|
|
"version": "1.9.1",
|
|
"description": "Utility functions to manipulate an object",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/dzeiocom/libs.git",
|
|
"directory": "packages/object-util"
|
|
},
|
|
"homepage": "https://github.com/dzeiocom/libs/tree/master/packages/object-util",
|
|
"author": "Aviortheking",
|
|
"license": "MIT",
|
|
"main": "./dist/ObjectUtil.js",
|
|
"module": "./dist/ObjectUtil.mjs",
|
|
"types": "./dist/ObjectUtil.d.ts",
|
|
"browser": "./dist/ObjectUtil.global.js",
|
|
"exports": {
|
|
".": {
|
|
"require": {
|
|
"types": "./dist/ObjectUtil.d.ts",
|
|
"default": "./dist/ObjectUtil.js"
|
|
},
|
|
"import": {
|
|
"types": "./dist/ObjectUtil.d.mts",
|
|
"default": "./dist/ObjectUtil.mjs"
|
|
}
|
|
}
|
|
},
|
|
"sideEffects": false,
|
|
"devDependencies": {
|
|
"@types/jest": "^29",
|
|
"@typescript-eslint/eslint-plugin": "^7",
|
|
"@typescript-eslint/parser": "^7",
|
|
"eslint": "^8",
|
|
"jest": "^29",
|
|
"jest-sonar-reporter": "^2",
|
|
"ts-jest": "^29",
|
|
"ts-node": "^10",
|
|
"tsup": "^8",
|
|
"typescript": "^5"
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "npm run build",
|
|
"build": "tsup ./src/ObjectUtil.ts --format cjs,esm --dts --clean && tsup ./src/ObjectUtil.ts --format iife --global-name ObjectUtil --sourcemap",
|
|
"test": "jest --coverage",
|
|
"lint": "eslint src"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"package.json",
|
|
"CHANGELOG.md"
|
|
]
|
|
}
|