1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-04-22 19:02:14 +00:00
libs/packages/object-util/package.json
Florian Bouillon ce264b2b8b
bump @dzeio/object-util
Signed-off-by: Avior <github@avior.me>
2021-09-29 17:17:13 +02:00

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"
}
}