-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 756 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 756 Bytes
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
{
"name": "@crussell52/socket-ipc",
"version": "0.4.1",
"description": "An event-driven IPC implementation using unix file sockets.",
"keywords": [
"ipc",
"interprocess",
"messages",
"communication",
"sockets",
"event",
"unix",
"mac",
"linux"
],
"homepage": "https://crussell52.github.io/node-socket-ipc/",
"bugs": {
"url": "https://github.com/crussell52/node-socket-ipc/issues"
},
"repository": "github:crussell52/node-socket-ipc",
"main": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Chris Russell <crussell52@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"uuid": "^3.4.0"
}
}