{
  "name": "@gilbarbara/deep-equal",
  "version": "0.1.2",
  "description": "Tiny deep equal comparator",
  "author": "Gil Barbara <gilbarbara@gmail.com>",
  "repository": {
    "type": "git",
    "url": "git://github.com/gilbarbara/deep-equal.git"
  },
  "bugs": {
    "url": "https://github.com/gilbarbara/deep-equal/issues"
  },
  "homepage": "https://github.com/gilbarbara/deep-equal#readme",
  "main": "lib/index.js",
  "module": "esm/index.js",
  "files": [
    "esm",
    "lib",
    "src"
  ],
  "types": "lib",
  "sideEffects": false,
  "license": "MIT",
  "keywords": [
    "equal",
    "deep-equal",
    "typescript"
  ],
  "devDependencies": {
    "@gilbarbara/eslint-config": "^0.3.6",
    "@gilbarbara/prettier-config": "^0.1.0",
    "@gilbarbara/tsconfig": "^0.1.1",
    "@size-limit/preset-small-lib": "^8.1.0",
    "@types/jest": "^29.2.0",
    "@types/node": "^18.11.2",
    "@types/node-fetch": "^3.0.2",
    "@types/react": "^18.0.21",
    "@types/react-dom": "^18.0.6",
    "@types/react-test-renderer": "^18.0.0",
    "del-cli": "^5.0.0",
    "husky": "^8.0.1",
    "is-ci-cli": "^2.2.0",
    "jest": "^29.2.1",
    "jest-date-mock": "^1.0.8",
    "jest-environment-jsdom": "^29.2.1",
    "jest-extended": "^3.1.0",
    "jest-watch-typeahead": "^2.2.0",
    "react": "^18.2.0",
    "react-test-renderer": "^18.2.0",
    "repo-tools": "^0.2.2",
    "size-limit": "^8.1.0",
    "ts-jest": "^29.0.3",
    "ts-node": "^10.9.1",
    "typescript": "^4.8.4"
  },
  "scripts": {
    "build": "npm run clean && npm run build:cjs && npm run build:esm",
    "build:cjs": "tsc",
    "build:esm": "tsc -m es6 --outDir esm",
    "clean": "del lib/* && del esm/*",
    "watch:cjs": "npm run build:cjs -- -w",
    "watch:esm": "npm run build:esm -- -w",
    "test": "is-ci \"test:coverage\" \"test:watch\"",
    "test:coverage": "jest --coverage --bail",
    "test:watch": "jest --watchAll --verbose",
    "lint": "eslint --fix src test",
    "typecheck": "tsc --noEmit",
    "format": "prettier \"**/*.{css,graphql,js,json,jsx,less,md,mdx,scss,ts,tsx,yaml,yml}\" --write",
    "validate": "npm run lint && npm run typecheck && npm run test:coverage && npm run build && npm run size",
    "size": "size-limit",
    "prepublishOnly": "npm run validate",
    "prepare": "husky install"
  },
  "eslintConfig": {
    "extends": [
      "@gilbarbara/eslint-config"
    ]
  },
  "prettier": "@gilbarbara/prettier-config",
  "size-limit": [
    {
      "name": "lib",
      "path": "./lib/index.js",
      "limit": "1.2 kB"
    },
    {
      "name": "esm",
      "path": "./esm/index.js",
      "limit": "1 kB"
    }
  ]
}
