-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "playwright-merge-html-reports",
"version": "0.2.8",
"description": "Merge Playwright HTML reports",
"homepage": "https://github.com/Rippling/playwright-merge-html-reports#readme",
"bugs": {
"url": "https://github.com/Rippling/playwright-merge-html-reports/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rippling/playwright-merge-html-reports.git"
},
"main": "dist/merge-reports.js",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "ts-node --project=tsconfig.test.json ./src/merge-reports.spec.ts",
"clean": "rm -rf dist/",
"test:js": "node ./src/merge-reports.spec.js",
"compile": "tsc",
"watch": "tsc -w",
"build": "npm run clean && npm run compile",
"show-merged-report": "playwright show-report merged-html-report"
},
"keywords": [
"playwright-merge-html-reports",
"playwright html reports"
],
"author": "Anoop Raveendran",
"license": "Apache-2.0",
"peerDependencies": {
"@playwright/test": ">= 1.18.1"
},
"dependencies": {
"jszip": "^3.7.1",
"yazl": "^2.5.1"
},
"devDependencies": {
"@playwright/test": "^1.21.1",
"@tsconfig/node14": "^1.0.1",
"@types/node": "^17.0.18",
"@types/yazl": "^2.4.2",
"ts-node": "^10.5.0",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"files": [
"dist"
]
}