-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.99 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.99 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
{
"name": "@sap-ux/adp-tooling",
"description": "Tooling for UI5 adaptation projects",
"repository": {
"type": "git",
"url": "https://github.com/SAP/open-ux-tools.git",
"directory": "packages/adp-tooling"
},
"bugs": {
"url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Aadp-tooling"
},
"version": "0.18.121",
"license": "Apache-2.0",
"author": "@SAP/ux-tools-team",
"main": "dist/index.js",
"scripts": {
"build": "tsc --build",
"watch": "tsc --watch",
"clean": "rimraf --glob dist test/test-output coverage *.tsbuildinfo",
"format": "prettier --write '**/*.{js,json,ts,yaml,yml}' --ignore-path ../../.prettierignore",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "cross-env FIORI_TOOLS_DISABLE_SECURE_STORE=true jest --ci --forceExit --detectOpenHandles --colors --testPathPatterns=test/unit",
"test-u": "cross-env FIORI_TOOLS_DISABLE_SECURE_STORE=true jest --ci --forceExit --detectOpenHandles --colors -u",
"link": "pnpm link --global",
"unlink": "pnpm unlink --global"
},
"files": [
"LICENSE",
"templates",
"dist",
"ui5.yaml",
"bin",
"!dist/*.map",
"!dist/**/*.map"
],
"dependencies": {
"@sap-devx/yeoman-ui-types": "1.23.0",
"@sap-ux/axios-extension": "workspace:*",
"@sap-ux/btp-utils": "workspace:*",
"@sap-ux/i18n": "workspace:*",
"@sap-ux/inquirer-common": "workspace:*",
"@sap-ux/logger": "workspace:*",
"@sap-ux/nodejs-utils": "workspace:*",
"@sap-ux/odata-service-writer": "workspace:*",
"@sap-ux/project-access": "workspace:*",
"@sap-ux/project-input-validator": "workspace:*",
"@sap-ux/store": "workspace:*",
"@sap-ux/system-access": "workspace:*",
"@sap-ux/ui5-config": "workspace:*",
"@sap-ux/ui5-info": "workspace:*",
"@sap/cf-tools": "3.3.0",
"adm-zip": "0.5.16",
"axios": "1.15.0",
"ejs": "3.1.10",
"i18next": "25.10.10",
"inquirer": "8.2.7",
"js-yaml": "4.1.1",
"mem-fs": "2.1.0",
"mem-fs-editor": "9.7.0",
"prompts": "2.4.2",
"sanitize-filename": "1.6.4",
"uuid": "11.1.0"
},
"devDependencies": {
"@sap-ux/store": "workspace:*",
"@types/adm-zip": "0.5.8",
"@types/ejs": "3.1.5",
"@types/express": "4.17.21",
"@types/inquirer": "8.2.6",
"@types/js-yaml": "4.0.9",
"@types/mem-fs": "1.1.2",
"@types/mem-fs-editor": "7.0.7",
"@types/prompts": "2.4.9",
"@types/supertest": "7.2.0",
"@types/uuid": "11.0.0",
"adm-zip": "0.5.16",
"cross-env": "10.1.0",
"dotenv": "17.4.2",
"express": "4.22.1",
"nock": "14.0.11",
"rimraf": "6.1.3",
"supertest": "7.2.2"
},
"engines": {
"node": ">=20.x"
}
}