-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.18 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.18 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
{
"name": "@sap-ux/generator-adp",
"displayName": "SAPUI5 Adaptation Project",
"homepage": "https://help.sap.com/viewer/584e0bcbfd4a4aff91c815cefa0bce2d/Cloud/en-US/ada9567b767941aba8d49fdb4fdedea7.html",
"description": "Adaptation project allows you to create an app variant for an existing SAP Fiori elements-based or SAPUI5 freestyle application, without changing the original application.",
"version": "0.9.62",
"repository": {
"type": "git",
"url": "https://github.com/SAP/open-ux-tools.git",
"directory": "packages/generator-adp"
},
"bugs": {
"url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue"
},
"license": "Apache-2.0",
"main": "generators/app/index.js",
"scripts": {
"build": "tsc --build",
"clean": "rimraf --glob generators test/test-output coverage *.tsbuildinfo",
"watch": "tsc --watch",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "jest --ci --forceExit --detectOpenHandles --colors",
"test-u": "jest --ci --forceExit --detectOpenHandles --colors -u",
"test:abap": "jest --ci --forceExit --detectOpenHandles --colors test/app.test.ts --testNamePattern=\"ABAP Environment\"",
"test:cf": "jest --ci --forceExit --detectOpenHandles --colors test/app.test.ts --testNamePattern=\"CF Environment\"",
"link": "pnpm link --global",
"unlink": "pnpm unlink --global"
},
"files": [
"LICENSE",
"generators",
"yeoman.png",
"!generators/*.map",
"!generators/**/*.map"
],
"keywords": [
"yeoman-generator"
],
"dependencies": {
"@sap-devx/yeoman-ui-types": "1.23.0",
"@sap-devx/feature-toggle-node": "2.1.0",
"@sap-ux/adp-tooling": "workspace:*",
"@sap-ux/axios-extension": "workspace:*",
"@sap-ux/btp-utils": "workspace:*",
"@sap-ux/feature-toggle": "workspace:*",
"@sap-ux/inquirer-common": "workspace:*",
"@sap-ux/logger": "workspace:*",
"@sap-ux/project-access": "workspace:*",
"@sap-ux/store": "workspace:*",
"@sap-ux/system-access": "workspace:*",
"@sap-ux/project-input-validator": "workspace:*",
"@sap-ux/fiori-generator-shared": "workspace:*",
"@sap-ux/odata-service-writer": "workspace:*",
"@sap-ux/telemetry": "workspace:*",
"i18next": "25.10.10",
"yeoman-generator": "5.10.0",
"uuid": "14.0.0"
},
"devDependencies": {
"@jest/types": "30.3.0",
"@types/fs-extra": "11.0.4",
"@types/inquirer": "8.2.6",
"@types/vscode": "1.110.0",
"@sap-ux/deploy-config-sub-generator": "workspace:*",
"@types/yeoman-environment": "2.10.11",
"@types/yeoman-generator": "5.2.14",
"@types/yeoman-test": "4.0.6",
"@types/uuid": "11.0.0",
"@vscode-logging/logger": "2.0.8",
"fs-extra": "11.3.4",
"rimraf": "6.1.3",
"yeoman-test": "6.3.0"
},
"engines": {
"node": ">=20.x"
},
"generator-filter": {
"types": [
"adaptation-project",
"project",
"tools-suite"
]
}
}