-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
68 lines (68 loc) · 1.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
{
"name": "wdio-reportportal-reporter",
"version": "7.6.0",
"description": "A WebdriverIO v6 plugin. Report results to Report Portal.",
"main": "build/reporter.js",
"scripts": {
"build": "run-s clean compile",
"clean": "rimraf ./build ./coverage",
"compile": "node ./node_modules/typescript/lib/tsc.js",
"lint": "tslint -c tslint.json 'lib/**/*.{ts,tsx}'",
"test": "run-s lint compile test:unit",
"test:unit": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/borisosipov/wdio-reportportal-reporter.git"
},
"directories": {
"lib": "./lib"
},
"keywords": [
"reporter",
"webdriverio",
"wdio",
"wdio-plugin",
"wdio-reporter",
"reportportal"
],
"author": "Boris Osipov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/borisosipov/wdio-reportportal-reporter/issues"
},
"homepage": "https://github.com/borisosipov/wdio-reportportal-reporter#readme",
"dependencies": {
"@wdio/logger": "^7.26.0",
"@wdio/reporter": "^7.28.0",
"json-stringify-safe": "^5.0.1",
"reportportal-js-client": "^2.2.1",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^14.17.34",
"jest": "^28.1.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"contributors": [
"Boris Osipov <[email protected]>"
],
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "/__tests__/.*\\.spec.(ts)$"
}
}