forked from Xray-App/playwright-junit-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.14 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
{
"name": "@xray-app/playwright-junit-reporter",
"version": "0.3.0",
"description": "generate an enhanced JUnit XML report suitable for Xray with the playwright test results",
"main": "./dist/index.js",
"types": "./dist/types.d.ts",
"files": [
"/dist"
],
"scripts": {
"clean": "rimraf dist test-results .nyc_output",
"build": "tsc -p ./tsconfig.json",
"lint": "npx eslint . --cache --ext .ts",
"prettier": "prettier --write --loglevel warn \"**/**/*.ts\"",
"prepublish": "npm run build",
"test": "npx playwright test",
"typecheck": "tsc",
"test:coverage": "nyc playwright test && nyc report --reporter=lcov --reporter=html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xray-App/playwright-junit-reporter.git"
},
"keywords": [
"playwright",
"junit",
"report"
],
"author": "Sergio Freire <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Xray-App/playwright-junit-reporter/issues"
},
"homepage": "https://github.com/Xray-App/playwright-junit-reporter",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@playwright/test": "^1.46.1",
"@sinonjs/fake-timers": "^9.1.2",
"@types/node": "^18.7.23",
"@types/sinonjs__fake-timers": "^8.1.2",
"@types/ws": "^8.5.4",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"babel-plugin-istanbul": "^6.1.1",
"colors": "^1.4.0",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-notice": "^0.9.10",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"mock-fs": "^5.1.4",
"nyc": "^15.1.0",
"playwright": "^1.46.1",
"playwright-test-coverage": "^1.2.0",
"prettier": "^2.7.1",
"rimraf": "^5.0.0",
"source-map-support": "^0.5.21",
"typescript": "^5.3.2",
"ws": "^8.17.1",
"xml2js": "^0.5.0",
"socksv5": "^0.0.6"
},
"dependencies": {
"@babel/code-frame": "^7.21.4",
"mime": "^3.0.0",
"proxy": "^1.0.2"
}
}