{
  "name": "cli-testlab",
  "version": "6.0.1",
  "description": "Test framework for CLI utilities",
  "author": {
    "name": "Igor Savin",
    "web": "https://github.com/kibertoad"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "del-cli dist/ && tsc && copyfiles test/util/apps/*.js dist",
    "prepublishOnly": "npm run build",
    "test": "vitest",
    "test:coverage": "vitest --coverage",
    "test:ci": "npm run lint && npm run test:coverage",
    "lint": "oxlint \"lib/**/*.ts\" \"test/**/*.ts\" \"test/**/*.js\" index.ts && oxfmt --check \"{lib,test}/**/*.{js,ts}\" index.ts",
    "lint:fix": "oxlint --fix \"lib/**/*.ts\" \"test/**/*.ts\" \"test/**/*.js\" index.ts && oxfmt --write \"{lib,test}/**/*.{js,ts}\" index.ts"
  },
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/kibertoad/cli-testlab.git"
  },
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "glob": "^13.0.6"
  },
  "devDependencies": {
    "@types/node": "^20.19.37",
    "@vitest/coverage-v8": "^4.0.18",
    "commander": "^11.1.0",
    "copyfiles": "^2.4.1",
    "del-cli": "^7.0.0",
    "oxfmt": "^0.42.0",
    "oxlint": "^1.57.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  },
  "files": [
    "README.md",
    "LICENSE",
    "dist/lib/*",
    "dist/index.js",
    "dist/index.d.ts"
  ],
  "keywords": [
    "cli",
    "test",
    "tests",
    "testing",
    "framework",
    "commandline",
    "terminal"
  ]
}
