{ "name": "node-cmd", "version": "6.0.1", "description": "Node.js-only command-line power: run shell commands, launch executables, and control child processes with zero runtime dependencies.", "type": "commonjs", "main": "./cmd.js", "module": "./cmd.mjs", "exports": { ".": { "import": "./cmd.mjs", "require": "./cmd.js", "default": "./cmd.js" }, "./cmd": "./cmd.js", "./cmd.js": "./cmd.js", "./cmd.mjs": "./cmd.mjs", "./package.json": "./package.json" }, "files": [ "cmd.js", "cmd.mjs", "CHANGELOG.md", "MIGRATION.md", "README.md", "SECURITY.md", "licence" ], "engines": { "node": ">=22.12.0" }, "scripts": { "test": "node ./test/node.mjs", "test:unit": "node ./test/node.mjs unit", "test:functional": "node ./test/node.mjs functional", "test:behavioral": "node ./test/node.mjs behavioral", "test:integration": "node ./test/node.mjs integration", "test:regression": "node ./test/node.mjs regression", "test:runtime-contract": "node ./scripts/validate-runtime-contract.js", "benchmark": "node ./benchmark/run.js", "benchmark:chart": "node ./benchmark/render-chart.js ./benchmark/reference.json ./assets", "coverage": "vanilla-test coverage node", "test:package": "node ./scripts/package-smoke.js", "site:check": "node ./scripts/validate-site.js", "verify": "npm test && npm run coverage && npm run test:runtime-contract && npm run test:package && npm run site:check" }, "repository": { "type": "git", "url": "git+https://github.com/RIAEvangelist/node-cmd.git" }, "homepage": "https://riaevangelist.github.io/node-cmd/", "bugs": { "url": "https://github.com/RIAEvangelist/node-cmd/issues" }, "funding": "https://github.com/sponsors/RIAEvangelist", "keywords": [ "commandline", "terminal", "shell", "cmd", "cli", "bash", "child-process", "spawn", "exec", "node" ], "author": "Brandon Nozaki Miller", "license": "MIT", "sideEffects": false, "devDependencies": { "vanilla-test": "2.1.0" } }