forked from achrinza/node-ipc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.8 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@achrinza/node-ipc",
"version": "10.1.6",
"description": "A nodejs module for local and remote Inter Process Communication (IPC), Neural Networking, and able to facilitate machine learning.",
"type": "module",
"main": "node-ipc.cjs",
"module": "node-ipc.js",
"exports": {
"import": "./node-ipc.js",
"require": "./node-ipc.cjs"
},
"directories": {
"example": "example"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "14 || 16 || 17 || 18"
},
"dependencies": {
"@achrinza/event-pubsub": "5.0.6",
"js-message": "1.0.7",
"@node-ipc/js-queue": "2.0.3",
"strong-type": "1.0.1"
},
"devDependencies": {
"@node-ipc/vanilla-test": "1.4.9",
"c8": "^7.7.3",
"esbuild": "^0.12.28",
"lcov2badge": "^0.1.2",
"lockfile-lint": "^4.7.4",
"node-cmd": "4.0.0",
"node-http-server": "^8.1.4"
},
"scripts": {
"prepare": "esbuild node-ipc.js --bundle --format=cjs --target=es2018 --platform=node --outfile=node-ipc.cjs",
"test": "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/"
},
"keywords": [
"IPC",
"Neural Networking",
"Machine Learning",
"inter",
"process",
"communication",
"unix",
"windows",
"win",
"socket",
"TCP",
"UDP",
"domain",
"sockets",
"threaded",
"communication",
"multi",
"process",
"shared",
"memory"
],
"author": "Brandon Nozaki Miller",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/achrinza/node-ipc.git"
},
"bugs": {
"url": "https://github.com/achrinza/node-ipc/issues"
},
"homepage": "https://github.com/achrinza/node-ipc"
}