UNPKG

cross-port-killer

Version:

Kill the process running on a given TCP port on Windows, Linux and Mac

60 lines (59 loc) 1.62 kB
{ "name": "cross-port-killer", "version": "1.4.0", "description": "Kill the process running on a given TCP port on Windows, Linux and Mac", "keywords": [ "port", "process", "kill", "kill-port", "cross-platform", "windows", "linux", "mac" ], "main": "source/index.js", "types": "source/index.d.ts", "bin": { "kill-port": "source/cli.js" }, "scripts": { "prepare": "npm run build && npm test", "build": "tsc", "precommit": "npm run prettier", "prepush": "npm test", "pretest": "npm run build", "test": "mocha --no-timeouts", "prettier": "prettier \"*/**/*.ts\" --config .prettierrc --write && git add ." }, "repository": { "type": "git", "url": "https://github.com/milewski/cross-port-killer.git" }, "files": [ "source/*.js", "source/*.d.ts", "test" ], "author": { "name": "Rafael Milewski", "email": "rafael.milewski@gmail.com", "url": "https://github.com/milewski" }, "license": "MIT", "bugs": { "url": "https://github.com/milewski/cross-port-killer/issues" }, "homepage": "https://github.com/milewski/cross-port-killer", "devDependencies": { "@types/mocha": "^9.0.0", "@types/node": "^17.0.8", "expect.js": "^0.3.1", "http-server": "^14.1.0", "husky": "^7.0.4", "mocha": "^9.1.3", "prettier": "^2.5.1", "ps-list": "^7.2.0", "typescript": "^4.5.4" } }