-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.12 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
{
"name": "fs-magic",
"version": "2.1.3",
"author": "Andi Dittrich (https://andidittrich.com)",
"license": "MIT",
"homepage": "https://github.com/npkgz/fs-magic",
"bugs": "https://github.com/npkgz/fs-magic/issues",
"repository": "npkgz/fs-magic",
"description": "An extended, promisified fs drop-in-replacement for Node.js >=7.6",
"keywords": [
"fs",
"mkdir",
"mkdirp",
"rmrf",
"scandir",
"recursive",
"utilities",
"copy",
"await",
"async",
"promise",
"isFile",
"isDirectory",
"isSymlink",
"untar",
"untgz",
"gzip",
"ungzip",
"sha256file",
"sha512file",
"sha1file"
],
"files": [
"lib",
"CHANGED.md",
"LICENSE.md",
"README.md"
],
"main": "fs-magic.js",
"bin": {},
"preferGlobal": false,
"engines": {
"node": ">=7.6"
},
"dependencies": {
"async-magic": "^1.2.1",
"tar-stream": "^2.2.0"
},
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-aenondynamics": "^0.2.0",
"mocha": "^8.4.0",
"node-fetch": "^2.6.1"
},
"scripts": {
"test": "eslint lib/**.js; mocha"
}
}