{
  "author": "tony_quetano@planttheidea.com",
  "contributors": [
    "Dariusz Rzepka <rzepkadarek@gmail.com>"
  ],
  "browser": "dist/fast-copy.js",
  "bugs": {
    "url": "https://github.com/planttheidea/fast-copy/issues"
  },
  "description": "A blazing fast deep object copier",
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^14.1.0",
    "@rollup/plugin-typescript": "^8.5.0",
    "@types/eslint": "^8.4.6",
    "@types/jest": "^29.0.3",
    "@types/lodash": "^4.14.185",
    "@types/node": "^18.7.18",
    "@types/ramda": "^0.28.15",
    "@types/react": "^18.0.20",
    "@typescript-eslint/eslint-plugin": "^5.38.0",
    "@typescript-eslint/parser": "^5.38.0",
    "benchee": "^1.0.3",
    "cli-table3": "^0.6.3",
    "clone": "^2.1.2",
    "deepclone": "^1.0.2",
    "eslint": "^8.23.1",
    "eslint-webpack-plugin": "^3.2.0",
    "fast-clone": "^1.5.3",
    "html-webpack-plugin": "^5.5.0",
    "in-publish": "^2.0.1",
    "jest": "^29.0.3",
    "lodash": "^4.17.11",
    "nyc": "^15.1.0",
    "ramda": "^0.28.0",
    "react": "^18.2.0",
    "react-dom": "^18.2.0",
    "release-it": "15.4.1",
    "rollup": "^2.79.1",
    "rollup-plugin-terser": "^7.0.2",
    "ts-jest": "^29.0.1",
    "ts-loader": "^9.4.1",
    "typescript": "^4.8.3",
    "webpack": "^5.74.0",
    "webpack-cli": "^4.10.0",
    "webpack-dev-server": "^4.11.1"
  },
  "homepage": "https://github.com/planttheidea/fast-copy#readme",
  "keywords": [
    "clone",
    "deep",
    "copy",
    "fast"
  ],
  "license": "MIT",
  "main": "dist/fast-copy.cjs.js",
  "module": "dist/fast-copy.esm.js",
  "name": "fast-copy",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/planttheidea/fast-copy.git"
  },
  "scripts": {
    "benchmark": "npm run build && node benchmark/index.js",
    "build": "NODE_ENV=production rollup -c",
    "clean": "rimraf dist",
    "dev": "NODE_ENV=development webpack-dev-server --config=webpack/webpack.config.js",
    "dist": "npm run clean && npm run build",
    "lint": "eslint 'src/*.ts'",
    "lint:fix": "npm run lint -- --fix",
    "prepublishOnly": "npm run lint && npm run typecheck && npm run test && npm run dist",
    "release": "release-it",
    "release:beta": "release-it --config=.release-it.beta.json",
    "release:dry": "release-it --dry-run",
    "start": "npm run dev",
    "test": "NODE_PATH=. jest",
    "test:coverage": "npm run test -- --coverage",
    "test:watch": "npm run test -- --watch",
    "typecheck": "tsc src/*.ts --noEmit"
  },
  "types": "index.d.ts",
  "version": "2.1.7"
}
