-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 KB
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
{
"name": "socket.io-prometheus",
"version": "0.4.0",
"description": "Prometheus metrics collector for socket.io server",
"main": "index.js",
"scripts": {
"codecov": "test -d .nyc_output && nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"test": "nyc mocha test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shamil/socket.io-prometheus.git"
},
"keywords": [
"prometheus",
"socket.io"
],
"author": "Alex Simenduev <shamil.si@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shamil/socket.io-prometheus/issues"
},
"homepage": "https://github.com/shamil/socket.io-prometheus#readme",
"devDependencies": {
"chai": "^6.2.0",
"codecov": "^3.8.3",
"eslint": "^8.57.0",
"mocha": "^11.7.4",
"nyc": "^17.0.0",
"prom-client": "^15.0.0",
"rewire": "^7.0.0",
"sinon": "^21.0.0"
},
"peerDependencies": {
"prom-client": ">=10 <16"
}
}