-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 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
{
"name": "directory-stat",
"description": "Composable directory statistics fetcher where \"fs\" is insufficient",
"license": "MIT",
"author": "Luong Quang Manh @lqmanh",
"version": "1.0.3",
"files": [
"/*.js",
"/bin",
"/src"
],
"main": "src/index.js",
"bin": {
"directory-stat": "./bin/run"
},
"scripts": {},
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/plugin-help": "^3.2.0",
"fast-glob": "^3.0.4"
},
"optionalDependencies": {
"@oclif/plugin-warn-if-update-available": "^1.7.0"
},
"devDependencies": {
"eslint": "^7.4.0"
},
"engines": {
"node": ">=8.0.0"
},
"repository": "github:lqmanh/directory-stat",
"homepage": "https://github.com/lqmanh/directory-stat",
"bugs": "https://github.com/lqmanh/directory-stat/issues",
"keywords": [
"dir",
"directory",
"stat",
"statistics"
],
"oclif": {
"bin": "directory-stat",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 7
}
}
}