-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.57 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
{
"name": "playwright-s3-reporter",
"version": "1.4.0",
"description": "A Playwright Reporter for uploading traces to S3 compatible services.",
"main": "dist/reporter.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"formatting:fix": "prettier --write .",
"formatting:check": "prettier --check .",
"lint:fix": "eslint --fix .",
"lint:check": "eslint .",
"prepare": "husky",
"preversion": "npm run lint:check && npm run formatting:check && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonasclaes/playwright-s3-reporter.git"
},
"keywords": [
"playwright",
"s3",
"reporter"
],
"author": "Jonas Claes <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jonasclaes/playwright-s3-reporter/issues"
},
"homepage": "https://github.com/jonasclaes/playwright-s3-reporter#readme",
"peerDependencies": {
"@playwright/test": "^1.36.2",
"playwright-core": "^1.36.2"
},
"devDependencies": {
"@smithy/types": "^3.0.0",
"@types/mime": "^3.0.4",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"prettier": "^3.0.3",
"typescript": "^5.1.6"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.490.0",
"mime": "^3.0.0"
}
}