-
Notifications
You must be signed in to change notification settings - Fork 774
/
package.json
executable file
·55 lines (55 loc) · 1.11 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
{
"name": "fs-extra",
"version": "0.13.0",
"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.",
"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 <[email protected]>",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jprichardson/node-fs-extra/raw/master/LICENSE"
}
],
"dependencies": {
"ncp": "^1.0.1",
"jsonfile": "^2.0.0",
"rimraf": "^2.2.8"
},
"devDependencies": {
"mocha": "*",
"testutil": "^0.7.0",
"secure-random": "^1.1.1",
"mock-fs": "^2.3.2"
},
"main": "./lib/index",
"scripts": {
"test": "mocha test"
}
}