-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
31 lines (31 loc) · 920 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
{
"name": "gearmanode",
"version": "0.9.2",
"description": "Node.js library for the Gearman distributed job system with support for multiple servers",
"keywords": ["gearman", "distributed", "message queue", "job", "worker"],
"author": "Vaclav Sykora <vaclav.sykora@gmail.com>",
"main": "./lib/gearmanode",
"repository": {
"type": "git",
"url": "https://github.com/veny/GearmaNode"
},
"bugs" : { "url" : "https://github.com/veny/GearmaNode/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": ">=0.7.1"
},
"devDependencies": {
"mocha": ">=1.10.0",
"should": ">=1.2.2",
"sinon": ">=1.7.3"
},
"files": ["lib", "README.md", "LICENSE"]
}