UNPKG

1.56 kBJSONView Raw
1{
2 "name": "fs-extra",
3 "version": "11.2.0",
4 "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as recursive mkdir, copy, and remove.",
5 "engines": {
6 "node": ">=14.14"
7 },
8 "homepage": "https://github.com/jprichardson/node-fs-extra",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/jprichardson/node-fs-extra"
12 },
13 "keywords": [
14 "fs",
15 "file",
16 "file system",
17 "copy",
18 "directory",
19 "extra",
20 "mkdirp",
21 "mkdir",
22 "mkdirs",
23 "recursive",
24 "json",
25 "read",
26 "write",
27 "extra",
28 "delete",
29 "remove",
30 "touch",
31 "create",
32 "text",
33 "output",
34 "move",
35 "promise"
36 ],
37 "author": "JP Richardson <jprichardson@gmail.com>",
38 "license": "MIT",
39 "dependencies": {
40 "graceful-fs": "^4.2.0",
41 "jsonfile": "^6.0.1",
42 "universalify": "^2.0.0"
43 },
44 "devDependencies": {
45 "klaw": "^2.1.1",
46 "klaw-sync": "^3.0.2",
47 "minimist": "^1.1.1",
48 "mocha": "^10.1.0",
49 "nyc": "^15.0.0",
50 "proxyquire": "^2.0.1",
51 "read-dir-files": "^0.1.1",
52 "standard": "^17.0.0"
53 },
54 "main": "./lib/index.js",
55 "exports": {
56 ".": "./lib/index.js",
57 "./esm": "./lib/esm.mjs"
58 },
59 "files": [
60 "lib/",
61 "!lib/**/__tests__/"
62 ],
63 "scripts": {
64 "lint": "standard",
65 "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
66 "test": "npm run lint && npm run unit && npm run unit-esm",
67 "unit": "nyc node test.js",
68 "unit-esm": "node test.mjs"
69 },
70 "sideEffects": false
71}