-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.82 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@christiangalsterer/pg-promise-prometheus-exporter",
"version": "2.2.0",
"description": "A prometheus exporter for pg-promise",
"repository": {
"type": "git",
"url": "git+https://github.com/christiangalsterer/pg-promise-prometheus-exporter.git"
},
"files": [
"/dist/src"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"ci": "npm i --save-dev && npm run format && npm run lint && npm run build && npm run test && npm run renovate:config",
"clean": "npm run clean:dist && npm run clean:deps",
"clean:dist": "rm -rf ./dist",
"clean:deps": "rm -rf ./node_modules && rm -rf package-lock.json && npm run deps",
"deps": "npm i --save-dev",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest --forceExit --verbose",
"test:coverage": "jest --forceExit --coverage --verbose",
"release:prepare": "npm run clean && npm i && npm i --save-dev && npm run format && npm run lint && npm run build && npm run test",
"release:major": "npm run release:prepare && npm version major -m 'build(release): release %s' && git push && git push --tags",
"release:minor": "npm run release:prepare && npm version minor -m 'build(release): release %s' && git push && git push --tags",
"release:patch": "npm run release:prepare && npm version patch -m 'build(release): release %s' && git push && git push --tags",
"publish-npm": "npm run ci && npm publish --access public",
"publish-npm:dry-run": "npm run ci && npm publish --dry-run --access public",
"renovate:config": "npx renovate-config-validator"
},
"keywords": [
"pg-promise",
"node-postgres",
"postgres",
"prometheus",
"monitoring",
"metrics",
"pg-promise prometheus",
"pg-promise monitoring",
"pg-promise metrics",
"postgres prometheus",
"postgres monitoring",
"postgres metrics"
],
"author": "Christian Galsterer",
"license": "MIT",
"dependencies": {
"@christiangalsterer/node-postgres-prometheus-exporter": "^1.3.0",
"pg-promise": "^11.5.5",
"prom-client": "^15.0.0"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@testcontainers/postgresql": "10.17.2",
"@types/jest": "29.5.14",
"eslint-config-love": "118.0.0",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"jest": "29.7.0",
"prettier": "3.4.2",
"renovate": "39.145.1",
"ts-jest": "29.2.5",
"typescript": "5.7.3"
},
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/christiangalsterer/pg-promise-prometheus-exporter/issues"
},
"homepage": "https://github.com/christiangalsterer/pg-promise-prometheus-exporter#readme",
"directories": {
"test": "test"
}
}