{
  "name": "stagehand",
  "version": "1.0.1",
  "description": "A type-safe library for communicating between JS processes, workers, or other message-passing boundaries.",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "repository": "https://github.com/dfreeman/stagehand",
  "author": "Dan Freeman <dfreeman@salsify.com>",
  "license": "MIT",
  "scripts": {
    "lint": "prettier --check . && eslint .",
    "test": "mocha --expose-gc -r ts-node/register 'tests/**/*.ts'",
    "test:watch": "mocha --watch --watch-extensions ts -r ts-node/register 'tests/**/*.ts'",
    "prepublishOnly": "tsc -p tsconfig.publish.json",
    "postpublish": "rimraf lib"
  },
  "engines": {
    "node": "6.* || 8.* || >= 10.*"
  },
  "devDependencies": {
    "@types/chai": "^4.1.6",
    "@types/debug": "^0.0.31",
    "@types/mocha": "^5.2.5",
    "@types/node": "^12.0.0",
    "@typescript-eslint/eslint-plugin": "^5.48.0",
    "@typescript-eslint/parser": "^5.48.0",
    "chai": "^4.2.0",
    "eslint": "^8.31.0",
    "mocha": "^5.2.0",
    "prettier": "^2.8.1",
    "rimraf": "^2.6.2",
    "ts-node": "^7.0.1",
    "typescript": "^4.9.4"
  },
  "dependencies": {
    "debug": "^4.1.0"
  },
  "volta": {
    "node": "12.22.12",
    "yarn": "1.22.19"
  }
}
