-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
39 lines (39 loc) · 907 Bytes
/
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
{
"name": "fast-folder-size",
"version": "2.4.0",
"description": "Node CLI or module to calculate folder size",
"main": "index.js",
"bin": {
"fast-folder-size": "cli.js"
},
"types": "types/index.d.ts",
"author": "Simone Busoli <[email protected]>",
"scripts": {
"test": "tap && tsd",
"postinstall": "node get-sysinternals-du.js",
"lint": "eslint ."
},
"keywords": [
"fast",
"folder",
"size"
],
"repository": {
"url": "https://github.com/simoneb/fast-folder-size.git"
},
"license": "AWISC",
"dependencies": {
"decompress": "^4.2.1",
"https-proxy-agent": "^7.0.0"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@types/tap": "^15.0.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"tap": "^16.3.4",
"tsd": "^0.31.2"
}
}