UNPKG

suppress-exit-code

Version:

Cross-platform CLI wrapper that runs any command and exits with zero

60 lines 1.55 kB
{ "name": "suppress-exit-code", "version": "3.2.0", "description": "Cross-platform CLI wrapper that runs any command and exits with zero", "keywords": [ "cli", "exit-code", "ignore", "suppress" ], "repository": { "type": "git", "url": "https://github.com/kachkaev/suppress-exit-code.git" }, "license": "MIT", "author": { "name": "Alexander Kachkaev", "url": "https://en.kachkaev.ru/" }, "type": "module", "main": "main.js", "bin": "main.js", "scripts": { "fix": "npm-run-all --continue-on-error \"fix:*\"", "fix:prettier": "prettier --write .", "fix:yarn-dedupe": "yarn dedupe", "lint": "npm-run-all --continue-on-error \"lint:*\"", "lint:prettier": "prettier --check .", "lint:tsc": "tsc --project .", "lint:yarn-dedupe": "yarn dedupe --check", "prepack": "yarn lint && yarn test && pinst --disable", "postpack": "pinst --enable", "_postinstall": "husky install", "test": "yarn node --experimental-vm-modules $(yarn bin jest)" }, "lint-staged": { "**": [ "prettier --write" ] }, "dependencies": { "execa": "^6.1.0" }, "devDependencies": { "@kachkaev/prettier-config": "1.4.1", "@types/jest": "29.5.2", "@types/node": "20.3.1", "husky": "8.0.3", "jest": "29.5.0", "lint-staged": "13.2.2", "npm-run-all": "4.1.5", "pinst": "3.0.0", "prettier": "2.8.8", "typescript": "5.1.3" }, "packageManager": "yarn@4.0.0-rc.46", "engines": { "node": "^14.18.0 || >=16.0.0" } }