-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.58 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": "node-ipc-ecma5",
"version": "6.0.01",
"description": "A nodejs module for local and remote Inter Process Communication (IPC), Neural Networking, and able to facilitate machine learning.",
"main": "node-ipc.js",
"directories": {
"example": "example"
},
"engines": {
"node": ">=1.0.0"
},
"dependencies": {
"colors": "*",
"event-pubsub": "*",
"js-message": "*",
"js-queue": "^0.1.2",
"node-cmd": "*"
},
"devDependencies": {
"blanket": "^1.2.1",
"codacy-coverage": "^1.1.3",
"jasmine": "^2.4.1",
"istanbul": "^0.4.1"
},
"scripts": {
"test": "istanbul cover -x **/spec/** -dir ./spec/coverage jasmine",
"cover": "istanbul cover -x **/spec/** -dir ./spec/coverage jasmine",
"coverup": "cat ./spec/coverage/lcov.info | codacy-coverage"
},
"pre-commit": [
"cover"
],
"keywords": [
"IPC",
"Neural Networking",
"Machine Learning",
"inter",
"process",
"communication",
"unix",
"windows",
"win",
"socket",
"TCP",
"UDP",
"domain",
"sockets",
"threaded",
"communication",
"multi",
"process",
"shared",
"memory"
],
"author": {
"name": "James Suárez"
},
"license": "DBAD",
"repository": {
"type": "git",
"url": "git+https://github.com/voxsoftware/node-ipc-ecma5.git"
},
"bugs": {
"url": "https://github.com/voxsoftware/node-ipc-ecma5/issues"
},
"homepage": "http://riaevangelist.github.io/node-ipc/",
"maintainers": [
{
"name": "James Suárez",
"email": "xtreme.maicolxt94@gmail.com"
}
]
}