-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.88 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.88 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
{
"name": "@sap-ux/ui5-application-writer",
"description": "Writer module allowing to create a the base UI5 project structure.",
"repository": {
"type": "git",
"url": "https://github.com/SAP/open-ux-tools.git",
"directory": "packages/ui5-application-writer"
},
"bugs": {
"url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Aui5-application-writer"
},
"version": "1.8.5",
"license": "Apache-2.0",
"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": "jest --ci --forceExit --detectOpenHandles --colors",
"test-u": "jest --ci --forceExit --detectOpenHandles --colors -u",
"link": "pnpm link --global",
"unlink": "pnpm unlink --global"
},
"files": [
"LICENSE",
"dist",
"templates",
"!dist/*.map",
"!dist/**/*.map"
],
"dependencies": {
"@sap-ux/ui5-config": "workspace:*",
"@ui5/manifest": "1.85.0",
"ejs": "3.1.10",
"i18next": "25.10.10",
"lodash": "4.18.1",
"mem-fs": "2.1.0",
"mem-fs-editor": "9.4.0",
"semver": "7.7.4"
},
"devDependencies": {
"@sap-ux/eslint-plugin-fiori-tools": "workspace:*",
"@sap-ux/project-access": "workspace:*",
"@types/ejs": "3.1.5",
"@types/fs-extra": "11.0.4",
"@types/lodash": "4.17.24",
"@types/mem-fs": "1.1.2",
"@types/mem-fs-editor": "7.0.1",
"@types/semver": "7.7.1",
"fs-extra": "11.3.4"
},
"engines": {
"node": ">=20.x"
}
}