-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
89 lines (89 loc) · 2.68 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
80
81
82
83
84
85
86
87
88
89
{
"name": "@diia-inhouse/diia-metrics",
"version": "3.12.0",
"description": "package to export prometheus metrics",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"repository": "https://github.com/diia-open-source/be-diia-metrics.git",
"author": "Diia",
"license": "SEE LICENSE IN LICENSE.md",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"prepare": "ts-patch install -s && npm run build",
"semantic-release": "semantic-release",
"lint": "eslint --ext .ts . && prettier --check .",
"lint-fix": "eslint '*/**/*.{js,ts}' --fix && prettier --write .",
"lint:lockfile": "lockfile-lint --path package-lock.json --allowed-hosts registry.npmjs.org --validate-https",
"test": "jest",
"test:unit": "npm run test --selectProjects unit --",
"test:coverage": "npm run test --coverage",
"format": "prettier --write .",
"find-circulars": "madge --circular --extensions ts ./"
},
"resolutions": {
"@babel/traverse": "7.23.2"
},
"dependencies": {
"prom-client": "15.1.2"
},
"peerDependencies": {
"@diia-inhouse/errors": ">=1.10.0",
"@diia-inhouse/types": ">=6.30.0"
},
"devDependencies": {
"@diia-inhouse/configs": "1.32.0",
"@diia-inhouse/diia-logger": "3.0.0",
"@diia-inhouse/eslint-config": "5.1.0",
"@diia-inhouse/test": "6.3.1",
"@types/node": "20.14.5",
"eslint": "8.57.0",
"eslint-plugin-prettier": "5.1.3",
"lockfile-lint": "4.13.2",
"madge": "7.0.0",
"nock": "13.5.4",
"prettier": "3.3.2",
"rimraf": "5.0.7",
"semantic-release": "21.1.2",
"type-fest": "4.3.1",
"typescript": "5.4.5"
},
"release": {
"extends": "@diia-inhouse/configs/dist/semantic-release/package",
"branches": [
"main"
]
},
"commitlint": {
"extends": "@diia-inhouse/configs/dist/commitlint"
},
"eslintConfig": {
"extends": "@diia-inhouse/eslint-config",
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": [
"./tsconfig.json",
"./tests/tsconfig.json"
]
}
}
]
},
"prettier": "@diia-inhouse/eslint-config/prettier",
"madge": {
"tsConfig": "./tsconfig.json"
},
"jest": {
"preset": "@diia-inhouse/configs/dist/jest"
}
}