UNPKG

deep-object-assign-with-reduce

Version:

Minimalist deep merging of Objects with the same function signature as Object.assign()

55 lines (54 loc) 1.67 kB
{ "name": "deep-object-assign-with-reduce", "version": "3.0.2", "description": "Minimalist deep merging of Objects with the same function signature as Object.assign()", "main": "dist/deep-object-assign.umd.js", "module": "dist/deep-object-assign.esm.js", "scripts": { "build": "rm -rf dist && rollup --config", "prepare": "npm build", "test": "jest", "patch": "npm version patch && npm publish && git push --tags && git push", "minor": "npm version minor && npm publish && git push --tags && git push", "major": "npm version major && npm publish && git push --tags && git push", "npm-publish": "npm publish && git push && git push --tags", "bump": "! npm outdated && npm update && npm audit fix && npm test || echo 'Package up to date.'" }, "repository": { "type": "git", "url": "git+https://github.com/davidcalhoun/deep-object-assign-with-reduce.git" }, "browser": "dist/deep-object-assign.umd.js", "type": "module", "engines": { "node": ">=13" }, "keywords": [ "object", "assign", "object.assign", "merge", "combine", "objects", "defaults", "deep", "reduce", "options", "defaults" ], "author": "David Calhoun", "license": "MIT", "bugs": { "url": "https://github.com/davidcalhoun/deep-object-assign-with-reduce/issues" }, "homepage": "https://github.com/davidcalhoun/deep-object-assign-with-reduce#readme", "devDependencies": { "@babel/cli": "^7.12.1", "@babel/core": "^7.12.3", "@babel/preset-env": "^7.12.1", "jest": "^26.6.1", "prettier": "^2.1.2", "rollup": "^2.33.0", "rollup-plugin-babel": "^4.4.0" } }