forked from SAP/generator-easy-ui5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.39 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
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
{
"name": "generator-easy-ui5",
"version": "3.8.1",
"description": "Generator for UI5-based project",
"main": "generators/app/index.js",
"type": "module",
"files": [
"generators",
"plugins"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prepublishOnly": "npx [email protected] ./ project --embed",
"start": "yo easy-ui5 project",
"test": "mocha",
"test:subgen:list": "yo easy-ui5 project --list",
"test:subgen:start": "yo easy-ui5 project app",
"release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"postversion": "npm run release:changelog && git commit --all --amend --no-edit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:staged": "lint-staged",
"format": "prettier --write .",
"format:staged": "pretty-quick --staged --verbose",
"prepare": "node ./.husky/skip.js || husky install",
"hooks:commit-msg": "commitlint -e",
"hooks:pre-commit": "npm-run-all --sequential format:staged lint:staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SAP/generator-easy-ui5.git"
},
"keywords": [
"yeoman-generator",
"sap",
"sapui5",
"openui5",
"sapbtp",
"generator",
"scaffold"
],
"author": "SAP",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/SAP/generator-easy-ui5/issues"
},
"homepage": "https://github.com/SAP/generator-easy-ui5#readme",
"dependencies": {
"@octokit/plugin-throttling": "^8.1.3",
"@octokit/rest": "^20.0.2",
"adm-zip": "^0.5.10",
"chalk": "^5.3.0",
"colors": "^1.4.0",
"glob": "^10.3.10",
"libnpmconfig": "^1.2.1",
"node-fetch": "^3.3.2",
"rimraf": "^5.0.5",
"yeoman-environment": "^3.19.3",
"yeoman-generator": "^5.10.0",
"yosay": "^2.0.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"conventional-changelog-cli": "^4.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^7.4.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}