{
  "name": "gallinago",
  "version": "0.11.0",
  "description": "Gallinago is a NodeJS based package designed to help with the running and testing of CLIs.",
  "main": "src/index.js",
  "type": "module",
  "author": "Owen Buckley <owen@thegreenhouse.io>",
  "license": "MIT",
  "keywords": [
    "testing",
    "nodejs",
    "CLI"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/thescientist13/gallinago.git"
  },
  "files": [
    "src/"
  ],
  "engines": {
    "node": ">=18"
  },
  "exports": {
    ".": {
      "types": "./src/index.d.ts",
      "import": "./src/index.js"
    }
  },
  "scripts": {
    "lint": "eslint \"*.cjs\" \"./src/**/**/*.js\" \"./test/**/**/*.js\"",
    "test": "c8 node --debug-port 3333 ./node_modules/mocha/bin/mocha",
    "test:tdd": "npm test -- --watch"
  },
  "devDependencies": {
    "@eslint/js": "^9.11.1",
    "@webcomponents/webcomponentsjs": "^2.5.0",
    "c8": "^7.14.0",
    "chai": "^4.3.10",
    "chai-as-promised": "^8.0.1",
    "eslint": "^9.11.1",
    "eslint-plugin-no-only-tests": "^2.6.0",
    "fs-extra": "^9.0.1",
    "globals": "^15.10.0",
    "koa": "^2.13.1",
    "livereload": "^0.9.3",
    "mocha": "^8.4.0"
  }
}
