forked from jbielick/faktory_worker_node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "faktory-worker",
"version": "3.3.2",
"description": "A faktory worker framework for node apps",
"main": "index.js",
"author": "Josh Bielick <[email protected]>",
"license": "MIT",
"scripts": {
"test": "nyc --cache ava --serial",
"coverage": "nyc report --reporter=html",
"lint": "eslint lib",
"htmldocs": "jsdoc . lib -d docs --readme README.md --pedantic",
"docs": "jsdoc2md --files lib/*.js --template docs/template.hbs > docs/api.md",
"preversion": "npm run lint && npm run test && npm run docs",
"version": "git add docs/ package.json",
"postversion": "git push && git push --tags"
},
"keywords": [
"faktory",
"client",
"node",
"server",
"job",
"background",
"async"
],
"repository": {
"type": "git",
"url": "https://github.com/jbielick/faktory_worker_node"
},
"bin": {
"faktory-work": "bin/faktory-work",
"faktory-cluster": "bin/faktory-cluster"
},
"ava": {
"verbose": true,
"timeout": "5s"
},
"engines": {
"node": ">=7"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "3.0.6",
"eslint": "^4.10",
"eslint-config-airbnb-base": "13.2.0",
"eslint-plugin-import": "2.18.2",
"get-port": "4.2.0",
"jsdoc": "3.6.3",
"jsdoc-to-markdown": "^3.1.0-1",
"nyc": "13.3.0",
"sinon": "7.2.3"
},
"dependencies": {
"commander": "2.20.0",
"debug": "^4.1.0",
"generic-pool": "3.7.1",
"koa-compose": "^4.0.0",
"redis-parser": "^3.0.0",
"uuid": "3.3.3"
}
}