-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "ui5-tooling-extensions",
"private": true,
"version": "0.0.0",
"description": "A repository offering extensions of UI5 Tooling",
"author": {
"name": "SAP SE",
"email": "[email protected]",
"url": "https://www.sap.com"
},
"keywords": [
"openui5",
"sapui5",
"ui5",
"build",
"development",
"tool",
"istanbul",
"code coverage"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "[email protected]:SAP/ui5-tooling-extensions.git"
},
"engines": {
"node": "^20.11.0 || >=22.0.0",
"npm": ">=8"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@ui5/cli": "^4.0.13",
"husky": "^9.1.7",
"licensee": "^11.1.1"
},
"scripts": {
"check-licenses": "licensee --errors-only",
"depcheck": "npm run depcheck --workspaces --if-present",
"hooks:pre-push": "npm run lint:commit",
"lint": "npm run lint --workspaces --if-present",
"lint:commit": "commitlint -e",
"prepare": "node ./.husky/skip.js || husky",
"test": "npm run test --workspaces --if-present",
"test:unit": "npm run test:unit --workspaces --if-present",
"test:unit:coverage": "npm run test:unit:coverage --workspaces --if-present",
"test:integration": "npm run test:integration --workspaces --if-present"
},
"workspaces": [
"packages/middleware-code-coverage"
]
}