UNPKG

node-cluster-ipc

Version:

A lightweight for Inter-Process Communication (IPC) between master and worker processes using the cluster module

58 lines (57 loc) 1.59 kB
{ "name": "node-cluster-ipc", "version": "1.0.0", "description": "A lightweight for Inter-Process Communication (IPC) between master and worker processes using the cluster module", "main": "lib/index.js", "types": "lib/index.d.ts", "scripts": { "prebuild": "rimraf lib", "build": "tsc", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "coverage": "codecov", "lint": "eslint '{src,test}/**/*.ts' --fix", "release": "release-it", "prepare": "husky" }, "files": [ "lib" ], "repository": { "type": "git", "url": "git+https://github.com/chunkai1312/node-cluster-ipc.git" }, "keywords": [ "node-cluster-ipc", "cluster-ipc", "cluster", "ipc", "inter-process-communication", "message-passing" ], "author": "Chun-Kai Wang <chunkai1312@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/chunkai1312/node-cluster-ipc/issues" }, "homepage": "https://github.com/chunkai1312/node-cluster-ipc#readme", "dependencies": {}, "devDependencies": { "@commitlint/cli": "^19.6.1", "@commitlint/config-conventional": "^19.6.0", "@release-it/conventional-changelog": "^9.0.4", "@types/jest": "^29.5.14", "@types/node": "^22.10.2", "@typescript-eslint/eslint-plugin": "^8.18.2", "@typescript-eslint/parser": "^8.18.2", "eslint": "^9.17.0", "husky": "^9.1.7", "jest": "^29.7.0", "release-it": "^17.11.0", "rimraf": "^5.0.10", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "typescript": "^5.7.2" } }