objtools
Version:
Various utility functions for working with object, including object merging, inheritance, deep copying, etc.
43 lines (42 loc) • 1.01 kB
JSON
{
"name": "objtools",
"version": "4.0.0",
"description": "Various utility functions for working with object, including object merging, inheritance, deep copying, etc.",
"main": "./dist/lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/CrispyConductor/objtools.git"
},
"type": "module",
"keywords": [
"object",
"merge",
"extend",
"clone",
"copy",
"mask",
"filter"
],
"scripts": {
"test": "node ./node_modules/.bin/mocha -R spec --node-option enable-source-maps ./dist/test",
"bench": "node ./dist/bench/index.js",
"build": "tsc"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/lodash": "^4.14.181",
"@types/mocha": "^9.1.0",
"@types/node": "^14.18.12",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"spectrophotometer": "^4.0.0",
"typescript": "^4.6.3"
},
"license": "Apache-2.0",
"engines": {
"node": ">= 14.0.0"
}
}