-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@civitas-cerebrum/element-repository",
"version": "0.1.1",
"description": "A lightweight, robust package that decouples your UI selectors from your test code. By externalizing locators into a central JSON repository, you make your test automation framework cleaner, easier to maintain, and accessible to non-developers.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"test": "npx playwright test",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"webdriverio": "^9.27.0"
},
"peerDependencies": {
"@playwright/test": "^1.58.2",
"webdriverio": "^9.27.0"
},
"peerDependenciesMeta": {
"@playwright/test": {
"optional": true
},
"webdriverio": {
"optional": true
}
},
"keywords": [
"playwright",
"automation",
"locators",
"selectors",
"clean-code",
"page-object-model",
"test-automation",
"json-repository"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git@github.com/civitas-cerebrum/element-repository.git"
},
"author": "Umut Ay Bora",
"license": "MIT",
"dependencies": {
"@civitas-cerebrum/test-coverage": "^0.0.9"
}
}