UNPKG

find-process

Version:

find process info by port/pid/name etc.

83 lines 1.96 kB
{ "name": "find-process", "version": "2.1.1", "description": "find process info by port/pid/name etc.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/cjs/index.d.ts", "exports": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js" }, "bin": { "find-process": "dist/cjs/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": "^14.0.3", "loglevel": "^1.9.2" }, "devDependencies": { "@types/mocha": "^10.0.10", "@types/node": "^25.5.0", "mocha": "^11.7.5", "npm-ensure": "^1.3.0", "rimraf": "^6.1.3", "standard": "^17.1.2", "ts-node": "^10.9.2", "typescript": "^5.9.3" }, "publishConfig": { "registry": "https://registry.npmjs.org" }, "scripts": { "build": "rimraf dist && tsc -p tsconfig.json && tsc -p tsconfig.esm.json && 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" } }