-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 2.53 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 2.53 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
{
"name": "@ui5/server",
"version": "5.0.0-alpha.3",
"description": "UI5 CLI - Server",
"author": {
"name": "SAP SE",
"email": "openui5@sap.com",
"url": "https://www.sap.com"
},
"license": "Apache-2.0",
"keywords": [
"openui5",
"sapui5",
"ui5",
"build",
"development",
"tool"
],
"type": "module",
"exports": {
".": "./lib/server.js",
"./internal/sslUtil": "./lib/sslUtil.js",
"./internal/middlewareRepository": "./lib/middleware/middlewareRepository.js",
"./internal/MiddlewareManager": "./lib/middleware/MiddlewareManager.js",
"./package.json": "./package.json"
},
"engines": {
"node": "^22.20.0 || >=24.0.0",
"npm": ">= 8"
},
"scripts": {
"test": "npm run lint && npm run coverage",
"lint": "eslint ./",
"unit": "rimraf test/tmp && ava",
"unit-verbose": "rimraf test/tmp && cross-env UI5_LOG_LVL=verbose ava --verbose --serial",
"unit-watch": "npm run unit -- --watch",
"unit-inspect": "cross-env UI5_LOG_LVL=verbose ava debug --break",
"coverage": "rimraf test/tmp && nyc ava --node-arguments=\"--experimental-loader=@istanbuljs/esm-loader-hook\""
},
"files": [
"CHANGELOG.md",
"lib/**",
"LICENSES/**"
],
"nyc": {
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"lib/middleware/testRunner/TestRunner.js",
"docs/**",
"coverage/**",
"test/**"
],
"check-coverage": true,
"statements": 90,
"branches": 85,
"functions": 90,
"lines": 90,
"watermarks": {
"statements": [
70,
90
],
"branches": [
70,
90
],
"functions": [
70,
90
],
"lines": [
70,
90
]
},
"cache": true,
"all": true
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/UI5/cli.git",
"directory": "packages/server"
},
"dependencies": {
"@ui5/builder": "^5.0.0-alpha.3",
"@ui5/fs": "^5.0.0-alpha.3",
"@ui5/logger": "^5.0.0-alpha.3",
"body-parser": "^2.2.2",
"compression": "^1.8.1",
"cors": "^2.8.5",
"devcert-sanscache": "^0.5.1",
"escape-html": "^1.0.3",
"etag": "^1.8.1",
"express": "^4.22.1",
"fresh": "^0.5.2",
"graceful-fs": "^4.2.11",
"mime-types": "^3.0.2",
"parseurl": "^1.3.3",
"portscanner": "^2.2.0",
"replacestream": "^4.0.3",
"router": "^2.2.0",
"spdy": "^4.0.2",
"yesno": "^0.4.0"
},
"devDependencies": {
"@istanbuljs/esm-loader-hook": "^0.3.0",
"@ui5/project": "^5.0.0-alpha.3",
"ava": "^6.4.1",
"cross-env": "^7.0.3",
"eslint": "^9.36.0",
"esmock": "^2.7.3",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"sinon": "^21.0.0",
"supertest": "^7.1.4"
}
}