-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
55 lines (55 loc) · 1.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
{
"name": "opossum-prometheus",
"version": "0.4.0",
"description": "Prometheus metrics for opossum circuit breaker",
"main": "index.js",
"scripts": {
"prepare": "husky || true",
"lint": "eslint --ignore-path .gitignore .",
"pretest": "npm run lint",
"test": "nyc tape test/*.js | tap-spec",
"prerelease": "npm run test",
"release": "standard-version -a"
},
"repository": {
"type": "git",
"url": "git://github.com/nodeshift/opossum-prometheus.git"
},
"bugs": {
"url": "https://github.com/nodeshift/opossum-prometheus/issues"
},
"support": {
"target": "LTS",
"response": "REGULAR-7",
"backing": "COMPANY"
},
"keywords": [
"circuit breaker",
"fail fast",
"prometheus",
"metrics"
],
"author": "Red Hat, Inc.",
"license": "Apache-2.0",
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.57.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.1.0",
"nyc": "^15.1.0",
"opossum": "^8.1.3",
"standard-version": "^9.5.0",
"tap-spec": "^5.0.0",
"tape": "^5.7.5"
},
"dependencies": {
"prom-client": "^15.1.1"
},
"engines": {
"node": "^21 || ^20 || ^18 || ^16"
}
}