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
dependabot[bot] 329f1ee06d
Bump ts-node from 9.1.1 to 10.2.1 (#37)
Bumps [ts-node](https://github.com/TypeStrong/ts-node) from 9.1.1 to 10.2.1.
- [Release notes](https://github.com/TypeStrong/ts-node/releases)
- [Commits](https://github.com/TypeStrong/ts-node/compare/v9.1.1...v10.2.1)

---
updated-dependencies:
- dependency-name: ts-node
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-28 17:40:52 +02:00

29 lines
790 B
JSON

{
"name": "@dzeio/object-util",
"version": "1.4.0",
"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",
"types": "./dist/ObjectUtil.d.ts",
"devDependencies": {
"@types/jest": "^27.0.0",
"jest": "^27.0.0",
"parcel": "1.12.3",
"ts-jest": "^27.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.0.2"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "parcel build src/index.ts --out-file browser.js --experimental-scope-hoisting && tsc",
"test": "jest --coverage"
}
}