-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.59 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.59 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
{
"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 --if-present",
"lint:commit": "commitlint",
"unit": "npm run unit --workspaces --if-present",
"coverage": "npm run coverage --workspaces --if-present",
"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 --if-present",
"check-licenses": "licensee --errors-only",
"generate-cli-doc": "npm run generate-cli-doc --workspace=@ui5/documentation"
},
"repository": {
"type": "git",
"url": "git@github.com:UI5/cli.git"
},
"devDependencies": {
"@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"
},
"workspaces": [
"packages/*",
"internal/*"
]
}