UNPKG

merge-dirs

Version:

node module to synchronously and recursively merge files from one folder to another

50 lines (49 loc) 1.21 kB
{ "name": "merge-dirs", "version": "0.2.1", "description": "node module to synchronously and recursively merge files from one folder to another", "main": "dist/index.js", "bin": "dist/bin.js", "scripts": { "clean": "rimraf test/c", "prepublish": "babel src --out-dir dist", "mocha": "mocha --reporter spec --timeout 300 --require should --growl --compilers js:babel-register test/test.js", "test": "npm run clean && npm run mocha" }, "repository": { "type": "git", "url": "https://github.com/binocarlos/merge-dirs.git" }, "keywords": [ "merge", "folder", "directory", "recursive" ], "babel": { "presets": [ "es2015", "stage-0" ] }, "author": "Kai Davenport", "license": "MIT", "bugs": { "url": "https://github.com/binocarlos/merge-dirs/issues" }, "dependencies": { "inquirer": "^0.11.0", "minimist": "^1.2.0", "node-fs": "~0.1.7", "path": "^0.12.7" }, "devDependencies": { "babel-cli": "^6.3.17", "babel-preset-es2015": "^6.3.13", "babel-preset-stage-0": "^6.3.13", "babel-register": "^6.3.13", "mocha": "~2.3.4", "rimraf": "^2.4.4", "should": "~8.0.1" } }