-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.13 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
{
"name": "gearman-node-bda",
"version": "0.10.1",
"description": "Node.js library for the Gearman distributed job system with support for multiple servers",
"keywords": [
"gearman",
"distributed",
"message queue",
"job",
"worker"
],
"author": "zero <zero.27@qq.com>",
"main": "./lib/gearmanode",
"repository": {
"type": "git",
"url": "git+https://github.com/bda-research/gearman-node.git"
},
"bugs": {
"url": "https://github.com/bda-research/gearman-node/issues"
},
"engines": {
"node": ">=0.10.0"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"scripts": {
"test": "mocha",
"doc": "jsdoc lib/gearmanode.js lib/gearmanode/*.js"
},
"dependencies": {
"winston": "^2.0.0"
},
"devDependencies": {
"mocha": ">=1.10.0",
"should": ">=1.2.2",
"sinon": ">=1.7.3"
},
"files": [
"lib",
"README.md",
"LICENSE"
],
"homepage": "https://github.com/bda-research/gearman-node#readme",
"directories": {
"example": "example",
"test": "test"
},
"license": "ISC"
}