-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.37 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
{
"name": "wdio-qunit-service",
"version": "1.1.0",
"description": "WebdriverIO service for running QUnit browser-based tests and dinamically converting them to wdio test suites.",
"author": "Mauricio Lauffer",
"license": "MIT",
"homepage": "https://github.com/mauriciolauffer/wdio-qunit-service#readme",
"type": "module",
"packageManager": "pnpm@9.12.2",
"main": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"files": [
"dist"
],
"keywords": [
"ui5",
"openui5",
"sapui5",
"wdi5",
"wdio",
"wdio-plugin",
"wdio-service",
"qunit"
],
"scripts": {
"build": "pnpm run build:esm && pnpm run build:cjs",
"build:esm": "tsc --p tsconfig.esm.json",
"build:cjs": "tsc --p tsconfig.cjs.json",
"test": "wdio run examples/wdio.conf.js --suite ui5 --suite qunit",
"test:ui5": "wdio run examples/wdio.conf.js --suite ui5",
"test:qunit": "wdio run examples/wdio.conf.js --suite qunit",
"test:no:specs": "wdio run examples/wdio.no-specs.conf.js",
"lint": "prettier . --check --cache && eslint --cache",
"lint:ci": "eslint --quiet -f @microsoft/eslint-formatter-sarif -o eslint.sarif",
"pretty": "prettier . --write --cache"
},
"dependencies": {
"cross-dirname": "^0.1.0"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/qunit": "^2.19.12",
"@wdio/spec-reporter": "^9.2.14",
"@wdio/static-server-service": "^9.2.2",
"@wdio/types": "^9.2.2",
"eslint": "^9.16.0",
"eslint-config-mlauffer-nodejs": "^3.0.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-wdio": "^9.2.11",
"globals": "^15.13.0",
"prettier": "^3.4.1",
"puppeteer-core": "^23.9.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript-eslint": "^8.16.0",
"vitest": "^2.1.7",
"wdio-monocart-service": "^1.0.2"
},
"peerDependencies": {
"@wdio/cli": "^9",
"@wdio/globals": "^9",
"@wdio/local-runner": "^9",
"@wdio/logger": "^9",
"@wdio/mocha-framework": "^9",
"typescript": "^5",
"webdriverio": "^9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mauriciolauffer/wdio-qunit-service.git"
},
"bugs": {
"url": "https://github.com/mauriciolauffer/wdio-qunit-service/issues"
},
"engines": {
"pnpm": ">=9"
}
}