UNPKG

find-process

Version:

find process info by port/pid/name etc.

80 lines 1.81 kB
{ "name": "find-process", "version": "2.0.0", "description": "find process info by port/pid/name etc.", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "find-process": "dist/bin/find-process.js" }, "ensure": { "deps": { "checkDirs": [ "lib/*", "bin/*", "*.js" ] } }, "repository": { "type": "git", "url": "git+https://github.com/yibn2008/find-process.git" }, "keywords": [ "node", "process", "pid", "port" ], "standard": { "globals": [ "describe", "beforeEach", "afterEach", "it" ], "ignore": [ "/node_modules", "/doc", "/example", "/test", "/dist", "index.d.ts" ] }, "author": "zoujie <yibn2008@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/yibn2008/find-process/issues" }, "homepage": "https://github.com/yibn2008/find-process#readme", "dependencies": { "chalk": "~4.1.2", "commander": "^12.1.0", "loglevel": "^1.9.2" }, "devDependencies": { "@types/mocha": "^10.0.10", "@types/node": "^24.0.10", "eslint": "^9.17.0", "glob": "^11.0.0", "mocha": "^11.0.1", "npm-ensure": "^1.3.0", "rimraf": "^6.0.1", "standard": "^17.1.2", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "publishConfig": { "registry": "https://registry.npmjs.org" }, "scripts": { "build": "tsc && node scripts/postbuild.js", "dev": "tsc --watch", "test": "npm run build && mocha -r ts-node/register test/*.test.ts && standard", "lint": "standard --fix && npm-ensure -t deps", "type-check": "tsc --noEmit", "check-version": "node scripts/check-version.js", "update-history": "node scripts/update-history.js" } }