-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 923 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 923 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
37
38
39
40
41
42
{
"name": "semantic-playwright",
"version": "0.1.0",
"description": "Semantic element targeting for Playwright - click by description, not selectors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "playwright test",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"playwright",
"testing",
"automation",
"semantic",
"self-healing",
"web-automation",
"e2e",
"locators"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"@playwright/test": ">=1.40.0",
"playwright": ">=1.40.0"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/semantic-engine/semantic-playwright"
}
}