-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.67 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
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
{
"name": "@ui5/task-adaptation",
"version": "1.0.10",
"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 build && npm run coverage",
"dev": "mocha --no-timeouts -r ts-node/register 'test/**/*.spec.ts'",
"perf": "mocha --no-timeouts -r ts-node/register 'test/**/*.perf.ts'",
"coverage": "nyc node_modules/.bin/mocha -r ts-node/register 'test/**/*.spec.ts'",
"coverage-verbose": "nyc --reporter=html --reporter=text node_modules/.bin/mocha -r ts-node/register 'test/**/*.spec.ts'",
"preversion": "npm test",
"version": "git-chglog --next-tag v$npm_package_version -o CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git push --follow-tags",
"release-note": "git-chglog -c .chglog/release-config.yml v$npm_package_version",
"rollup": "ts-node rollup/build.ts",
"build": "npm run rollup && tsc -p ."
},
"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": {
"@buxlabs/amd-to-es6": "^0.16.1",
"@rollup/plugin-node-resolve": "^13.0.4",
"@sap/cf-tools": "^2.0.1",
"@ui5/fs": "^2.0.6",
"@ui5/logger": "^2.0.1",
"@ui5/project": "^2.5.0",
"adm-zip": "^0.5.5",
"amdextract": "^3.0.0",
"argsparser": "0.0.7",
"builtin-modules": "^3.2.0",
"glob": "^7.1.7",
"js-yaml": "^4.1.0",
"node-fetch": "^2.6.1",
"rimraf": "^3.0.2",
"rollup": "^2.56.3",
"semver": "^7.3.5",
"temp-dir": "^2.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/rest": "^18.10.0",
"@types/adm-zip": "^0.4.34",
"@types/chai": "^4.2.21",
"@types/js-yaml": "^4.0.3",
"@types/mocha": "^9.0.0",
"@types/node-fetch": "^2.5.12",
"@types/request": "^2.48.7",
"@types/rimraf": "^3.0.2",
"@types/semver": "^7.3.8",
"@types/sinon": "^10.0.2",
"chai": "^4.3.4",
"chalk": "^4.1.2",
"mocha": "^9.1.0",
"mock-require": "^3.0.3",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"source-map-support": "^0.5.19",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"nyc": {
"reporter": [
"lcov",
"text",
"text-summary"
],
"exclude": [
".eslintrc.js",
"docs/**",
"jsdocs/**",
"coverage/**",
"test/**",
"lib/processors/jsdoc/lib/**",
"dist/**",
"rollup/**",
"rollup.config.js",
"src/model/types.ts",
"src/util/requestUtil.ts"
],
"check-coverage": true,
"statements": 85,
"branches": 70,
"functions": 90,
"lines": 85,
"watermarks": {
"statements": [
70,
90
],
"branches": [
70,
90
],
"functions": [
70,
90
],
"lines": [
70,
90
]
},
"cache": true,
"all": true
},
"types": "dist/index.d.ts"
}