-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
83 lines (83 loc) · 2.75 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
{
"name": "ui5-test-runner",
"version": "5.3.7",
"description": "Standalone test runner for UI5",
"main": "index.js",
"bin": {
"ui5-test-runner": "./index.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "standard --fix",
"test": "npm run test:unit && npm run test:e2e",
"test:samples": "npm run test:samples:js && npm run test:samples:ts",
"test:samples:js": "npm run test:sample:js:legacy && npm run test:sample:js:coverage:legacy && npm run test:sample:js:legacy-remote && npm run test:sample:js:coverage:legacy-remote && npm run test:sample:js:remote && npm run test:sample:js:coverage:remote && npm run test:sample:js:basic-authent && npm run test:sample:js:legacy:split-opa && npm run test:sample:js:remote:split-opa",
"test:coverall": "rimraf .nyc_output && jest --coverageDirectory .nyc_output --coverageReporters json && nyc --silent --no-clean npm run test:e2e && nyc merge .nyc_output .nyc_output/final/coverage.json && nyc report --temp-dir .nyc_output/final/ --report-dir coverage --branches 80 --functions 80 --lines 80 --statements 80",
"test:unit": "jest",
"test:unit:debug": "node --inspect node_modules/jest/bin/jest.js --runInBand --no-coverage",
"test:e2e": "node test/e2e",
"test:report": "node ./src/defaults/report.js ./test/report && reserve --config ./test/report/reserve.json",
"test:text-report": "node ./src/defaults/text-report.js ./test/report",
"build:doc": "node build/doc",
"clean": "npm uninstall -g ui5-test-runner puppeteer nyc selenium-webdriver playwright webdriverio jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArnaudBuchholz/ui5-test-runner.git"
},
"keywords": [
"REserve",
"test",
"continuous",
"integration",
"code",
"coverage",
"ui5"
],
"author": "Arnaud Buchholz",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArnaudBuchholz/ui5-test-runner/issues"
},
"homepage": "https://github.com/ArnaudBuchholz/ui5-test-runner#readme",
"dependencies": {
"commander": "^12.1.0",
"punybind": "^1.2.1",
"punyexpr": "^1.0.4",
"reserve": "2.0.5"
},
"devDependencies": {
"@openui5/types": "^1.130.1",
"@ui5/cli": "^4.0.11",
"@ui5/middleware-code-coverage": "^2.0.1",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"nock": "^13.5.6",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"standard": "^17.1.2",
"start-server-and-test": "^2.0.8",
"typescript": "^5.7.2",
"ui5-tooling-transpile": "^3.5.1"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"overrides": {
"axios": "1.7.4"
},
"standard": {
"env": [
"browser",
"qunit",
"node",
"jest"
],
"globals": [
"sap",
"opaTest"
]
}
}