-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.3 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "dirent",
"version": "2.0.2",
"description": "Virtual file class. Extends the native fs.Dirent class with methods to simplify path handling. Similar to Vinyl, but lightweight.",
"license": "MIT",
"repository": "folder/dirent",
"homepage": "https://github.com/folder/dirent",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "mocha",
"test:ci": "npm run test"
},
"files": [
"index.js",
"utils.js"
],
"keywords": [
"dir",
"directory entity",
"directory",
"dirent",
"entity",
"file system",
"file",
"file-system",
"fs",
"fs.Dirent",
"path",
"readdir",
"readdirsync",
"vfile",
"vfs",
"vinyl",
"virtual file"
],
"dependencies": {
"clone-deep": "^4.0.1"
},
"devDependencies": {
"cloneable-readable": "^2.1.0",
"concat-stream": "^2.0.0",
"from2": "^2.3.0",
"gulp-format-md": "^2.0.0",
"mocha": "^8.3.2",
"pump": "^3.0.0"
},
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"related": {
"links": [
"@folder/readdir",
"@folder/xdg"
]
},
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
}
}
}