This repository was archived by the owner on Mar 26, 2025. It is now read-only.
generated from SAP/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.17 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.17 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
{
"name": "@ui5/tooling-webc",
"version": "0.3.1",
"description": "UI5 Tooling Extensions to include UI5 Web Components projects into OpenUI5/SAPUI5",
"author": "SAP SE",
"license": "Apache-2.0",
"scripts": {
"test": "npm run lint",
"lint": "eslint lib",
"lintfix": "eslint lib --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "node ./.husky/skip.js || husky install",
"postversion": "npm run changelog && git commit --all --amend --no-edit",
"hooks:pre-commit": "eslint lib",
"hooks:commit-msg": "commitlint -e"
},
"bin": {
"ui5-webc-prebuild": "bin/prebuild.js",
"ui5-webc-generate": "bin/generate.js"
},
"dependencies": {
"@babel/core": "^7.18.9",
"@babel/plugin-transform-modules-amd": "^7.18.6",
"@javascript-obfuscator/escodegen": "^2.3.0",
"@javascript-obfuscator/estraverse": "^5.4.0",
"@ui5/project": "^3.0.3",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-transform-dynamic-import": "^2.1.0",
"espree": "^9.6.1",
"glob": "^7.2.0",
"globby": "^13.1.2",
"js-beautify": "^1.14.4",
"merge-deep": "^3.0.3",
"reserved-words": "^0.1.2",
"resolve": "^1.22.1",
"slash": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"conventional-changelog-cli": "^2.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"overrides": {
"minimist": "^1.2.6"
},
"directories": {
"doc": "docs",
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SAP/ui5-tooling-webc.git"
},
"bugs": {
"url": "https://github.com/SAP/ui5-tooling-webc/issues"
},
"homepage": "https://github.com/SAP/ui5-tooling-webc#readme"
}