-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 918 Bytes
/
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
{
"name": "playwright-json-summary-reporter",
"version": "1.2.0",
"description": "A Simple Playwright Reporter",
"license": "MIT",
"repository": "graffhyrum/playwright-json-summary-reporter",
"author": {
"name": "Joshua Pendragon",
"email": "pendragon.josh@gmail.com",
"url": "https://github.com/graffhyrum"
},
"contributors": [
"Butch Mayhew",
"Joshua Pendragon"
],
"main": "./build/src/index.js",
"keywords": [
"playwright",
"reporter",
"package",
"playwrightsolutions",
"playwright-reporter"
],
"devDependencies": {
"@playwright/test": "^1.40.1",
"@types/node": "^20.10.5",
"gts": "^5.2.0",
"typescript": "~5.3.3"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
}
}