UNPKG

ui5-test-runner

Version:
84 lines (83 loc) 2.82 kB
{ "name": "ui5-test-runner", "version": "5.3.5", "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.0", "@ui5/cli": "^4.0.10", "@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.6.3", "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" ] } }