-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "playwright-xray",
"version": "0.6.10",
"description": "XRAY reporter for the Playwright",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"prepare": "npm run build",
"version": "npm run format",
"build": "tsc",
"release": "release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major",
"format": "prettier --write \"(src|tests)/*.(ts)\"",
"test": "node --test --import tsx ./src/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inluxc/playwright-xray.git"
},
"keywords": [
"playwright",
"xray",
"reporter",
"typescript",
"tools"
],
"author": "Fúlvio Carvalhido <inluxc@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/inluxc/playwright-xray/issues"
},
"homepage": "https://github.com/inluxc/playwright-xray#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@playwright/test": "^1.30.0",
"@types/node": "^20.11.25",
"prettier": "^2.5.1",
"release-it": "^17.1.1",
"tsx": "^4.19.2",
"typescript": "^4.5.4"
},
"dependencies": {
"axios": "^1.7.7",
"dayjs": "^1.11.7",
"picocolors": "^1.0.0"
}
}