mirror of
https://github.com/dzeiocom/libs.git
synced 2025-04-22 02:42:13 +00:00
36 lines
1.0 KiB
JSON
36 lines
1.0 KiB
JSON
{
|
|
"name": "@dzeio/object-util",
|
|
"version": "1.4.3",
|
|
"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/cjs/ObjectUtil.js",
|
|
"module": "./dist/esm/ObjectUtil.js",
|
|
"types": "./dist/types/ObjectUtil.d.ts",
|
|
"sideEffects": false,
|
|
"devDependencies": {
|
|
"@types/jest": "^29",
|
|
"@typescript-eslint/eslint-plugin": "^5",
|
|
"@typescript-eslint/parser": "^5",
|
|
"esbuild": "^0.16.2",
|
|
"eslint": "^8",
|
|
"jest": "^29",
|
|
"jest-sonar-reporter": "^2",
|
|
"ts-jest": "^29",
|
|
"ts-node": "^10",
|
|
"typescript": "^4"
|
|
},
|
|
"scripts": {
|
|
"prepublishOnly": "npm run build",
|
|
"build": "esbuild src/index.ts --outfile=dist/browser.js --minify --bundle --target=es6 && tsc && tsc --project tsconfig.esm.json",
|
|
"test": "jest --coverage",
|
|
"lint": "eslint src"
|
|
}
|
|
}
|