-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "express-hystrix",
"version": "1.0.2",
"description": "The module provides a hystrix command middleware for express based applications. The module should be used together with [hystrix-too-busy](https://github.com/trooba/hystrix-too-busy) module.",
"main": "index.js",
"scripts": {
"test": "mocha test",
"test-coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- --timeout 4s -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dimichgh/express-hystrix.git"
},
"keywords": [
"toobusy",
"too-busy",
"busy",
"express",
"hystrix",
"hystrixjs"
],
"author": "Dmytro Semenov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dimichgh/express-hystrix/issues"
},
"homepage": "https://github.com/dimichgh/express-hystrix#readme",
"devDependencies": {
"async": "^2.4.1",
"express": "^4.15.3",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"supertest": "^3.0.0"
},
"dependencies": {
"hoek": "^4.1.1",
"hystrixjs": "^0.2.0",
"rxjs": "^5.4.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}