-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
{
"name": "circuit-b",
"version": "3.0.0",
"description": "A non intrusive circuit breaker",
"main": "lib/main.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "[email protected]:trygve-lie/circuit-b.git"
},
"bugs": {
"url": "https://github.com/trygve-lie/circuit-b/issues"
},
"homepage": "https://github.com/trygve-lie/circuit-b#readme",
"author": "Trygve Lie",
"license": "MIT",
"keywords": [
"circuit",
"breaker",
"circuit-breaker",
"circuitbreaker",
"distributed",
"scalability"
],
"scripts": {
"test": "tape test/*.js | tap-summary",
"test:metrics": "tape test/integration-metrics.js | tap-summary",
"test:request": "tape test/integration-request.js | tap-summary",
"test:fetch": "tape test/integration-fetch.js | tap-summary",
"test:axios": "tape test/integration-axios.js | tap-summary",
"test:http": "tape test/integration-http.js | tap-summary",
"test:got": "tape test/integration-got.js | tap-summary",
"test:response": "tape test/response.js | tap-summary",
"test:breaker": "tape test/breaker.js | tap-summary",
"test:utils": "tape test/utils.js | tap-summary",
"test:main": "tape test/main.js | tap-summary",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-prettier": "3.1.2",
"eslint-plugin-import": "2.19.1",
"hostile": "1.3.3",
"request": "2.88.2",
"axios": "0.21.1",
"node-fetch": "2.6.1",
"got": "10.2.1",
"synclog": "1.0.1",
"tap-summary": "4.0.0",
"tape": "4.12.1",
"prettier": "1.19.1"
},
"dependencies": {
"@metrics/client": "2.5.0",
"abslog": "2.4.0"
}
}