mirror of
https://github.com/dzeiocom/libs.git
synced 2025-04-22 19:02:14 +00:00
26 lines
776 B
JSON
26 lines
776 B
JSON
{
|
|
"name": "@dzeio/object-util",
|
|
"version": "1.4.2",
|
|
"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": {
|
|
"esbuild": "^0.13.2"
|
|
},
|
|
"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"
|
|
}
|
|
}
|