-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "generator-ui5-project",
"version": "0.4.1",
"description": "(Sub-)generator for a project UI5 project",
"author": "SAP SE & UI5 Community",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ui5-community/generator-ui5-project.git"
},
"type": "module",
"files": [
"generators"
],
"keywords": [
"yeoman-generator"
],
"main": "generators/project/index.js",
"dependencies": {
"@sap-ux/axios-extension": "^1.12.0",
"@sap-ux/fe-fpm-writer": "^0.24.3",
"@sap-ux/fiori-freestyle-writer": "^0.21.3",
"@sap-ux/odata-service-writer": "^0.17.2",
"@sap-ux/project-access": "^1.16.2",
"chalk": "^5.3.0",
"path": "^0.12.7",
"yaml": "^2.3.4",
"yeoman-environment": "^4.1.3",
"yeoman-generator": "^7.1.1"
},
"scripts": {
"test": "mocha",
"debug:test": "node --inspect node_modules/.bin/_mocha",
"dev:project": "yo ui5-project:project",
"dev:uimodule": "yo ui5-project:uimodule",
"debug:project": "node --inspect node_modules/yo/lib/cli.js ui5-project:project",
"debug:uimodule": "node --inspect node_modules/yo/lib/cli.js ui5-project:uimodule"
},
"devDependencies": {
"mocha": "^10.4.0",
"nock": "^13.5.4",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^8.3.0",
"yo": "^5.0.0"
}
}