UNPKG

1.63 kBJSONView Raw
1{
2 "name": "fs-extra",
3 "version": "6.0.1",
4 "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.",
5 "homepage": "https://github.com/jprichardson/node-fs-extra",
6 "repository": {
7 "type": "git",
8 "url": "https://github.com/jprichardson/node-fs-extra"
9 },
10 "keywords": [
11 "fs",
12 "file",
13 "file system",
14 "copy",
15 "directory",
16 "extra",
17 "mkdirp",
18 "mkdir",
19 "mkdirs",
20 "recursive",
21 "json",
22 "read",
23 "write",
24 "extra",
25 "delete",
26 "remove",
27 "touch",
28 "create",
29 "text",
30 "output",
31 "move"
32 ],
33 "author": "JP Richardson <jprichardson@gmail.com>",
34 "license": "MIT",
35 "dependencies": {
36 "graceful-fs": "^4.1.2",
37 "jsonfile": "^4.0.0",
38 "universalify": "^0.1.0"
39 },
40 "devDependencies": {
41 "coveralls": "^3.0.0",
42 "istanbul": "^0.4.5",
43 "klaw": "^2.1.1",
44 "klaw-sync": "^3.0.2",
45 "minimist": "^1.1.1",
46 "mocha": "^5.0.5",
47 "proxyquire": "^2.0.1",
48 "read-dir-files": "^0.1.1",
49 "rimraf": "^2.2.8",
50 "secure-random": "^1.1.1",
51 "semver": "^5.3.0",
52 "standard": "^11.0.1",
53 "standard-markdown": "^4.0.1"
54 },
55 "main": "./lib/index.js",
56 "scripts": {
57 "full-ci": "npm run lint && npm run coverage",
58 "coverage": "istanbul cover -i 'lib/**' -x '**/__tests__/**' test.js",
59 "coveralls": "coveralls < coverage/lcov.info",
60 "lint": "standard && standard-markdown",
61 "test-find": "find ./lib/**/__tests__ -name *.test.js | xargs mocha",
62 "test": "npm run lint && npm run unit",
63 "unit": "node test.js"
64 }
65}