haxec
Version:
Wrap a Node.js spawn() or exec() with before/after handlers
58 lines (57 loc) • 1.34 kB
JSON
{
"name": "haxec",
"version": "2.0.1",
"description": "Wrap a Node.js spawn() or exec() with before/after handlers",
"author": "Gustaf Räntilä",
"license": "MIT",
"bugs": {
"url": "https://github.com/grantila/haxec/issues"
},
"homepage": "https://github.com/grantila/haxec#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=10"
},
"files": [
"dist"
],
"scripts": {
"build:dist": "rimraf dist && tsc -p tsconfig.prod.json",
"build:test": "rimraf dist-test && tsc -p tsconfig.test.json",
"build": "yarn build:dist && yarn build:test",
"test": "jest",
"buildtest": "yarn build && yarn test",
"cz": "git-cz"
},
"repository": {
"type": "git",
"url": "https://github.com/grantila/haxec"
},
"keywords": [
"wrap",
"command",
"program",
"before",
"after"
],
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"already": "^1.13.2",
"cz-conventional-changelog": "^3.3.0",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.2",
"typescript": "^4.2.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"foreground-child": "^2.0.0",
"spawn-wrap": "^2.0.0"
}
}