forked from andris9/node-gearman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 839 Bytes
/
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
{
"name": "node-gearman",
"description": "Simple Gearman client/worker module for Node.JS",
"version": "0.2.1",
"author" : "Andris Reinman",
"maintainers":[
{
"name":"andris",
"email":"andris@node.ee"
}
],
"homepage": "http://github.com/andris9/node-gearman",
"repository" : {
"type" : "git",
"url" : "http://github.com/andris9/node-gearman.git"
},
"scripts":{
"test": "node ./run_tests.js"
},
"devDependencies": {
"nodeunit": "*"
},
"main" : "./lib/gearman",
"licenses" : [
{
"type": "MIT",
"url": "http://github.com/andris9/gearman/blob/master/LICENSE"
}
],
"engine": {
"node": ">=0.5"
},
"keywords": ["gearman", "worker", "message queue"]
}