UNPKG

mixme

Version:

A library for recursively merging JavaScript objects

101 lines (100 loc) 2.49 kB
{ "name": "mixme", "description": "A library for recursively merging JavaScript objects", "version": "2.0.2", "author": "David Worms <david@adaltas.com> (https://www.adaltas.com)", "contributors": [ "Paul Farault <paul.farault@gmail.com>" ], "devDependencies": { "@commitlint/cli": "^19.6.1", "@commitlint/config-conventional": "^19.6.0", "@eslint/js": "^9.19.0", "@types/chai": "^5.0.1", "@types/eslint__js": "^8.42.3", "@types/mocha": "^10.0.10", "@types/node": "^22.10.10", "chai": "^5.1.2", "coffeescript": "^2.7.0", "eslint": "^9.19.0", "eslint-config-prettier": "^10.0.1", "eslint-plugin-mocha": "^10.5.0", "eslint-plugin-prettier": "^5.2.3", "husky": "^9.1.7", "lint-staged": "^15.4.3", "mocha": "^11.1.0", "prettier": "^3.4.2", "standard-version": "^9.5.0", "tsup": "^8.3.6", "tsx": "^4.19.2", "typescript": "^5.7.3", "typescript-eslint": "^8.22.0" }, "engines": { "node": ">= 8.0.0" }, "homepage": "https://github.com/adaltas/node-mixme", "bugs": { "url": "https://github.com/adaltas/node-mixme/issues" }, "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts", "require": "./dist/index.cjs" } }, "keywords": [ "clone", "copy", "deep", "extend", "merge", "objects", "recursive" ], "files": [ "dist" ], "license": "MIT", "lint-staged": { "*.js": "npm run lint:check", "*.md": "prettier -w" }, "main": "./dist/cjs/index.cjs", "module": "dist/esm/index.js", "mocha": { "import": "tsx", "inline-diffs": true, "recursive": true, "reporter": "spec", "throw-deprecation": true, "timeout": 40000 }, "repository": { "type": "git", "url": "https://github.com/adaltas/node-mixme.git" }, "scripts": { "build": "tsup-node", "lint:check": "eslint", "lint:fix": "eslint --fix", "lint:staged": "npx lint-staged", "test": "mocha 'test/**/*.{js,ts}'", "release": "standard-version", "release:minor": "standard-version --release-as minor", "release:patch": "standard-version --release-as patch", "release:major": "standard-version --release-as major", "postrelease": "git push --follow-tags origin master", "prepare": "husky" }, "type": "module", "types": "lib/index.d.ts", "typesVersions": { "*": { ".": [ "dist/esm/index.d.ts" ] } } }