-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.75 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": "@matsumana/winston-transport-prometheus",
"version": "2.0.0",
"description": "A winston metrics transport using Prometheus",
"author": "Manabu Matsuzaki",
"license": "Apache-2.0",
"homepage": "https://github.com/matsumana/winston-transport-prometheus",
"repository": {
"type": "git",
"url": "[email protected]:matsumana/winston-transport-prometheus.git"
},
"engines": {
"node": ">=20"
},
"keywords": [
"winston",
"prometheus",
"metrics"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"fix:prettier": "prettier --write .",
"fix:eslint": "eslint --fix .",
"fix": "run-p -l -c --aggregate-output 'fix:*'",
"lint:prettier": "prettier --check .",
"lint:eslint": "eslint .",
"lint": "run-p -l -c --aggregate-output 'lint:*'",
"test": "jest",
"clean": "rm -rf dist",
"build": "tsc"
},
"dependencies": {
"winston": "^3.15.0",
"winston-transport": "^4.8.0"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"prom-client": "^15.1.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"peerDependencies": {
"prom-client": "^15.1.3"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}