node-ipc/package.json

65 lines
1.5 KiB
JSON
Raw Normal View History

2014-02-22 20:13:31 +11:00
{
"name": "node-ipc",
2021-07-02 09:30:09 +10:00
"version": "9.2.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.",
2014-02-22 20:13:31 +11:00
"main": "node-ipc.js",
"directories": {
"example": "example"
},
"engines": {
2020-11-12 07:46:57 +11:00
"node": ">=8.0.0"
2015-12-09 11:57:41 +11:00
},
2014-02-22 20:13:31 +11:00
"dependencies": {
2017-08-24 23:31:35 +10:00
"event-pubsub": "4.3.0",
"js-message": "1.0.7",
2020-11-12 08:17:33 +11:00
"js-queue": "2.0.2"
2014-02-22 20:13:31 +11:00
},
2016-01-09 19:59:47 +11:00
"devDependencies": {
"codacy-coverage": "2.0.0",
"jasmine": "2.4.1",
"istanbul": "0.4.1",
"node-cmd": "2.0.0"
2016-01-09 19:59:47 +11:00
},
2014-02-22 20:13:31 +11:00
"scripts": {
"test-windows": "istanbul cover -x **/spec/** -dir ./spec/coverage ./node_modules/jasmine/bin/jasmine.js",
2016-01-10 18:23:40 +11:00
"test": "istanbul cover -x **/spec/** -dir ./spec/coverage jasmine",
2016-01-11 15:59:40 +11:00
"cover": "istanbul cover -x **/spec/** -dir ./spec/coverage jasmine",
2016-01-12 09:31:36 +11:00
"coverup": "cat ./spec/coverage/lcov.info | codacy-coverage"
2014-02-22 20:13:31 +11:00
},
2016-01-12 09:31:36 +11:00
"pre-commit": [
"cover"
2016-01-12 09:31:36 +11:00
],
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/"
2014-02-22 20:13:31 +11:00
}