{
  "name": "@antora/run-command-helper",
  "version": "1.1.0",
  "description": "Provides a helper function to run an external command uniformly across platforms with numerous options to control how stdio is handled.",
  "license": "MPL-2.0",
  "author": "OpenDevise Inc. (https://opendevise.com)",
  "homepage": "https://gitlab.com/antora/run-command-helper",
  "contributors": [
    "Dan Allen <dan@opendevise.com>"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://gitlab.com/antora/run-command-helper.git"
  },
  "bugs": {
    "url": "https://gitlab.com/antora/run-command-helper/issues"
  },
  "main": "lib/index.js",
  "exports": {
    ".": "./lib/index.js",
    "./package.json": "./package.json"
  },
  "imports": {
    "#parse-command": "./lib/parse-command.js"
  },
  "scripts": {
    "build": "npm test",
    "postbuild": "npm run lint",
    "coverage": "npx -y c8 node -r ./test/harness/coverage-config.js --test test/*-test.js",
    "coverage-ci-linux": "mkdir -p reports-linux && npx -y nyc --report-dir reports-linux node -r ./test/harness/coverage-config.js --test-reporter dot --test-reporter-destination stdout --test-reporter junit --test-reporter-destination reports-linux/tests-xunit.xml --test test/*-test.js",
    "coverage-ci-windows": "npx -y nyc --report-dir reports-windows node --test-reporter dot --test test/*-test.js",
    "format": "npx -y @biomejs/biome@2 format --write",
    "postformat": "node --disable-warning ExperimentalWarning npm/postformat.js",
    "lint": "npx -y @biomejs/biome@2 lint",
    "postpublish": "npx -y downdoc@latest --postpublish",
    "prepublishOnly": "npx -y downdoc@latest --prepublish",
    "test": "node --test test/*-test.js",
    "pretidy": "npm run lint",
    "tidy": "npm run format"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "files": [
    "lib/"
  ],
  "keywords": [
    "command",
    "cross-platform",
    "exec",
    "spawn",
    "stdio"
  ],
  "c8": {
    "all": true,
    "include": [
      "lib/**/*.js"
    ],
    "exclude": [],
    "reporter": [
      "lcov",
      "text"
    ],
    "reportDir": "reports"
  },
  "nyc": {
    "cache": true,
    "cacheDir": ".cache/nyc/c",
    "include": [
      "lib/**/*.js"
    ],
    "exclude": [],
    "reporter": [
      "json"
    ],
    "reportDir": "reports",
    "tempDir": ".cache/nyc/i"
  }
}
