dkopy
Version:
A library for deep cloning objects
74 lines (73 loc) • 1.81 kB
JSON
{
"name": "dkopy",
"version": "0.1.0",
"description": "A library for deep cloning objects",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"benchmark": "node benchmark/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoetheDady/dkopy.git"
},
"bugs": {
"url": "https://github.com/GoetheDady/dkopy/issues"
},
"homepage": "https://github.com/GoetheDady/dkopy#readme",
"author": "戈德斯文 <mrgoehte0126@gmail.com>",
"license": "MIT",
"type": "module",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"deep",
"clone",
"copy",
"object",
"dkopy",
"deepclone",
"deepcopy",
"clonedeep",
"typescript",
"performance",
"fast"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.17.14",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"benchmark": "^2.1.4",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"rfdc": "^1.4.1",
"rollup": "^4.6.1",
"rollup-plugin-delete": "^2.1.0",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.3.2"
}
}