{
  "name": "demurgos-foreground-child",
  "version": "1.6.0-beta.2",
  "description": "Run a child as if it's the foreground process.  Give it stdio.  Exit when it exits.",
  "main": "index.js",
  "engines": {
    "node": ">=6.0.0"
  },
  "dependencies": {
    "@types/signal-exit": "^3.0.0",
    "cross-spawn": "^6",
    "signal-exit": "^3.0.0"
  },
  "devDependencies": {
    "@types/node": "^10.9.4",
    "tap": "^12.0.1",
    "tslint": "^5.11.0",
    "typescript": "^3.0.3"
  },
  "scripts": {
    "prepare": "tsc",
    "pretest": "npm run prepare",
    "test": "tap --coverage test/*.js",
    "posttest": "tap --coverage-report=html && tslint --project ./tsconfig.json",
    "tslint:fix": "tslint --project ./tsconfig.json --fix",
    "changelog": "bash changelog.sh",
    "postversion": "npm run changelog && git add CHANGELOG.md && git commit -m 'update changelog - '${npm_package_version}"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tapjs/foreground-child.git"
  },
  "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/tapjs/foreground-child/issues"
  },
  "homepage": "https://github.com/tapjs/foreground-child#readme",
  "directories": {
    "test": "test"
  },
  "files": [
    "index.d.ts",
    "index.js",
    "index.ts"
  ],
  "nyc": {
    "include": [
      "index.js",
      "index.ts"
    ],
    "extension": [
      ".ts"
    ],
    "reporter": [
      "html",
      "text"
    ],
    "all": true
  }
}
