-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "@podium/context",
"version": "5.1.3",
"description": "Module to generate the context which is passed on requests from a Podium Layout server to a Podium Podlet server",
"type": "module",
"license": "MIT",
"keywords": [
"micro services",
"micro frontend",
"components",
"podium"
],
"repository": {
"type": "git",
"url": "git@github.com:podium-lib/context.git"
},
"bugs": {
"url": "https://github.com/podium-lib/issues"
},
"homepage": "https://podium-lib.io/",
"files": [
"package.json",
"CHANGELOG.md",
"README.md",
"LICENSE",
"dist",
"lib",
"types"
],
"main": "./lib/context.js",
"types": "./types/context.d.ts",
"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"
},
"author": "",
"dependencies": {
"@metrics/client": "2.5.4",
"@podium/schemas": "5.1.0",
"@podium/utils": "5.4.0",
"abslog": "2.4.4",
"bcp47-validate": "^1.0.0",
"bowser": "^2.7.0",
"decamelize": "^6.0.0",
"lru-cache": "10.4.3"
},
"devDependencies": {
"@podium/eslint-config": "1.0.0",
"@podium/semantic-release-config": "2.0.0",
"@podium/typescript-config": "1.0.0",
"@types/readable-stream": "4.0.18",
"eslint": "9.11.1",
"npm-run-all2": "6.2.6",
"prettier": "3.3.3",
"semantic-release": "24.1.2",
"tap": "18.8.0",
"typescript": "5.5.4"
}
}