playwright-step-decorator-plugin 1.0.1

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/package.json ADDED
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "playwright-step-decorator-plugin",
3
+ "version": "1.0.1",
4
+ "description": "TypeScript @step decorator and ESLint plugin for Playwright test steps in Page Object Models",
5
+ "license": "MIT",
6
+ "author": "Emanuele Minotto",
7
+ "keywords": [
8
+ "playwright",
9
+ "decorator",
10
+ "step",
11
+ "page-object",
12
+ "pom",
13
+ "eslint",
14
+ "eslint-plugin",
15
+ "typescript",
16
+ "testing",
17
+ "automation"
18
+ ],
19
+ "homepage": "https://github.com/EmanueleMinotto/playwright-step-decorator-plugin#readme",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/EmanueleMinotto/playwright-step-decorator-plugin.git"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/EmanueleMinotto/playwright-step-decorator-plugin/issues"
26
+ },
27
+ "main": "./dist/index.js",
28
+ "module": "./dist/index.mjs",
29
+ "types": "./dist/index.d.ts",
30
+ "exports": {
31
+ ".": {
32
+ "types": "./dist/index.d.ts",
33
+ "import": "./dist/index.mjs",
34
+ "require": "./dist/index.js"
35
+ },
36
+ "./decorator": {
37
+ "types": "./dist/decorator/index.d.ts",
38
+ "import": "./dist/decorator/index.mjs",
39
+ "require": "./dist/decorator/index.js"
40
+ },
41
+ "./eslint-plugin": {
42
+ "types": "./dist/eslint-plugin/index.d.ts",
43
+ "import": "./dist/eslint-plugin/index.mjs",
44
+ "require": "./dist/eslint-plugin/index.js"
45
+ },
46
+ "./package.json": "./package.json"
47
+ },
48
+ "files": [
49
+ "dist",
50
+ "README.md",
51
+ "LICENSE"
52
+ ],
53
+ "engines": {
54
+ "node": ">=18.0.0"
55
+ },
56
+ "scripts": {
57
+ "build": "tsup",
58
+ "dev": "tsup --watch",
59
+ "test": "vitest run",
60
+ "test:watch": "vitest",
61
+ "lint": "eslint src tests",
62
+ "typecheck": "tsc --noEmit",
63
+ "prepublishOnly": "npm run typecheck && npm run lint && npm test && npm run build"
64
+ },
65
+ "dependencies": {
66
+ "@alduino/humanizer": "^1.1.0"
67
+ },
68
+ "peerDependencies": {
69
+ "@playwright/test": "^1.40.0 || ^2.0.0",
70
+ "eslint": "^8.0.0 || ^9.0.0"
71
+ },
72
+ "peerDependenciesMeta": {
73
+ "eslint": {
74
+ "optional": true
75
+ }
76
+ },
77
+ "devDependencies": {
78
+ "@playwright/test": "^1.49.0",
79
+ "@typescript-eslint/rule-tester": "^8.0.0",
80
+ "@typescript-eslint/utils": "^8.0.0",
81
+ "eslint": "^9.0.0",
82
+ "tsup": "^8.0.0",
83
+ "typescript": "^5.0.0",
84
+ "typescript-eslint": "^8.57.2",
85
+ "vitest": "^3.0.0"
86
+ }
87
+ }