forked from mauriciolauffer/wdio-qunit-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.7 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
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@yottaa/wdio-qunit-service",
"version": "1.0.0",
"description": "Forked version of WebdriverIO service for running QUnit browser-based tests and dynamically converting them to WDIO test suites.",
"author": "Mauricio Lauffer, Yottaa",
"license": "MIT",
"homepage": "https://github.com/yottaa/wdio-qunit-service#readme",
"type": "module",
"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"
],
"workspaces": [
".",
"examples/*"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc --p tsconfig.esm.json",
"build:cjs": "tsc --p tsconfig.cjs.json",
"test": "run-s test:esm test:features test:qunit test:no:specs test:cjs",
"test:cjs": "npm test -w wdio-cjs",
"test:esm": "npm test -w wdio-esm",
"test:features": "npm test -w wdio-features",
"test:qunit": "npm test -w vanilla-qunit",
"test:no:specs": "npm run test-no-specs -w vanilla-qunit",
"test:ui5:local": "npm test -w openui5-sample-app",
"lint": "eslint --cache",
"lint:ci": "eslint src examples -f @microsoft/eslint-formatter-sarif -o eslint.sarif",
"prepare": "husky",
"commit": "git-cz",
"commitlint": "commitlint --edit",
"commitlint:ci": "commitlint --from $GITHUB_BASE_REF --to $GITHUB_HEAD_REF"
},
"dependencies": {
"cross-dirname": "^0.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.4.0",
"@types/node": "^20.14.2",
"@types/qunit": "^2.19.10",
"@wdio/types": "^8.38.2",
"commitizen": "^4.3.0",
"eslint": "^9.5.0",
"eslint-config-mlauffer-nodejs": "^2.0.3",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-wdio": "^8.37.0",
"husky": "^9.1.4",
"inquirer": "^9.3.6",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.2",
"typescript-eslint": "^8.0.0-alpha.30",
"vitest": "^1.6.0"
},
"peerDependencies": {
"@wdio/cli": ">=8",
"@wdio/local-runner": ">=8",
"@wdio/logger": ">=8",
"@wdio/mocha-framework": ">=8",
"typescript": ">=5",
"webdriverio": ">=8"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"repository": {
"type": "git",
"url": "https://github.com/yottaa/wdio-qunit-service.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"bugs": {
"url": "https://github.com/yottaa/wdio-qunit-service/issues"
}
}