{
  "name": "@slack/cli-test",
  "version": "5.0.0",
  "description": "Node.js bindings for the Slack CLI for use in automated testing",
  "author": "Salesforce, Inc.",
  "license": "MIT",
  "keywords": [
    "cli",
    "slack",
    "test"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*"
  ],
  "engines": {
    "node": ">=20",
    "npm": ">=9.6.4"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/slackapi/node-slack-sdk.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "bugs": {
    "url": "https://github.com/slackapi/node-slack-sdk/issues"
  },
  "scripts": {
    "build": "npm run build:clean && tsc",
    "build:clean": "shx rm -rf ./dist",
    "docs": "npx typedoc --plugin typedoc-plugin-markdown",
    "prepack": "npm run build",
    "test": "npm run build && bash -c 'cross-env SLACK_CLI_PATH=/doesnt/matter node --test-reporter=spec --test-reporter-destination=stdout --test-reporter=junit --test-reporter-destination=test-results.xml --import tsx --test src/**/*.test.ts'",
    "test:coverage": "npm run build && cross-env SLACK_CLI_PATH=/doesnt/matter node --experimental-test-coverage --test-reporter=spec --test-reporter-destination=stdout --test-reporter=lcov --test-reporter-destination=lcov.info --test-reporter=junit --test-reporter-destination=test-results.xml --import tsx --test src/**/*.test.ts"
  },
  "dependencies": {
    "tree-kill": "^1.2.2",
    "winston": "^3.8.2"
  },
  "devDependencies": {
    "@types/sinon": "^21.0.0",
    "cross-env": "^10.0.0",
    "sinon": "^21.0.0"
  }
}
