| 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
63
64
65
66
67
68
 | | { |  |   "name": "fs-extra", |  |   "version": "7.0.1", |  |   "description": "fs-extra contains methods that aren't included in the vanilla Node.js fs package. Such as mkdir -p, cp -r, and rm -rf.", |  |   "engines": { |  |     "node": ">=6 <7 || >=8" |  |   }, |  |   "homepage": "https://github.com/jprichardson/node-fs-extra", |  |   "repository": { |  |     "type": "git", |  |     "url": "https://github.com/jprichardson/node-fs-extra" |  |   }, |  |   "keywords": [ |  |     "fs", |  |     "file", |  |     "file system", |  |     "copy", |  |     "directory", |  |     "extra", |  |     "mkdirp", |  |     "mkdir", |  |     "mkdirs", |  |     "recursive", |  |     "json", |  |     "read", |  |     "write", |  |     "extra", |  |     "delete", |  |     "remove", |  |     "touch", |  |     "create", |  |     "text", |  |     "output", |  |     "move" |  |   ], |  |   "author": "JP Richardson <jprichardson@gmail.com>", |  |   "license": "MIT", |  |   "dependencies": { |  |     "graceful-fs": "^4.1.2", |  |     "jsonfile": "^4.0.0", |  |     "universalify": "^0.1.0" |  |   }, |  |   "devDependencies": { |  |     "coveralls": "^3.0.0", |  |     "istanbul": "^0.4.5", |  |     "klaw": "^2.1.1", |  |     "klaw-sync": "^3.0.2", |  |     "minimist": "^1.1.1", |  |     "mocha": "^5.0.5", |  |     "proxyquire": "^2.0.1", |  |     "read-dir-files": "^0.1.1", |  |     "rimraf": "^2.2.8", |  |     "secure-random": "^1.1.1", |  |     "semver": "^5.3.0", |  |     "standard": "^11.0.1", |  |     "standard-markdown": "^4.0.1" |  |   }, |  |   "main": "./lib/index.js", |  |   "scripts": { |  |     "full-ci": "npm run lint && npm run coverage", |  |     "coverage": "istanbul cover -i 'lib/**' -x '**/__tests__/**' test.js", |  |     "coveralls": "coveralls < coverage/lcov.info", |  |     "lint": "standard", |  |     "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha", |  |     "test": "npm run lint && npm run unit", |  |     "unit": "node test.js" |  |   } |  | } | 
 |