vasu-playwright-utils 0.9.0 → 0.10.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.
Files changed (1) hide show
  1. package/package.json +16 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vasu-playwright-utils",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
4
4
  "description": "Playwright Typescript Library with reusable utilities",
5
5
  "main": "./dist/vasu-playwright-lib/index.js",
6
6
  "types": "./dist/vasu-playwright-lib/index.d.ts",
@@ -45,25 +45,25 @@
45
45
  "node": ">=16.0.0"
46
46
  },
47
47
  "dependencies": {
48
- "@playwright/test": "~1.40.1",
49
- "@types/node": "^20.10.4",
50
- "@typescript-eslint/eslint-plugin": "^6.14.0",
51
- "@typescript-eslint/parser": "^6.14.0",
52
- "allure-commandline": "^2.25.0",
48
+ "@playwright/test": "~1.41.0",
49
+ "@types/node": "^20.11.5",
50
+ "@typescript-eslint/eslint-plugin": "^6.19.0",
51
+ "@typescript-eslint/parser": "^6.19.0",
52
+ "allure-commandline": "^2.26.0",
53
53
  "allure-playwright": "^2.10.0",
54
- "axios": "^1.6.2",
54
+ "axios": "^1.6.5",
55
55
  "cross-env": "^7.0.3",
56
56
  "dotenv": "^16.3.1",
57
- "eslint": "^8.55.0",
57
+ "eslint": "^8.56.0",
58
58
  "eslint-config-prettier": "^9.1.0",
59
59
  "eslint-import-resolver-typescript": "^3.6.1",
60
60
  "eslint-plugin-import": "^2.29.1",
61
- "eslint-plugin-jsdoc": "^46.9.1",
62
- "eslint-plugin-playwright": "^0.20.0",
63
- "eslint-plugin-prettier": "^5.0.1",
61
+ "eslint-plugin-jsdoc": "^48.0.2",
62
+ "eslint-plugin-playwright": "^0.21.0",
63
+ "eslint-plugin-prettier": "^5.1.3",
64
64
  "husky": "^8.0.3",
65
65
  "lint-staged": "^15.2.0",
66
- "prettier": "^3.1.1",
66
+ "prettier": "^3.2.4",
67
67
  "rimraf": "^5.0.5",
68
68
  "tslib": "^2.6.2",
69
69
  "typescript": "5.3.3",
@@ -77,8 +77,8 @@
77
77
  "ready": "rimraf dist node_modules package-lock.json && npm i",
78
78
  "prepare": "husky install",
79
79
  "link": "npm run build && npm link",
80
- "lint": "eslint 'src/**/*.ts'",
81
- "lint:fix": "eslint 'src/**/*.ts' --fix",
80
+ "lint": "cross-env eslint 'src/**/*.ts'",
81
+ "lint:fix": "cross-env eslint 'src/**/*.ts' --fix",
82
82
  "format": "cross-env prettier --write 'src/**/*.ts' '**/*.json' '**/*.md' '!package-lock.json' '!dist/**/*' '!build/**/*'"
83
83
  },
84
84
  "husky": {
@@ -88,8 +88,8 @@
88
88
  },
89
89
  "lint-staged": {
90
90
  "*.{json,md,ts}": [
91
- "prettier --write"
91
+ "cross-env prettier --write"
92
92
  ],
93
- "*.{ts}": "eslint --fix"
93
+ "*.{ts}": "cross-env eslint --fix"
94
94
  }
95
95
  }