UNPKG

recursive-exec

Version:

Run a command on each file in a folder and its subfolders (CLI tool designed for use in npm package.json scripts)

89 lines (88 loc) 2.27 kB
{ "name": "recursive-exec", "version": "1.0.3", "description": "Run a command on each file in a folder and its subfolders (CLI tool designed for use in npm package.json scripts)", "license": "MIT", "type": "module", "module": "dist/recursive-exec.js", "types": "dist/recursive-exec.d.ts", "exports": "./dist/recursive-exec.js", "files": [ "dist" ], "bin": { "recursive-exec": "bin/cli.js" }, "repository": { "type": "git", "url": "git+https://github.com/center-key/recursive-exec.git" }, "homepage": "https://github.com/center-key/recursive-exec", "bugs": "https://github.com/center-key/recursive-exec/issues", "docs": "https://github.com/center-key/recursive-exec#readme", "author": "Center Key (https://centerkey.com)", "keywords": [ "build", "cli", "command", "find", "npm-scripts", "npm", "recursive", "scripts", "task" ], "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 --timeout 7000" }, "dependencies": { "chalk": "~5.4", "cli-argv-util": "~1.2", "fancy-log": "~2.0", "glob": "~11.0", "slash": "~5.1" }, "devDependencies": { "@eslint/js": "~9.25", "@types/fancy-log": "~2.0", "@types/node": "~22.14", "add-dist-header": "~1.4", "assert-deep-strict-equal": "~1.2", "copy-file-util": "~1.2", "csso-cli": "~4.0", "eslint": "~9.25", "jshint": "~2.13", "less": "~4.3", "make-dir-cli": "~4.0", "mocha": "~11.1", "rimraf": "~6.0", "run-scripts-util": "~1.3", "typescript": "~5.8", "typescript-eslint": "~8.30", "uglify-js": "~3.19" } }