forked from arobson/rabbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.34 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "rabbot",
"version": "2.1.0",
"description": "Abstractions to simplify working with the RabbitMQ",
"main": "src/index.js",
"engines": {
"node": ">=6.0.0"
},
"repository": "https://github.com/arobson/rabbot",
"scripts": {
"lint": "semistandard",
"lint-fix": "semistandard --fix",
"pretest": "semistandard",
"test": "./node_modules/mocha/bin/mocha spec/**/*.spec.js",
"coverage": "nyc npm test",
"release": "standard-version",
"build-image": "docker build -t rabbot .",
"create-container": "docker run -d --name rabbot -p 15672:15672 -p 5672:5672 rabbot",
"bootstrap-container": "npm run build-image && npm run create-container",
"start-container": "docker start rabbot",
"stop-container": "docker stop rabbot",
"remove-container": "docker rm -f rabbot"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Alex Robson",
"contributors": [
{
"name": "Alex Robson",
"email": "[email protected]",
"url": "http://github.com/arobson"
},
{
"name": "Derick Bailey",
"url": "http://derickbailey.com/"
},
{
"name": "Mario Kozjak",
"url": "https://github.com/mkozjak"
},
{
"name": "Doug Neiner",
"url": "http://code.dougneiner.com"
},
{
"name": "Brian Edgerton",
"url": "https://github.com/brianedgerton"
},
{
"name": "Jim Cowart",
"url": "http://github.com/ifandelse"
},
{
"name": "John Mathis",
"url": "http://github.com/JohnDMathis"
},
{
"name": "Austin Young",
"url": "http://github.com/LeankitAustin"
}
],
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^2.13.1",
"lodash": "4.17.x",
"mocha": "^3.4.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^10.3.2",
"request": "^2.83.0",
"semistandard": "^12.0.0",
"sinon": "^4.0.2",
"standard-version": "^4.3.0"
},
"dependencies": {
"amqplib": "~0.5.2",
"bole": "^3.0.2",
"debug": "^3.1.0",
"machina": "2.0.2",
"monologue.js": "^0.3.5",
"postal": "^2.0.5",
"uuid": "^3.1.0"
},
"semistandard": {
"env": [
"mocha"
],
"globals": [
"sinon",
"should",
"expect",
"harnessFactory",
"sortBy"
]
}
}