-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.14 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
{
"name": "@podium/layout",
"version": "5.2.15",
"type": "module",
"description": "Module for composing full page layouts out of page fragments in a micro frontend architecture.",
"license": "MIT",
"keywords": [
"micro services",
"micro frontend",
"components",
"podium"
],
"repository": {
"type": "git",
"url": "[email protected]:podium-lib/layout.git"
},
"bugs": {
"url": "https://github.com/podium-lib/issues"
},
"homepage": "https://podium-lib.io/",
"files": [
"package.json",
"CHANGELOG.md",
"README.md",
"LICENSE",
"types",
"dist",
"lib"
],
"main": "./lib/layout.js",
"types": "./types/layout.d.ts",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "tap --disable-coverage --allow-empty-coverage",
"test:snapshots": "tap --snapshot --disable-coverage --allow-empty-coverage",
"types": "run-s types:tsc types:fixup types:test",
"types:tsc": "tsc",
"types:test": "tsc --project tsconfig.test.json",
"types:fixup": "node ./fixup.js"
},
"dependencies": {
"@metrics/client": "2.5.3",
"@podium/client": "5.2.0",
"@podium/context": "5.1.1",
"@podium/proxy": "5.0.30",
"@podium/schemas": "5.1.0",
"@podium/utils": "5.3.2",
"abslog": "2.4.4",
"ajv": "8.17.1",
"lodash.merge": "4.6.2",
"objobj": "1.0.0"
},
"devDependencies": {
"@podium/podlet": "5.2.0",
"@podium/test-utils": "3.0.12",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.0",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@podium/eslint-config": "1.0.3",
"@podium/semantic-release-config": "2.0.0",
"@podium/typescript-config": "1.0.0",
"@types/node": "22.9.0",
"eslint": "9.14.0",
"express": "4.21.1",
"@types/readable-stream": "4.0.18",
"npm-run-all2": "6.2.3",
"prettier": "3.3.3",
"semantic-release": "24.2.0",
"stoppable": "1.1.0",
"supertest": "7.0.0",
"tap": "21.0.1",
"typescript": "5.6.3"
}
}