forked from mateodelnorte/servicebus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "servicebus",
"description": "Simple service bus for sending events between processes using amqp.",
"version": "2.2.1",
"author": "Matt Walters <[email protected]>",
"contributors": [
],
"scripts": {
"commit": "git-cz",
"test": "NODE_ENV=test jest --config jest.json --coverage --verbose",
"test:watch": "NODE_ENV=test jest --config jest.json --watch --coverage --verbose",
"test:staging": "mocha -R spec --recursive --exit",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"homepage": "https://github.com/mateodelnorte/servicebus",
"repository": {
"type": "git",
"url": "git://github.com/mateodelnorte/servicebus.git"
},
"engines": {
"node": "0.6 || 0.8 || 0.9 || 0.10 || 0.12"
},
"dependencies": {
"amqplib": "^0.5.2",
"debug": "^2.2.0",
"extend": "^3.0.0",
"node-uuid": "^1.4.3",
"readable-id-mjs": "^1.0.0"
},
"devDependencies": {
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"jest": "^22.0.4",
"longjohn": "~0.2.9",
"mocha": ">=2.3.3",
"semantic-release": "^11.0.2",
"servicebus-retry": "0.0.12",
"should": "7.1.0",
"sinon": "~1.17.1"
},
"optionalDependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}