-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.91 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "generator-easy-ui5",
"version": "3.11.0",
"description": "Generator for UI5-based project",
"main": "generators/app/index.js",
"type": "module",
"files": [
"generators",
"plugins"
],
"engines": {
"node": ">=22.13"
},
"scripts": {
"embed": "npx yo@7.0.1 ./generators/app/index.js 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",
"changeset": "changeset",
"changeset:auto": "node ./scripts/auto-changeset.mjs",
"changeset:empty": "changeset --empty",
"changeset:status": "changeset status --since=origin/main",
"version-packages": "changeset version && npm install --package-lock-only --ignore-scripts",
"release-publish": "changeset publish",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:ci": "eslint . --max-warnings 0",
"lint:staged": "lint-staged",
"format": "prettier --write .",
"format:staged": "pretty-quick --staged --verbose",
"prepare": "node ./.husky/skip.js || husky",
"hooks:commit-msg": "commitlint -e",
"hooks:pre-commit": "npm run format:staged && npm run lint:staged",
"lint:lockfile": "lockfile-lint --path package-lock.json --type npm --allowed-hosts npm --validate-https"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ui5-community/generator-easy-ui5.git"
},
"keywords": [
"yeoman-generator",
"sap",
"sapui5",
"openui5",
"sapbtp",
"generator",
"scaffold"
],
"author": "SAP",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ui5-community/generator-easy-ui5/issues"
},
"homepage": "https://github.com/ui5-community/generator-easy-ui5#readme",
"dependencies": {
"@octokit/plugin-throttling": "11.0.3",
"@octokit/request": "10.0.10",
"@octokit/rest": "22.0.1",
"adm-zip": "0.5.17",
"chalk": "5.6.2",
"glob": "13.0.6",
"node-fetch": "3.3.2",
"rimraf": "6.1.3",
"yeoman-environment": "6.1.0",
"yeoman-generator": "8.2.2"
},
"devDependencies": {
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.0",
"@commitlint/cli": "21.1.0",
"@commitlint/config-conventional": "21.1.0",
"@eslint/js": "10.0.1",
"eslint": "10.5.0",
"eslint-plugin-n": "18.1.0",
"eslint-plugin-security": "4.0.1",
"fs-extra": "11.3.5",
"globals": "17.7.0",
"husky": "9.1.7",
"lint-staged": "17.0.8",
"lockfile-lint": "5.0.0",
"mocha": "11.7.6",
"prettier": "3.8.4",
"pretty-quick": "4.2.2",
"yeoman-assert": "3.1.1",
"yeoman-test": "11.6.0",
"yosay": "3.0.0"
},
"overrides": {
"serialize-javascript": "7.0.5",
"diff": "8.0.3",
"conventional-commits-parser": "6.4.0",
"js-yaml": "4.2.0",
"tar": "7.5.16"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}