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
2021-04-11 00:38:09 +02:00

28 lines
713 B
JSON

{
"name": "@dzeio/object-util",
"version": "1.1.1",
"description": "some Function to make work on objects easier",
"repository": {
"type": "git",
"url": "https://github.com/dzeiocom/libs.git",
"directory": "packages/object-util"
},
"author": "Aviortheking",
"license": "MIT",
"main": "./dist/ObjectUtil.js",
"types": "./dist/ObjectUtil.d.ts",
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/jest": "^26.0.10",
"jest": "^26.4.2",
"parcel": "^1.12.4",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"scripts": {
"prepublishOnly": "yarn build",
"build": "parcel build src/index.ts --out-file browser.js --experimental-scope-hoisting && tsc",
"test": "jest --coverage"
}
}