clean-directory
Version:
A tiny module to clean a directory selecting which files or directories to keep.
47 lines (46 loc) • 1.43 kB
JSON
{
"name": "clean-directory",
"version": "1.0.0",
"description": "A tiny module to clean a directory selecting which files or directories to keep.",
"main": "clean-directory.js",
"license": "MIT",
"author": {
"name": "Leo Lozach",
"email": "leo.lozach@gmail.com",
"url": "https://github.com/Leelow"
},
"scripts": {
"test": "standard && node \"./node_modules/mocha/bin/_mocha\" --timeout 500 test.js",
"coverage": "standard && \"./node_modules/.bin/istanbul\" cover -x test.js ./node_modules/mocha/bin/_mocha -- --timeout 500 test.js",
"codacy": "istanbul cover -x test.js ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage"
},
"dependencies": {
"async": "^2.5.0",
"fs-extra": "^4.0.0",
"glob-ignore": "^1.0.2"
},
"devDependencies": {
"codacy-coverage": "^2.0.2",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"standard": "^10.0.2",
"mock-require": "^2.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leelow/clean-directory.git"
},
"bugs": {
"url": "https://github.com/Leelow/clean-directory/issues"
},
"homepage": "https://github.com/Leelow/clean-directory#readme",
"keywords": [
"clean",
"clear",
"empty",
"delete",
"remove",
"directory",
"folder"
]
}