-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.84 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.84 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
83
84
85
86
{
"name": "@diia-inhouse/http",
"version": "4.0.15",
"description": "Wrapper to make http requests",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"repository": "https://github.com/diia-open-source/be-pkg-http",
"author": "Diia",
"license": "SEE LICENSE IN LICENSE.md",
"files": [
"dist"
],
"engines": {
"node": ">=22"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"semantic-release": "semantic-release",
"start": "npm run build && node dist/index.js",
"lint": "eslint . && prettier --check .",
"lint-fix": "eslint --fix . && prettier --write .",
"lint:lockfile": "lockfile-lint --path package-lock.json --allowed-hosts registry.npmjs.org --validate-https",
"prepare": "npm run build",
"test": "tsc --project tests/tsconfig.json --noEmit && vitest run",
"test:watch": "vitest watch",
"test:unit": "npm run test --selectProjects unit --",
"test:coverage": "npm run test --coverage --",
"find-circulars": "madge --circular --extensions ts ./"
},
"dependencies": {
"await-to-js": "3.0.0",
"axios": "1.15.0",
"lodash": "4.18.1",
"qs": "6.15.0"
},
"peerDependencies": {
"@diia-inhouse/diia-metrics": ">=3.14.2",
"@diia-inhouse/errors": ">=1.0.0",
"@diia-inhouse/types": ">=1.0.0",
"@opentelemetry/api": ">=1.9.0",
"@opentelemetry/semantic-conventions": ">=1.28.0"
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@diia-inhouse/configs": "6.1.1",
"@diia-inhouse/diia-logger": "3.19.11",
"@diia-inhouse/diia-metrics": "6.5.19",
"@diia-inhouse/errors": "1.18.16",
"@diia-inhouse/eslint-config": "8.8.0",
"@diia-inhouse/test": "7.3.16",
"@diia-inhouse/types": "11.7.0",
"@opentelemetry/api": "1.9.0",
"@opentelemetry/semantic-conventions": "1.40.0",
"@types/lodash": "4.17.24",
"@types/node": "25.3.3",
"@vitest/coverage-v8": "4.0.18",
"@vitest/ui": "4.0.18",
"eslint-plugin-prettier": "5.2.3",
"eslint": "9.31.0",
"lockfile-lint": "4.14.1",
"madge": "8.0.0",
"nock": "14.0.11",
"rimraf": "6.1.3",
"semantic-release": "24.2.7",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.0.18",
"vitest-mock-extended": "3.1.0"
},
"overrides": {
"form-data": "^4.0.4"
},
"release": {
"extends": "@diia-inhouse/configs/dist/semantic-release/package",
"branches": [
"main"
]
},
"commitlint": {
"extends": "@diia-inhouse/configs/dist/commitlint"
},
"prettier": "@diia-inhouse/eslint-config/prettier",
"madge": {
"tsConfig": "./tsconfig.json"
}
}