{
  "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": "^13.1.3",
    "@rollup/plugin-typescript": "^8.3.1",
    "@types/eslint": "^8.4.1",
    "@types/jest": "^27.4.1",
    "@types/lodash": "^4.14.181",
    "@types/node": "^17.0.23",
    "@types/ramda": "^0.28.7",
    "@types/react": "^17.0.43",
    "@typescript-eslint/eslint-plugin": "^5.18.0",
    "@typescript-eslint/parser": "^5.18.0",
    "benchee": "^1.0.3",
    "cli-table3": "^0.6.1",
    "clone": "^2.1.2",
    "deepclone": "^1.0.2",
    "eslint": "^8.12.0",
    "eslint-webpack-plugin": "^3.1.1",
    "fast-clone": "^1.5.3",
    "html-webpack-plugin": "^5.5.0",
    "in-publish": "^2.0.1",
    "jest": "^27.5.1",
    "lodash": "^4.17.11",
    "nyc": "^15.1.0",
    "ramda": "^0.28.0",
    "react": "^18.0.0",
    "react-dom": "^18.0.0",
    "release-it": "^14.14.0",
    "rollup": "^2.70.1",
    "rollup-plugin-terser": "^7.0.2",
    "ts-jest": "^27.1.4",
    "ts-loader": "^9.2.8",
    "typescript": "^4.6.3",
    "webpack": "^5.71.0",
    "webpack-cli": "^4.9.2",
    "webpack-dev-server": "^4.8.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.3"
}
