{ "name": "@react-hookz/deep-equal", "version": "1.0.4", "description": "Fast deep equal comparator", "keywords": [ "deep", "deep-equal", "fast", "react", "es6" ], "license": "MIT", "repository": { "type": "git", "url": "https://github.com/react-hookz/deep-equal.git" }, "bugs": { "url": "https://github.com/react-hookz/deep-equal/issues" }, "publishConfig": { "access": "public" }, "files": [ "cjs", "esm", "esnext" ], "main": "cjs/index.js", "esnext": "esnext/index.js", "types": "cjs/index.d.ts", "module": "esm/index.js", "sideEffects": false, "devDependencies": { "@commitlint/cli": "^17.0.2", "@commitlint/config-conventional": "^17.3.0", "@commitlint/cz-commitlint": "^17.0.3", "@jamesacarr/eslint-formatter-github-actions": "^0.1.0", "@jamesacarr/jest-reporter-github-actions": "^0.0.4", "@react-hookz/eslint-config": "^1.6.1", "@semantic-release/changelog": "^6.0.2", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^8.0.7", "@types/jest": "^28.1.8", "commitizen": "^4.2.6", "commitlint": "^17.3.0", "concurrently": "^7.6.0", "husky": "^8.0.2", "jest": "^28.1.3", "jest-environment-jsdom": "^29.3.1", "lint-staged": "^13.1.0", "semantic-release": "^19.0.5", "ts-jest": "^28.0.8", "ttypescript": "^1.5.15", "typescript": "^4.8.4", "yarn": "^1.22.19" }, "scripts": { "prepare": "husky install", "commit": "git-cz", "benchmark": "yarn build && cd ./benchmark && yarn && yarn benchmark", "build": "yarn build:cleanup && concurrently yarn:build:cjs yarn:build:esm yarn:build:esnext --kill-others-on-fail", "build:cleanup": "rimraf ./cjs ./esm ./esnext ./types", "build:cjs": "ttsc -p ./tsconfig.build.json --module CommonJS --target ES5 --outDir ./cjs", "build:esm": "ttsc -p ./tsconfig.build.json --module ES6 --target ES5 --outDir ./esm", "build:esnext": "ttsc -p ./tsconfig.build.json --module ESNext --target ESNext --outDir ./esnext", "lint": "eslint . --ext .js,.ts", "lint:fix": "yarn lint --fix", "test": "jest", "test:coverage": "yarn test --coverage" }, "config": { "commitizen": { "path": "@commitlint/cz-commitlint" } }, "lint-staged": { "*.js": "yarn lint:fix" }, "release": { "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", "@semantic-release/changelog", "@semantic-release/npm", "@semantic-release/git", "@semantic-release/github" ] } }