-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
62 lines (62 loc) · 1.91 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"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": "[email protected]",
"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"
}
}