UNPKG

copy-folder-util

Version:

Recursively copy files from one folder to another folder (CLI tool designed for use in npm package.json scripts)

85 lines (84 loc) 2.16 kB
{ "name": "copy-folder-util", "version": "1.1.5", "description": "Recursively copy files from one folder to another folder (CLI tool designed for use in npm package.json scripts)", "license": "MIT", "type": "module", "module": "dist/copy-folder.js", "types": "dist/copy-folder.d.ts", "exports": "./dist/copy-folder.js", "files": [ "dist" ], "bin": { "copy-folder": "bin/cli.js", "copy-folder-util": "bin/cli.js" }, "repository": { "type": "git", "url": "git+https://github.com/center-key/copy-folder-util.git" }, "homepage": "https://github.com/center-key/copy-folder-util", "bugs": "https://github.com/center-key/copy-folder-util/issues", "docs": "https://github.com/center-key/copy-folder-util#readme", "author": "Center Key (https://centerkey.com)", "keywords": [ "cli", "copy", "cp", "dir", "directory", "files", "folder", "recursive", "scripts" ], "jshintConfig": { "esversion": 11, "strict": "implied", "eqeqeq": true, "undef": true, "unused": true, "varstmt": true, "node": true, "mocha": true }, "runScriptsConfig": { "clean": [ "rimraf build dist spec/fixtures/target" ], "lint": [ "jshint . --exclude-path .gitignore", "eslint --max-warnings 0" ], "build": [ "tsc", "add-dist-header build dist" ] }, "scripts": { "pretest": "run-scripts clean lint build", "test": "mocha spec/*.spec.js" }, "dependencies": { "chalk": "~5.4", "cli-argv-util": "~1.2", "fancy-log": "~2.0", "slash": "~5.1" }, "devDependencies": { "@eslint/js": "~9.21", "@types/fancy-log": "~2.0", "@types/node": "~22.13", "add-dist-header": "~1.4", "assert-deep-strict-equal": "~1.2", "copy-file-util": "~1.2", "eslint": "~9.21", "jshint": "~2.13", "mocha": "~11.1", "rimraf": "~6.0", "run-scripts-util": "~1.3", "typescript": "~5.8", "typescript-eslint": "~8.26" } }