CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json74 linesDownload Raw Back to rfdc
1{2  "name": "rfdc",3  "version": "1.4.1",4  "description": "Really Fast Deep Clone",5  "main": "index.js",6  "exports": {7    ".": "./index.js",8    "./default": "./default.js"9  },10  "scripts": {11    "test": "tap -R min test && npm run lint",12    "bench": "node benchmark",13    "lint": "standard --fix",14    "cov": "tap --100 test",15    "cov-ui": "tap --coverage-report=html test",16    "ci": "standard && tap --100 --coverage-report=text-lcov test | codecov --pipe"17  },18  "keywords": [19    "object",20    "obj",21    "properties",22    "clone",23    "copy",24    "deep",25    "recursive",26    "key",27    "keys",28    "values",29    "prop",30    "deep-clone",31    "deepclone",32    "deep-copy",33    "deepcopy",34    "fast",35    "performance",36    "performant",37    "fastclone",38    "fastcopy",39    "fast-clone",40    "fast-deep-clone",41    "fast-copy",42    "fast-deep-copy"43  ],44  "author": "David Mark Clements <david.clements@nearform.com>",45  "license": "MIT",46  "devDependencies": {47    "clone-deep": "^4.0.1",48    "codecov": "^3.4.0",49    "deep-copy": "^1.4.2",50    "fast-copy": "^1.2.1",51    "fastbench": "^1.0.1",52    "fastest-json-copy": "^1.0.1",53    "lodash.clonedeep": "^4.5.0",54    "nano-copy": "^0.1.0",55    "plain-object-clone": "^1.1.0",56    "ramda": "^0.27.1",57    "standard": "^17.0.0",58    "tap": "^12.0.1",59    "tsd": "^0.7.4"60  },61  "directories": {62    "test": "test"63  },64  "dependencies": {},65  "repository": {66    "type": "git",67    "url": "git+https://github.com/davidmarkclements/rfdc.git"68  },69  "bugs": {70    "url": "https://github.com/davidmarkclements/rfdc/issues"71  },72  "homepage": "https://github.com/davidmarkclements/rfdc#readme"73}74