ui5-test-runner
Version:
Standalone test runner for UI5
96 lines (95 loc) • 3.4 kB
JSON
{
"name": "ui5-test-runner",
"version": "5.12.0",
"description": "Standalone test runner for UI5",
"main": "index.js",
"bin": {
"ui5-test-runner": "./index.js"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"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",
"pretest:e2e": "npm install -g puppeteer selenium-webdriver playwright webdriverio jsdom",
"test:e2e": "node . --batch \"test/e2e/[\\w_]*\\.json\" --report-dir e2e --start \"node test/e2e/serve.js\" --start-wait-url http://localhost:8081 --start-wait-method HEAD --start-timeout 30s",
"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",
"update": "ncu -i --format group",
"semantic-release": "semantic-release"
},
"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",
"pidtree": "^0.6.0",
"punybind": "^1.2.1",
"punyexpr": "1.2.0",
"reserve": "2.3.4"
},
"devDependencies": {
"@openui5/types": "^1.143.0",
"@semantic-release/npm": "^13.1.2",
"@ui5/cli": "^4.0.37",
"@ui5/middleware-code-coverage": "^2.0.2",
"baseline-browser-mapping": "^2.8.32",
"dotenv": "^16.5.0",
"jest": "^29.7.0",
"nock": "^14.0.10",
"npm-check-updates": "^18.3.0",
"nyc": "^17.1.0",
"rimraf": "^6.1.2",
"semantic-release": "^25.0.2",
"standard": "^17.1.2",
"typescript": "^5.9.3",
"ui5-tooling-transpile": "^3.9.2"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"overrides": {
"axios": "1.7.4"
},
"standard": {
"env": [
"browser",
"qunit",
"node",
"jest"
],
"globals": [
"sap",
"opaTest",
"normalizePath"
]
}
}