-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "hystrix-too-busy",
"version": "0.2.0",
"description": "Provides a backpressure management hystrix command partially based on too-busy module logic and utilizing hystrix metrics accumulation and circuit breaking",
"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/trooba/hystrix-too-busy.git"
},
"keywords": [
"toobusy",
"too-busy",
"hystrix",
"hystrixjs",
"trooba",
"backpressure",
"pressure"
],
"author": "Dmytro Semenov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/trooba/hystrix-too-busy/issues"
},
"homepage": "https://github.com/trooba/hystrix-too-busy#readme",
"dependencies": {
"hystrixjs": "^0.2.0",
"rxjs": "^5.4.0",
"toobusy-js": "^0.5.1"
},
"devDependencies": {
"async": "^2.4.1",
"istanbul": "^0.4.5",
"mocha": "^5.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}