UNPKG

promisify-child-process

Version:

seriously like the best async child process library

162 lines (161 loc) 4.73 kB
{ "name": "promisify-child-process", "version": "4.1.2", "description": "seriously like the best async child process library", "engines": { "node": ">=8" }, "main": "./index.cjs", "exports": { "types": "./index.d.ts", "import": "./index.mjs", "require": "./index.cjs" }, "types": "./index.d.ts", "files": [ "index.cjs", "index.mjs", "index.d.ts", "index.js.flow" ], "sideEffects": false, "scripts": { "lint": "eslint src test --cache", "lint:fix": "eslint --fix src test --cache", "lint:watch": "esw --watch src test --cache", "prettier": "prettier --write *.json *.md *.js *.ts '{src,test}/**/*.js'", "prettier:check": "prettier --list-different *.json *.md *.js *.ts '{src,test}/**/*.js'", "flow": "flow", "flow:coverage": "for file in src/**.js test/**.js; do echo $file; flow coverage $file; done", "flow:watch": "flow-watch -e js,js.flow,flowconfig --ignore es/ --ignore node_modules/ --watch .flowconfig --watch src/ --watch test/", "build": "babel src/index.js -o index.cjs && flow-copy-source -v src/ .", "test": "cross-env NODE_ENV=test mocha $npm_package_config_mocha && cross-env NODE_ENV=test BABEL_ENV=coverage nyc --reporter=lcov --reporter=text mocha $npm_package_config_mocha", "test:watch": "cross-env NODE_ENV=test BABEL_ENV=test mocha --watch $npm_package_config_mocha", "test:debug": "cross-env NODE_ENV=test BABEL_ENV=test mocha --inspect-brk $npm_package_config_mocha", "codecov": "nyc report --reporter=text-lcov > coverage.lcov; codecov", "prepublishOnly": "npm run prettier:check && npm run lint && flow && tsc && npm test && npm run build", "open:coverage": "open coverage/lcov-report/index.html", "semantic-release": "semantic-release" }, "husky": { "hooks": { "pre-commit": "lint-staged && npm run lint && flow && tsc", "commit-msg": "commitlint -e $GIT_PARAMS", "pre-push": "npm test" } }, "lint-staged": { "*.{js,json,css,md,ts}": [ "prettier --write", "git add" ] }, "commitlint": { "extends": [ "@jedwards1211/commitlint-config" ] }, "prettier": { "semi": false, "singleQuote": true, "trailingComma": "es5" }, "config": { "mocha": "-r @babel/register test/configure.js 'test/**/*.js'", "commitizen": { "path": "cz-conventional-changelog" } }, "nyc": { "include": [ "src/**/*.js" ], "require": [ "@babel/register" ], "sourceMap": false, "instrument": false }, "repository": { "type": "git", "url": "https://github.com/jcoreio/promisify-child-process.git" }, "keywords": [ "child", "process", "child_process", "exec", "spawn", "execFile", "fork", "promise", "promises", "async", "await", "thenable" ], "author": "Andy Edwards", "license": "MIT", "bugs": { "url": "https://github.com/jcoreio/promisify-child-process/issues" }, "homepage": "https://github.com/jcoreio/promisify-child-process#readme", "devDependencies": { "@babel/cli": "^7.1.5", "@babel/core": "^7.1.6", "@babel/plugin-proposal-object-rest-spread": "^7.0.0", "@babel/preset-env": "^7.1.6", "@babel/preset-flow": "^7.0.0", "@babel/register": "^7.0.0", "@commitlint/cli": "^8.0.0", "@commitlint/config-conventional": "^8.0.0", "@jedwards1211/commitlint-config": "^1.0.0", "@jedwards1211/eslint-config": "^2.0.0", "@jedwards1211/eslint-config-flow": "^2.0.0", "@types/node": "^12.12.17", "babel-eslint": "^10.0.1", "babel-plugin-istanbul": "^5.1.0", "chai": "^4.2.0", "codecov": "^3.1.0", "copy": "^0.3.2", "cross-env": "^5.2.0", "eslint": "^5.9.0", "eslint-config-prettier": "^3.3.0", "eslint-plugin-flowtype": "^3.2.0", "eslint-watch": "^4.0.2", "flow-bin": "^0.135.0", "flow-copy-source": "^2.0.2", "flow-watch": "^1.1.4", "fs-extra": "^7.0.1", "husky": "^1.1.4", "istanbul": "^0.4.5", "lint-staged": "^8.0.4", "mocha": "^6.2.1", "nyc": "^13.1.0", "prettier": "^1.15.2", "prettier-eslint": "^8.8.2", "rimraf": "^2.6.0", "semantic-release": "^15.13.31", "typescript": "^3.7.3", "waait": "^1.0.5" }, "dependencies": {}, "renovate": { "extends": [ ":separateMajorReleases", ":combinePatchMinorReleases", ":ignoreUnstable", ":prImmediately", ":renovatePrefix", ":updateNotScheduled", ":preserveSemverRanges", ":semanticPrefixFixDepsChoreOthers", ":automergeDisabled", "group:monorepos" ], "automerge": true, "major": { "automerge": false } } }