35 lines
942 B
JSON
35 lines
942 B
JSON
|
{
|
||
|
"name": "foreground-child",
|
||
|
"version": "1.5.6",
|
||
|
"description": "Run a child as if it's the foreground process. Give it stdio. Exit when it exits.",
|
||
|
"main": "index.js",
|
||
|
"directories": {
|
||
|
"test": "test"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"cross-spawn": "^4",
|
||
|
"signal-exit": "^3.0.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"tap": "^8.0.1"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"test": "tap --coverage test/*.js",
|
||
|
"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",
|
||
|
"files": [
|
||
|
"index.js"
|
||
|
]
|
||
|
}
|