-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 2.51 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
{
"name": "openui5-fhir",
"version": "2.4.0",
"author": "SAP SE",
"license": "Apache-2.0",
"description": "The OpenUI5-FHIR Library enables UI5 to the FHIR world",
"repository": {
"type": "git",
"url": "https://github.com/SAP/openui5-fhir.git"
},
"contributors": [
{
"name": "OpenUI5-FHIR Development Team",
"url": "https://github.com/SAP/openui5-fhir/graphs/contributors"
}
],
"keywords": [
"openui5",
"sapui5",
"ui5",
"fhir"
],
"engines": {
"node": ">= 10",
"npm": ">= 5"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-watch": "^8.0.0",
"js-beautify": "^1.15.1",
"jsdoc": "^4.0.3",
"@jsdoc/salty": "^0.2.8",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-junit-reporter": "^2.0.1",
"karma-ui5": "^3.0.4",
"@ui5/cli": "^3.10.0",
"coveralls": "^3.1.1",
"replace-in-file": "^7.1.0",
"js-yaml": "^4.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/changelog": "^6.0.3"
},
"scripts": {
"docs": "npm run docs:prod --packageVersion=$(npm view $npm_package_name version)",
"docs:prod": "npx jsdoc --configure ./lib/jsdoc/create-api-documentation.js --verbose --access public",
"docs:dev": "npx jsdoc --configure ./lib/jsdoc/create-api-documentation.js --verbose --access all",
"serve": "npm run serve:mockserver && npm run serve:ui5",
"serve:ui5": "ui5 serve",
"serve:mockserver": "./scripts/setup_mock.sh",
"serve:mockserver:windows": "@powershell -NoProfile -ExecutionPolicy Unrestricted -Command ./scripts/setup_mock.ps1",
"test": "karma start",
"test:unit": "karma start karma-unit.conf.js",
"test:opa5": "karma start karma-opa5.conf.js",
"test-mockserver": "npm run serve:mockserver && npm test",
"deploy:coverage": "cat ./test-results/coverage/all/lcov/lcov-all.info | coveralls || echo \"Deployment of coverage to coveralls.io failed.\"",
"lint": "eslint src test",
"lint:console": "eslint src test || true",
"lint:file:checkstyle": "eslint -o ./target/eslint/eslint.checkstyle.xml -f checkstyle src test",
"lint:watch": "esw . --watch",
"lint:watch:fix": "esw . --watch --fix",
"lint:watch:fix:debug": "esw . --watch --fix --debug",
"format:xml": "js-beautify --wrap-attributes force-aligned --replace --type html test/**/*.xml",
"prepublishOnly": "node ./scripts/build/builder.js"
},
"files": [
"src/sap/fhir/**",
"ui5.yaml",
"LICENSES/**",
".reuse/**"
]
}