slik-report 1.0.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/dist/index.js ADDED
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""}
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "slik-report",
3
+ "version": "1.0.0",
4
+ "description": "A powerful Playwright reporter for aggregating test results, flakiness analysis, and historical trend tracking.",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "scripts": {
8
+ "build": "npx tsc",
9
+ "prepublishOnly": "npm run build"
10
+ },
11
+ "keywords": [
12
+ "playwright",
13
+ "reporter",
14
+ "aggregator",
15
+ "slik-report",
16
+ "test-report"
17
+ ],
18
+ "author": "Your Name Here",
19
+ "license": "ISC",
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "devDependencies": {
24
+ "@types/node": "^20.11.24",
25
+ "typescript": "^5.3.3"
26
+ },
27
+ "peerDependencies": {
28
+ "playwright": ">=1.30.0"
29
+ }
30
+ }