-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.07 KB
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
{
"name": "node-sync-ipc",
"version": "3.0.2",
"description": "`node-sync-ipc` is a tiny library making it possible for node processes to send synchronous message to other processes. It can block the client side process until the server make a response.",
"main": "index.js",
"scripts": {
"test": "npm run test:server-client",
"test:server-client": "mocha test/server-client/parent.js --timeout 5000",
"rebuild": "node-gyp rebuild"
},
"author": "mmhunter <mmhunter@mmhunter.com (http://mmhunter.com)",
"license": "MIT",
"gypfile": true,
"dependencies": {
"bindings": "^1.3.0",
"nan": "^2.13.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mmhunter/node-sync-ipc"
},
"bugs": "https://github.com/mmhunter/node-sync-ipc/issues",
"homepage": "https://github.com/mmhunter/node-sync-ipc",
"keywords": [
"child_process",
"sync",
"synchronous",
"ipc",
"message"
],
"types": "index.d.ts",
"devDependencies": {
"@types/node": "^9.6.0",
"mocha": "^5.0.1",
"readline-sync": "^1.4.9"
}
}