testlens-playwright-reporter 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +238 -0
- package/index.d.ts +76 -0
- package/index.js +696 -0
- package/index.ts +814 -0
- package/lib/index.js +642 -0
- package/package.json +73 -0
package/package.json
ADDED
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "testlens-playwright-reporter",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Universal Playwright reporter for TestLens - works with both TypeScript and JavaScript projects",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"index.js",
|
|
9
|
+
"index.d.ts",
|
|
10
|
+
"index.ts",
|
|
11
|
+
"lib/",
|
|
12
|
+
"README.md",
|
|
13
|
+
"CHANGELOG.md"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"prepack": "node build-embed-env.js",
|
|
17
|
+
"prepublishOnly": "npm run lint && npm run test",
|
|
18
|
+
"test": "echo 'Tests will be added in future versions'",
|
|
19
|
+
"lint": "echo 'Linting passed - no linter configured yet'",
|
|
20
|
+
"build": "tsc",
|
|
21
|
+
"dev": "node index.js"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"playwright",
|
|
25
|
+
"reporter",
|
|
26
|
+
"testing",
|
|
27
|
+
"testlens",
|
|
28
|
+
"typescript",
|
|
29
|
+
"javascript",
|
|
30
|
+
"e2e",
|
|
31
|
+
"automation",
|
|
32
|
+
"ci-cd",
|
|
33
|
+
"dashboard",
|
|
34
|
+
"test-reporting"
|
|
35
|
+
],
|
|
36
|
+
"author": {
|
|
37
|
+
"name": "TestLens Team",
|
|
38
|
+
"email": "support@testlens.io",
|
|
39
|
+
"url": "https://testlens.io"
|
|
40
|
+
},
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"peerDependencies": {
|
|
43
|
+
"@playwright/test": ">=1.40.0"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@aws-sdk/client-s3": "^3.624.0",
|
|
47
|
+
"@aws-sdk/s3-request-presigner": "^3.624.0",
|
|
48
|
+
"axios": "^1.11.0",
|
|
49
|
+
"dotenv": "^16.4.5",
|
|
50
|
+
"mime": "^4.0.4"
|
|
51
|
+
},
|
|
52
|
+
"engines": {
|
|
53
|
+
"node": ">=16.0.0",
|
|
54
|
+
"npm": ">=8.0.0"
|
|
55
|
+
},
|
|
56
|
+
"repository": {
|
|
57
|
+
"type": "git",
|
|
58
|
+
"url": "git+https://github.com/alternative-path/testlens-reporter.git",
|
|
59
|
+
"directory": "."
|
|
60
|
+
},
|
|
61
|
+
"bugs": {
|
|
62
|
+
"url": "https://github.com/alternative-path/testlens-reporter/issues"
|
|
63
|
+
},
|
|
64
|
+
"homepage": "https://github.com/alternative-path/testlens-reporter#readme",
|
|
65
|
+
"publishConfig": {
|
|
66
|
+
"access": "public",
|
|
67
|
+
"registry": "https://registry.npmjs.org/"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@types/node": "^24.3.1",
|
|
71
|
+
"typescript": "^5.9.2"
|
|
72
|
+
}
|
|
73
|
+
}
|