forked from webdriverio-community/wdio-testrail-reporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.77 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
{
"name": "@wdio/testrail-reporter",
"version": "0.2.3",
"description": "Create a run on testrail and the update the test cases results",
"author": "Brad DerManouelian",
"license": "MIT",
"contributors": [
"Christian Bromann <[email protected]>"
],
"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": "^8.1.0",
"@wdio/reporter": "^8.4.0",
"axios": "^1.3.4"
},
"devDependencies": {
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"c8": "^8.0.0",
"eslint": "^8.35.0",
"eslint-plugin-import": "^2.27.5",
"npm-run-all": "^4.1.5",
"release-it": "^16.1.0",
"rimraf": "^5.0.0",
"typescript": "^5.0.2",
"vitest": "^0.34.1"
},
"publishConfig": {
"access": "public"
}
}