forked from siimon/prom-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 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
{
"name": "@qutics/prom-client",
"version": "5.4.1",
"description": "Client for prometheus",
"publishConfig": {
"registry": "https://registry.qubit.com/"
},
"main": "index.js",
"files": [
"lib/",
"index.js"
],
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run test-unit",
"lint": "node-version-gte-4 && eslint . || node-version-lt-4",
"test-unit": "mocha --recursive test/"
},
"repository": {
"type": "git",
"url": "git@github.com:QubitProducts/prom-client.git"
},
"keywords": [
"Prometheus",
"Metrics",
"Client"
],
"author": "Simon Nyberg",
"license": "Apache-2.0",
"homepage": "https://github.com/siimon/prom-client",
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^3.5.0",
"express": "^4.13.3",
"mocha": "^8.4.0",
"nock": "^13.0.11",
"node-version-check": "^2.1.1",
"sinon": "^1.17.2"
},
"dependencies": {
"optional": "^0.1.3",
"tdigest": "^0.1.1",
"util-extend": "^1.0.1"
},
"optionalDependencies": {
"@sematext/gc-stats": "^1.5.7"
}
}