-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
50 lines (50 loc) · 1.85 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
{
"name": "ui5-typescript-control-library",
"version": "1.0.0",
"description": "Showcase of a TypeScript setup for developing UI5 control libraries",
"author": "SAP SE",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/SAP-samples/ui5-typescript-control-library.git"
},
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist coverage",
"build": "npm run build:ts-interfaces && ui5 build --clean-dest",
"build:ts-interfaces": "npx @ui5/ts-interface-generator",
"build:jsdoc": "ui5 build jsdoc --config ui5-jsdoc.yaml --exclude-task buildThemes",
"start": "run-p 'build:ts-interfaces -- --watch' start:server",
"start:server": "ui5 serve --port 8080 -o test-resources/com/myorg/myui5lib/Example.html",
"start:dist": "ui5 serve --port 8080 -o test-resources/com/myorg/myui5lib/Example.html --config ui5-dist.yaml",
"testsuite": "ui5 serve --open test-resources/com/myorg/myui5lib/qunit/testsuite.qunit.html",
"ts-typecheck": "tsc --noEmit",
"format": "prettier --write .",
"lint": "eslint src test",
"karma": "karma start",
"karma-ci": "karma start karma-ci.conf.js",
"karma-ci-cov": "karma start karma-ci-cov.conf.js",
"test": "npm run lint && npm run karma-ci-cov"
},
"devDependencies": {
"@prettier/plugin-xml": "^3.1.1",
"@types/openui5": "1.115.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@ui5/cli": "^3.3.2",
"@ui5/ts-interface-generator": "^0.7.0",
"eslint": "^8.45.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-ui5": "^3.0.3",
"karma-ui5-transpile": "^0.3.24",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"prettier-plugin-properties": "^0.2.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.6",
"ui5-middleware-livereload": "^0.8.4",
"ui5-tooling-transpile": "^0.7.19"
}
}