-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.83 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.83 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
{
"name": "@ui5/cli-monorepo",
"private": true,
"version": "0.0.1",
"description": "UI5 CLI - Monorepo",
"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",
"engines": {
"node": "^22.20.0 || >=24.0.0",
"npm": ">= 8"
},
"scripts": {
"test": "npm run lint && npm run check-licenses && npm run depcheck && npm run coverage && npm run schema-generate && npm run generate-cli-doc",
"lint": "eslint ./ && npm run lint --workspaces",
"lint:commit": "commitlint",
"unit": "npm run unit --workspaces",
"coverage": "npm run coverage --workspaces",
"schema-generate": "node ./scripts/buildSchema.js ui5",
"schema-workspace-generate": "node ./scripts/buildSchema.js ui5-workspace",
"depcheck": "depcheck --ignores @ui5/builder,@ui5/cli,@ui5/fs,@ui5/logger,@ui5/project,@ui5/server,local-web-server,@commitlint/config-conventional,husky && npm run depcheck --workspaces",
"check-licenses": "licensee --errors-only"
},
"repository": {
"type": "git",
"url": "git@github.com:UI5/cli.git"
},
"dependencies": {
"@ui5/cli": "^4.0.30",
"@ui5/project": "^4.0.6"
},
"devDependencies": {
"@apidevtools/json-schema-ref-parser": "^14.2.1",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.8.0",
"depcheck": "^1.4.7",
"eslint": "^9.35.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-ava": "^15.1.0",
"eslint-plugin-jsdoc": "^61.1.0",
"globals": "^16.4.0",
"husky": "^9.1.7",
"licensee": "^11.1.1",
"local-web-server": "^5.4.0",
"traverse": "^0.6.11"
},
"workspaces": [
"packages/builder",
"packages/cli",
"packages/fs",
"packages/logger",
"packages/project",
"packages/server"
]
}