-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 803 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 803 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": "ozone-e2e",
"version": "next",
"license": "MPL-2.0",
"description": "These are end-to-end automated tests covering all Ozone HIS workflows",
"main": "index.js",
"files": [
"**/*",
"!**/.git*/",
"!*.gitignore",
"!node_modules/",
"!tests/",
"!test-results/",
"!playwright-report/"
],
"scripts": {
"ozone-e2e": "npx playwright test",
"openmrs-distro-his": "npx playwright test odoo-openmrs openmrs-senaite"
},
"publishConfig": {
"registry": "https://nexus.mekomsolutions.net/repository/npm-public/"
},
"keywords": [],
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"dotenv": "^16.4.7",
"typescript": "^5.7.2"
}
}