-
Notifications
You must be signed in to change notification settings - Fork 399
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.81 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.81 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "prom-client",
"version": "15.1.3",
"description": "Client for prometheus",
"main": "index.js",
"files": [
"lib/",
"index.js",
"index.d.ts"
],
"engines": {
"node": "^20 || ^22 || >=24"
},
"scripts": {
"benchmarks": "node --max-heap-size=5000 --allow-natives-syntax ./benchmarks/index.js",
"test": "npm run lint && npm run check-prettier && npm run compile-typescript && npm run test-unit -- --coverage",
"lint": "eslint .",
"test-unit": "jest",
"run-prettier": "prettier .",
"check-prettier": "npm run run-prettier -- --check",
"compile-typescript": "tsc --project .",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git@github.com:siimon/prom-client.git"
},
"keywords": [
"Prometheus",
"Metrics",
"Client"
],
"author": "Simon Nyberg",
"license": "Apache-2.0",
"homepage": "https://github.com/siimon/prom-client",
"devDependencies": {
"@eslint/js": "^9.29.0",
"debug": "^4.4.1",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jsdoc": "^61.4.1",
"eslint-plugin-n": "^17.20.0",
"eslint-plugin-prettier": "^5.0.1",
"express": "^5.1.0",
"faceoff": "^1.1.0",
"globals": "^16.2.0",
"husky": "^9.0.0",
"jest": "^30.0.2",
"lint-staged": "^15.5.2",
"nock": "^13.0.5",
"prettier": "3.7.0",
"typescript": "^5.0.4",
"typescript-eslint": "^8.35.0"
},
"dependencies": {
"@opentelemetry/api": "^1.4.0",
"tdigest": "^0.1.1"
},
"types": "./index.d.ts",
"jest": {
"testRegex": ".*Test\\.js$"
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{md,json,yml}": "prettier --write"
},
"prettier": {
"singleQuote": true,
"useTabs": true,
"arrowParens": "avoid",
"trailingComma": "all",
"endOfLine": "auto",
"overrides": [
{
"files": "*.md",
"options": {
"useTabs": false
}
}
]
}
}