empty-dir-cli
Version:
npm module to have command to ensure there is a dir and is empty
40 lines (39 loc) • 918 B
JSON
{
"name": "empty-dir-cli",
"version": "1.0.2",
"description": "npm module to have command to ensure there is a dir and is empty",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "no tests yet",
"start": "node ./lib/index.js",
"build-start": "npm run build && npm start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timnederhoff/node-empty-dir.git"
},
"keywords": [
"dir",
"directory",
"empty",
"create"
],
"author": "Tim Nederhoff",
"license": "MIT",
"bugs": {
"url": "https://github.com/timnederhoff/node-empty-dir/issues"
},
"homepage": "https://github.com/timnederhoff/node-empty-dir#readme",
"devDependencies": {
"@types/node": "^8.0.53",
"typescript": "^2.6.1"
},
"dependencies": {
"@types/fs-extra": "^4.0.5",
"fs-extra": "^4.0.2"
},
"bin": {
"empty-dir": "./lib/index.js"
}
}