34 lines
753 B
JSON
34 lines
753 B
JSON
{
|
|
"name": "get-folder-size",
|
|
"version": "2.0.1",
|
|
"description": "Get the size of a folder by recursively iterating through all its sub(files && folders).",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"get-folder-size": "bin/get-folder-size"
|
|
},
|
|
"dependencies": {
|
|
"gar": "^1.0.4",
|
|
"tiny-each-async": "2.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^0.10.1",
|
|
"mocha": "^5.2.0",
|
|
"proxyquire": "^1.7.3",
|
|
"should": "^7.1.1"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"precommit": "npm test"
|
|
},
|
|
"keywords": [
|
|
"folder",
|
|
"size"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/alessioalex/get-folder-size.git"
|
|
},
|
|
"author": "Alexandru Vladutu <alexandru.vladutu@gmail.com>",
|
|
"license": "MIT"
|
|
}
|