-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 816 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 816 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
{
"name": "scim-client",
"version": "1.0.0",
"description": "SCIM Client Test Harness with E2E Testing",
"scripts": {
"start": "npx http-server -p 8001 -o",
"build": "echo 'Static files are ready to serve'",
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:ui": "playwright test --ui",
"test:report": "playwright show-report",
"install-browsers": "playwright install",
"api-test": "./run-api-tests.sh",
"setup-test-env": "./test-setup.sh"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"http-server": "^14.1.1"
},
"dependencies": {
"ajv": "^8.12.0"
},
"keywords": ["scim", "testing", "e2e", "identity-management"],
"author": "SCIM Client Team",
"license": "MIT"
}