-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 954 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 954 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "medical-slide-templates",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"test": "npm run test:unit && npm run test:content && npm run test:browser",
"test:unit": "node --test tests/unit/*.test.mjs",
"test:content": "node --test tests/content/*.test.mjs && node scripts/validate-catalog.mjs",
"test:browser": "playwright test",
"validate:skill": "node scripts/validate-skill.mjs",
"validate:offline": "node scripts/validate-offline.mjs decks/medical-template-catalog/index.html && node scripts/validate-offline.mjs examples/ja-journal-club/index.html && node scripts/validate-offline.mjs examples/en-journal-club/index.html && node scripts/validate-offline.mjs examples/en-case-conference/index.html",
"eval:skill": "node scripts/run-skill-eval.mjs",
"preview": "node scripts/serve.mjs"
},
"devDependencies": {
"@playwright/test": "1.62.1",
"axe-core": "4.12.1"
}
}