-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.85 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.85 KB
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
{
"name": "@wdio/testrail-reporter",
"version": "0.6.0",
"description": "Create or update a run on testrail and publish the test case results.",
"author": "Brad DerManouelian",
"license": "MIT",
"contributors": [
"Christian Bromann <mail@bromann.dev>",
"Maikel Bruin <maikelbruin@gmail.com>"
],
"main": "./build/cjs/index.js",
"type": "module",
"module": "./build/index.js",
"exports": {
".": [
{
"import": "./build/index.js",
"require": "./build/cjs/index.js"
},
"./build/cjs/index.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio-community/wdio-testrail-reporter"
},
"bugs": {
"url": "https://github.com/webdriverio-community/wdio-testrail-reporter/issues"
},
"homepage": "https://github.com/webdriverio-community/wdio-testrail-reporter#readme",
"scripts": {
"build": "run-s clean compile copy",
"clean": "rimraf ./build",
"compile": "tsc --build tsconfig.json",
"copy": "cp src/cjs/package.json build/cjs",
"test": "run-s test:*",
"test:eslint": "eslint src tests",
"test:unit": "vitest",
"watch": "npm run compile -- --watch"
},
"keywords": [
"wdio-reporter",
"wdio",
"reporter",
"testrail",
"wdio-testrail",
"reporter-testrail"
],
"dependencies": {
"@wdio/logger": "^9.4.4",
"@wdio/reporter": "^9.12.6",
"axios": "^1.9.0"
},
"devDependencies": {
"@types/node": "^25.0.2",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"@wdio/eslint": "^0.1.1",
"c8": "^11.0.0",
"eslint": "^9.26.0",
"eslint-plugin-import": "^2.31.0",
"npm-run-all2": "^8.0.1",
"release-it": "^19.0.2",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"vitest": "^4.0.4"
},
"publishConfig": {
"access": "public"
}
}