1
0
mirror of https://github.com/dzeiocom/libs.git synced 2025-06-12 19:09:18 +00:00

fix(object-util): Typing not being sent back to user

Signed-off-by: Avior <f.bouillon@aptatio.com>
This commit is contained in:
2022-12-08 12:15:08 +01:00
parent c0da88ff2b
commit 6be80cb2e1
5 changed files with 5040 additions and 211 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@dzeio/object-util",
"version": "1.4.2",
"version": "1.4.3",
"description": "Utility functions to manipulate an object",
"repository": {
"type": "git",
@ -15,11 +15,21 @@
"types": "./dist/types/ObjectUtil.d.ts",
"sideEffects": false,
"devDependencies": {
"esbuild": "^0.13.2"
"@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"
"test": "jest --coverage",
"lint": "eslint src"
}
}