-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1009 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 1009 Bytes
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
{
"name": "playwright_page_object",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "playwright test",
"prettier": "npx prettier . --write",
"format:check": "prettier --check tests/**/*.ts src/**/*.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint tests/**/*.ts src/**/*.ts --ext .ts",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dashnik/playwright_page_object.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dashnik/playwright_page_object/issues"
},
"homepage": "https://github.com/Dashnik/playwright_page_object#readme",
"devDependencies": {
"@playwright/test": "^1.56.0",
"@types/node": "^24.7.2",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"prettier": "3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
}
}