{
  "name": "clonefile",
  "version": "3.8.4",
  "description": "Clone file into multiple locations",
  "main": "./src/clonefile.cjs",
  "bin": {
    "clonefile": "index.cjs"
  },
  "scripts": {
    "demo1": "node index.cjs my-file1.txt file-2.md somewhere/else/ttt.txt somewhere1/ my-dir/ --target simple.txt --recursive",
    "build:lib": "to-esm ./src/clonefile.cjs --output ./src --update-all --skipEsmResolution --target esm",
    "build:esm": "to-esm ./index.cjs --output ./ --skipEsmResolution --target esm",
    "build:test": "to-esm ./test/integration.specs.cjs --output ./test --skipEsmResolution --target esm",
    "build:all": "npm run build:lib && npm run build:esm && npm run build:test",
    "test": "npm run build:all && nyc --reporter=lcov --reporter=text-summary mocha --exit --sort --exclude test/lib",
    "test2": "cross-env ANALOGGER_TEST_PORT=12000 ANALOGGER_LOG_FILE=reporter.log mocha --no-exit --sort --exclude test/lib --reporter ./node_modules/remote-logging/reporter.cjs"
  },
  "keywords": [
    "productivity",
    "ci"
  ],
  "bugs": {
    "url": "https://github.com/thimpat/clonefile/issues",
    "email": "thimpat@gmail.com"
  },
  "homepage": "https://www.npmjs.com/package/clonefile",
  "repository": {
    "type": "git",
    "url": "https://github.com/thimpat/clonefile.git"
  },
  "author": "Patrice Thimothee",
  "license": "MIT",
  "devDependencies": {
    "chai": "^4.3.6",
    "chai-files": "^1.4.0",
    "cross-env": "^7.0.3",
    "eslint": "^8.17.0",
    "mocha": "^10.2.0",
    "nyc": "^15.1.0",
    "remote-logging": "^1.4.4",
    "shelljs": "^0.8.5",
    "to-esm": "^2.26.5"
  },
  "dependencies": {
    "@thimpat/libutils": "^1.13.4",
    "@types/node": "^18.11.18",
    "cli-progress": "^3.11.2",
    "glob": "^11.0.1",
    "minimist": "^1.2.6",
    "pageterm": "^1.0.2",
    "to-ansi": "^1.4.3"
  },
  "type": "module",
  "exports": {
    "require": "./src/clonefile.cjs",
    "import": "./src/clonefile.mjs"
  },
  "typings": "./index.d.cts"
}
