node-ipc/package.json

69 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2014-02-22 20:13:31 +11:00
{
"name": "node-ipc",
2021-09-15 23:38:43 +10:00
"version": "10.1.0",
2014-03-01 21:30:26 +11:00
"description": "A nodejs module for local and remote Inter Process Communication (IPC), Neural Networking, and able to facilitate machine learning.",
2021-09-16 00:06:48 +10:00
"type": "module",
2021-09-15 10:20:10 +10:00
"main": "node-ipc.cjs",
"module": "node-ipc.js",
2021-09-16 00:06:48 +10:00
"exports": {
"import": "./node-ipc.js",
"require": "./node-ipc.cjs"
},
2014-02-22 20:13:31 +11:00
"directories": {
"example": "example"
},
"engines": {
2021-07-04 17:18:44 +10:00
"node": ">=14"
2015-12-09 11:57:41 +11:00
},
2014-02-22 20:13:31 +11:00
"dependencies": {
2021-07-03 07:35:02 +10:00
"event-pubsub": "5.0.3",
"js-message": "1.0.7",
2021-07-03 07:35:02 +10:00
"js-queue": "2.0.2",
"strong-type": "^1.0.1"
2014-02-22 20:13:31 +11:00
},
2016-01-09 19:59:47 +11:00
"devDependencies": {
2021-07-03 08:01:41 +10:00
"c8": "^7.7.3",
2021-09-15 10:20:10 +10:00
"esbuild": "^0.12.28",
2021-07-03 08:01:41 +10:00
"lcov2badge": "^0.1.2",
"node-cmd": "^4.0.0",
"node-http-server": "^8.1.4",
"vanilla-test": "^1.4.8"
2016-01-09 19:59:47 +11:00
},
2014-02-22 20:13:31 +11:00
"scripts": {
2021-09-15 10:31:03 +10:00
"prepare": "esbuild node-ipc.js --bundle --format=cjs --target=es2018 --platform=node --outfile=node-ipc.cjs",
2021-07-03 07:35:02 +10:00
"test": "npm i && c8 -r lcov -r html node test/CI.js && c8 report && node ./lcov.js",
"coverage": "echo 'See your coverage report at http://localhost:8080' && node-http-server port=8080 root=./coverage/"
2014-02-22 20:13:31 +11:00
},
"keywords": [
"IPC",
2014-03-01 21:30:26 +11:00
"Neural Networking",
"Machine Learning",
2014-02-22 20:13:31 +11:00
"inter",
"process",
"communication",
"unix",
2015-09-27 21:53:08 +10:00
"windows",
"win",
"socket",
2014-03-01 21:30:26 +11:00
"TCP",
"UDP",
"domain",
2014-02-22 20:13:31 +11:00
"sockets",
"threaded",
"communication",
"multi",
"process",
"shared",
"memory"
],
"author": "Brandon Nozaki Miller",
2020-11-12 07:21:02 +11:00
"license": "MIT",
2014-02-27 09:04:09 +11:00
"repository": {
"type": "git",
"url": "https://github.com/RIAEvangelist/node-ipc.git"
},
"bugs": {
"url": "https://github.com/RIAEvangelist/node-ipc/issues"
},
"homepage": "http://riaevangelist.github.io/node-ipc/"
2021-09-16 00:06:48 +10:00
}