-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.41 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.41 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
{
"name": "webtest-orch",
"version": "0.3.2-beta",
"description": "Claude Code skill for end-to-end web app testing — image-budget-safe, deterministic replay, multi-stack scaffolding",
"license": "MIT",
"author": "webtest-orch contributors",
"homepage": "https://github.com/CreatmanCEO/webtest-orch",
"bugs": "https://github.com/CreatmanCEO/webtest-orch/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/CreatmanCEO/webtest-orch.git"
},
"keywords": [
"claude-code",
"claude-skill",
"e2e",
"testing",
"playwright",
"axe-core",
"accessibility",
"wcag",
"supabase",
"nextjs"
],
"bin": {
"webtest-orch": "./bin/webtest-orch.js"
},
"files": [
"SKILL.md",
"README.md",
"LICENSE",
"CHANGELOG.md",
"bin/",
"scripts/",
"reference/",
"templates/",
"examples/",
"install.sh"
],
"engines": {
"node": ">=18"
},
"type": "commonjs",
"scripts": {
"test": "echo 'Python tests live under tests/python/. Run: pip install -r requirements-dev.txt && pytest'",
"prepack": "node -e \"const fs=require('fs'),p=require('path'),walk=(d)=>fs.existsSync(d)&&fs.readdirSync(d).forEach(f=>{const x=p.join(d,f);if(fs.statSync(x).isDirectory()){if(f==='__pycache__'){fs.rmSync(x,{recursive:true,force:true});console.log('cleaned',x);}else walk(x);}});walk('scripts');walk('tests');walk('examples');\""
}
}