forked from estruyf/playwright-github-actions-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.36 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
{
"name": "@midleman/github-actions-reporter",
"version": "1.9.5",
"description": "GitHub Actions reporter for Playwright",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "NODE_ENV=development npx playwright test",
"test:jest": "jest --coverage --coverageDirectory=../coverage"
},
"author": "Elio Struyf <[email protected]>",
"maintainers": [
{
"name": "Marie Idleman",
"email": "[email protected]"
}
],
"license": "MIT",
"homepage": "https://github.com/midleman/pw-github-actions-reporter",
"bugs": {
"url": "https://github.com/midleman/pw-github-actions-reporter/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/estruyf"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/midleman/pw-github-actions-reporter"
},
"keywords": [
"playwright",
"github",
"actions",
"reporter"
],
"devDependencies": {
"@playwright/test": "^1.42.1",
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.17",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.1.6"
},
"dependencies": {
"@actions/core": "^1.10.0",
"ansi-to-html": "^0.7.2",
"marked": "^12.0.1"
},
"peerDependencies": {
"@playwright/test": "^1.42.1"
}
}