-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1018 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 1018 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
{
"name": "dotnetdevs-austria-tests",
"version": "1.0.0",
"description": "Automated tests for DotNetDevs.at website",
"scripts": {
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:update-snapshots": "playwright test --update-snapshots",
"test:report": "playwright show-report",
"build": "bundle exec jekyll build",
"serve": "bundle exec jekyll serve --incremental",
"test:ci": "npm run build && playwright test",
"generate:onsite": "node scripts/generate.js templates/onsite_event.txt",
"generate:remote": "node scripts/generate.js templates/remote_event.txt",
"generate:recording-title": "node scripts/generate_recording_title_image.js"
},
"devDependencies": {
"@playwright/test": "^1.40.0"
},
"keywords": [
"jekyll",
"playwright",
"testing",
"approval-testing"
],
"author": "DotNetDevs Austria",
"license": "MIT",
"dependencies": {
"gray-matter": "^4.0.3"
}
}