{ "name": "extract-files", "version": "13.0.0", "description": "A function to recursively extract files and their object paths within a value, replacing them with null in a deep clone without mutating the original value. FileList instances are treated as File instance arrays. Files are typically File and Blob instances.", "license": "MIT", "author": { "name": "Jayden Seric", "email": "me@jaydenseric.com", "url": "https://jaydenseric.com" }, "repository": "github:jaydenseric/extract-files", "homepage": "https://github.com/jaydenseric/extract-files#readme", "bugs": "https://github.com/jaydenseric/extract-files/issues", "funding": "https://github.com/sponsors/jaydenseric", "keywords": [ "extract", "file", "files", "File", "FileList", "Blob", "esm", "mjs" ], "files": [ "extractFiles.mjs", "isExtractableFile.mjs" ], "sideEffects": false, "exports": { "./extractFiles.mjs": "./extractFiles.mjs", "./isExtractableFile.mjs": "./isExtractableFile.mjs", "./package.json": "./package.json" }, "engines": { "node": "^14.17.0 || ^16.0.0 || >= 18.0.0" }, "browserslist": "Node 14.17 - 15 and Node < 15, Node 16 - 17 and Node < 17, Node >= 18, > 0.5%, not OperaMini all, not dead", "dependencies": { "is-plain-obj": "^4.1.0" }, "devDependencies": { "@types/node": "^18.7.13", "coverage-node": "^8.0.0", "esbuild": "^0.15.5", "eslint": "^8.23.0", "eslint-plugin-simple-import-sort": "^7.0.0", "gzip-size": "^7.0.0", "prettier": "^2.7.1", "revertable-globals": "^4.0.0", "test-director": "^10.0.0", "typescript": "^4.8.2" }, "scripts": { "eslint": "eslint .", "prettier": "prettier -c .", "types": "tsc -p jsconfig.json", "tests": "coverage-node test.mjs", "test": "npm run eslint && npm run prettier && npm run types && npm run tests", "prepublishOnly": "npm test" } }