-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
67 lines (67 loc) · 1.47 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
{
"name": "abraxas",
"description": "A streaming gearman client / worker / server (as you choose)",
"keywords": [
"gearman",
"streaming",
"client",
"worker",
"server"
],
"author": "Rebecca Turner <me@re-becca.org> (http://re-becca.org)",
"version": "2.1.10",
"dependencies": {
"backoff": "^2.4.0",
"bluebird": "^3.1.1",
"concat-stream": "^1.5.1",
"duplex-combination": "^1.2.0",
"emptyfunction": "^1.0.0",
"gearman-packet": "^1.0.3",
"isa-stream": "^1.0.1",
"readable-stream": "^2.0.4",
"shallow-copy": "0.0.1",
"standard-error": "^1.1.0",
"through2": "^2.0.0",
"util-extend": "^1.0.1"
},
"main": "index.js",
"license": "ISC",
"scripts": {
"test": "tap test/*.js test/functional/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/iarna/abraxas.git"
},
"devDependencies": {
"stream-array": "^1.1.1",
"tap": "^11.1.4"
},
"files": [
"errors.js",
"example.js",
"index.js",
"echo.js",
"packet-handler.js",
"server-connection.js",
"server-job-background.js",
"server-job-multi.js",
"debug-packet.js",
"server-job-single.js",
"cvar.js",
"server-job.js",
"client.js",
"server.js",
"client-reconnect.js",
"socket.js",
"client-jobs.js",
"stream-replay.js",
"client-connection.js",
"stream-to-buffer.js",
"task-client.js",
"admin.js",
"task.js",
"task-worker.js",
"worker.js"
]
}