-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.1 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.1 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@podium/client",
"version": "5.4.10",
"type": "module",
"license": "MIT",
"keywords": [
"micro services",
"micro frontend",
"components",
"podium",
"http"
],
"repository": {
"type": "git",
"url": "git@github.com:podium-lib/client.git"
},
"bugs": {
"url": "https://github.com/podium-lib/issues"
},
"homepage": "https://podium-lib.io/",
"files": [
"package.json",
"CHANGELOG.md",
"README.md",
"LICENSE",
"lib",
"types"
],
"main": "./lib/client.js",
"types": "./types/client.d.ts",
"exports": {
".": {
"types": "./types/client.d.ts",
"default": "./lib/client.js"
},
"./lib/client.js": {
"types": "./types/client.d.ts",
"default": "./lib/client.js"
},
"./lib/http-outgoing.js": {
"types": "./types/http-outgoing.d.ts",
"default": "./lib/http-outgoing.js"
},
"./lib/http.js": {
"types": "./types/http.d.ts",
"default": "./lib/http.js"
},
"./lib/resolver.cache.js": {
"types": "./types/resolver.cache.d.ts",
"default": "./lib/resolver.cache.js"
},
"./lib/resolver.content.js": {
"types": "./types/resolver.content.d.ts",
"default": "./lib/resolver.content.js"
},
"./lib/resolver.fallback.js": {
"types": "./types/resolver.fallback.d.ts",
"default": "./lib/resolver.fallback.js"
},
"./lib/resolver.js": {
"types": "./types/resolver.d.ts",
"default": "./lib/resolver.js"
},
"./lib/resolver.manifest.js": {
"types": "./types/resolver.manifest.d.ts",
"default": "./lib/resolver.manifest.js"
},
"./lib/resource.js": {
"types": "./types/resource.d.ts",
"default": "./lib/resource.js"
},
"./lib/response.js": {
"types": "./types/response.d.ts",
"default": "./lib/response.js"
},
"./lib/state.js": {
"types": "./types/state.d.ts",
"default": "./lib/state.js"
},
"./lib/utils.js": {
"types": "./types/utils.d.ts",
"default": "./lib/utils.js"
}
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "tap --disable-coverage --allow-empty-coverage",
"types": "run-s types:tsc types:test",
"types:tsc": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"dependencies": {
"@hapi/boom": "10.0.1",
"@metrics/client": "2.5.5",
"@podium/schemas": "5.2.0",
"@podium/utils": "5.6.0",
"abslog": "2.4.4",
"http-cache-semantics": "^4.0.3",
"ttl-mem-cache": "4.1.0",
"undici": "6.25.0"
},
"devDependencies": {
"@podium/eslint-config": "2.0.2",
"@podium/podlet": "5.4.0",
"@podium/semantic-release-config": "3.0.0",
"@podium/test-utils": "3.0.26",
"@podium/typescript-config": "1.0.1",
"@sinonjs/fake-timers": "11.3.1",
"@types/readable-stream": "4.0.23",
"eslint": "9.39.4",
"express": "5.2.1",
"get-stream": "9.0.1",
"http-proxy": "1.18.1",
"is-stream": "4.0.1",
"npm-run-all2": "8.0.4",
"prettier": "3.8.1",
"semantic-release": "25.0.2",
"tap": "21.5.0",
"typescript": "5.9.3"
}
}