{
  "type": "module",
  "name": "deep-clone",
  "version": "4.0.0",
  "description": "Deep cloning of Arrays and plain Objects.",
  "main": "./dist/cjs/deep-clone.js",
  "module": "./dist/esm/deep-clone.js",
  "exports": {
    ".": {
      "import": "./dist/esm/deep-clone.js",
      "require": "./dist/cjs/deep-clone.js"
    }
  },
  "types": "./dist/deep-clone.d.ts",
  "files": [
    "dist/"
  ],
  "scripts": {
    "lint": "eslint .",
    "prelint": "tsc --noEmit",
    "test": "mocha",
    "pretest": "tsc --noEmit",
    "cover": "c8 -r text -r html -r lcov mocha",
    "tdd": "mocha -w -p",
    "prebuild": "rimraf dist/",
    "build": "rollup -c --configPlugin typescript && tsc -p tsconfig.prod.json",
    "prepack": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/thebearingedge/deep-clone.git"
  },
  "keywords": [
    "clone"
  ],
  "author": "Tim Davis <contact@timdav.is>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/thebearingedge/deep-clone/issues"
  },
  "homepage": "https://github.com/thebearingedge/deep-clone#readme",
  "devDependencies": {
    "@esbuild-kit/esm-loader": "^2.5.5",
    "@rollup/plugin-typescript": "^11.0.0",
    "@types/chai": "^4.3.4",
    "@types/lodash": "^4.14.192",
    "@types/mocha": "^10.0.1",
    "c8": "^7.13.0",
    "chai": "^4.3.7",
    "eslint": "^8.36.0",
    "eslint-config-standard-with-typescript": "^34.0.1",
    "lodash": "^4.17.21",
    "mocha": "^10.2.0",
    "rimraf": "^4.4.1",
    "rollup": "^3.20.2",
    "typescript": "^5.0.2"
  }
}
