-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.29 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
{
"name": "queue-schedule",
"version": "1.1.0",
"description": "Queue producer and consumer tools, with kafka support.",
"main": "index.js",
"engines": {
"node": ">=6.0"
},
"scripts": {
"bump_path": "npm version patch -m \"upgrade to %s\"",
"bump_minor": "npm version minor -m \"upgrade to %s\"",
"release":"git push && release-to-github-with-changelog --remote",
"test": "mocha --recursive --timeout 999999 test/mocha",
"doc": "jsdoc lib/*.js -d docs"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/e174596549/queue-schedule.git"
},
"keywords": [
"queue",
"producer",
"consumer"
],
"author": "e174596549",
"contributors": [
{
"name": "e174596549",
"email": "[email protected]",
"url": "https://github.com/e174596549"
},
{
"name": "yunnysunny",
"email": "[email protected]",
"url": "https://github.com/yunnysunny"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/e174596549/queue-schedule/issues"
},
"homepage": "https://github.com/e174596549/queue-schedule#readme",
"dependencies": {
"kafka-node": "^3.0.1"
},
"devDependencies": {
"async": "^2.5.0",
"chai": "^4.1.1",
"mocha": "^3.5.0",
"node-slogger": "^0.5.1"
}
}