generated from civitas-cerebrum/element-repository
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.01 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.01 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
58
59
60
61
62
63
{
"name": "@civitas-cerebrum/element-interactions",
"version": "0.1.4",
"description": "A robust, readable interaction and assertion Facade for Playwright. Abstract away boilerplate into semantic, English-like methods, making 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": "npm run test:unit",
"test:all": "npm run test:unit && npm run test:email",
"test:unit": "npx playwright test --grep-invert 'Email Integration Tests'",
"test:email": "npx playwright test --grep 'Email Integration Tests'",
"test:ui": "npx playwright test --headed",
"prepublishOnly": "npm run build",
"postinstall": "node scripts/postinstall.js",
"test:quiet": "TESTER_DEBUG=false npx playwright test",
"test:coverage": "npx test-coverage",
"test:with-coverage": "npx playwright test --grep-invert 'Email Integration Tests' && npx test-coverage --format github-plain"
},
"files": [
"dist",
"skills",
"scripts/postinstall.js"
],
"peerDependencies": {
"@playwright/test": ">=1.0.0"
},
"devDependencies": {
"@civitas-cerebrum/test-coverage": "^0.0.9",
"@playwright/test": "^1.58.2",
"@types/debug": "^4.1.13",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"playwright",
"automation",
"interactions",
"assertions",
"clean-code",
"facade-pattern",
"test-automation",
"steps-api"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/civitas-cerebrum/element-interactions.git"
},
"author": "Umut Ay Bora",
"license": "MIT",
"dependencies": {
"@civitas-cerebrum/context-store": "^0.0.2",
"@civitas-cerebrum/element-repository": "^0.1.1",
"@civitas-cerebrum/email-client": "^0.0.6",
"debug": "^4.4.3",
"dotenv": "^17.3.1"
}
}