-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 4.27 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 4.27 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@ui5/task-adaptation",
"version": "1.6.4",
"description": "Custom task for ui5-builder which allows building UI5 Flexibility Adaptation Projects for SAP BTP, Cloud Foundry environment",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run build && npm run coverage",
"lint": "eslint ./src ./test/lib",
"dev": "UI5_LOG_LVL=error mocha --no-timeouts --no-warnings --import=tsx 'test/lib/**/*.spec.ts'",
"perf": "UI5_LOG_LVL=error mocha --no-timeouts --no-warnings --import=tsx 'test/lib/**/*.perf.ts'",
"coverage": "c8 npm run dev",
"preversion": "npm test",
"version": "git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md",
"prepublishOnly": "git push --follow-tags",
"release-note": "git-chglog -c .chglog/release-config.yml v$npm_package_version",
"rollup": "tsx rollup/rollup.ts",
"build": "npm run rollup && tsc -p ./",
"download-metadata": "tsx scripts/metadataDownloadHelper.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/SAP/ui5-task-adaptation.git"
},
"keywords": [
"adaptation",
"ui5",
"builder",
"tools",
"business",
"application",
"studio"
],
"author": "SAP SE",
"license": "Apache-2.0",
"dependencies": {
"@sap-ux/axios-extension": "^1.22.9",
"@sap-ux/btp-utils": "^1.1.3",
"@sap-ux/store": "^1.5.13",
"@sap-ux/system-access": "^0.7.5",
"@sap/cf-tools": "^3.2.2",
"@ui5/fs": "^4.0.1",
"@ui5/logger": "^4.0.1",
"adm-zip": "^0.5.5",
"axios": "^1.8.3",
"crc": "^4.3.2",
"dotenv": "^16.0.3",
"filenamify": "^6.0.0",
"jsdom": "^23.0.1",
"transliteration": "^2.3.5",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@buxlabs/amd-to-es6": "^0.16.4",
"@octokit/plugin-retry": "^8.0.1",
"@octokit/rest": "^22.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/adm-zip": "^0.4.34",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/js-yaml": "^4.0.3",
"@types/jsdom": "^21.1.6",
"@types/mocha": "^9.1.0",
"@types/semver": "^7.3.8",
"@types/sinon": "^10.0.16",
"@types/yargs": "^17.0.33",
"@ui5/builder": "^4.1.3",
"@ui5/project": "^4.0.9",
"amdextract": "^3.0.0",
"builtin-modules": "^3.2.0",
"c8": "^10.1.3",
"chai": "^6.2.1",
"chai-as-promised": "^8.0.2",
"eslint": "^9.22.0",
"eslint-plugin-import": "^2.31.0",
"esmock": "^2.7.3",
"glob": "^13.0.0",
"js-yaml": "^4.1.0",
"meriyah": "^6.0.3",
"minimatch": "^9.0.3",
"mocha": "^11.7.5",
"mock-require": "^3.0.3",
"rollup": "^4.24.0",
"semver": "^7.3.5",
"sinon": "^18.0.1",
"source-map-support": "^0.5.19",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"yargs": "^17.7.2"
},
"c8": {
"src": "./src",
"all": true,
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
"coverage/**",
"test/**",
"dist/**",
"src/model/types.ts",
"src/util/requestUtil.ts",
"src/util/renamingHandlers/renamingHandler.ts",
"scripts/**/*.js",
"*/**/*.d.ts",
"src/annotations/comparator/diffCase.ts",
"src/annotations/transformers/transformer.ts",
"src/model/configuration.ts",
"src/model/appVariantIdHierarchyItem.ts",
"src/adapters/adapter.ts",
"src/adapters/previewAdapter.ts",
"src/repositories/repository.ts",
"src/annotations/annotationManager.ts"
],
"check-coverage": true,
"statements": 85,
"branches": 70,
"functions": 90,
"lines": 85
},
"types": "dist/index.d.ts",
"type": "module",
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.28.1",
"@rollup/rollup-linux-x64-musl": "^4.28.1"
}
}