-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.07 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@webventures/testatlas",
"version": "2.0.10",
"description": "Installable, agent-agnostic product testing and quality intelligence framework for AI coding agents.",
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=20.11.0"
},
"engineStrict": true,
"bin": {
"testatlas": "./bin/testatlas.js"
},
"files": [
"bin/",
"install.js",
"install.sh",
"scripts/",
".testatlas/",
"package.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"ajv": "^8.17.0",
"ajv-formats": "^3.0.1",
"commander": "^14.0.3",
"picocolors": "^1.1.1",
"semver": "^7.7.4"
},
"repository": {
"type": "git",
"url": "https://github.com/CryptVenture/TestAtlas.git"
},
"homepage": "https://github.com/CryptVenture/TestAtlas#readme",
"bugs": {
"url": "https://github.com/CryptVenture/TestAtlas/issues"
},
"keywords": [
"testing",
"quality-assurance",
"ai-agents",
"agentic",
"claude-code",
"opencode",
"kilocode",
"cursor",
"aider",
"mcp",
"test-framework",
"exploration",
"evidence",
"qa"
],
"scripts": {
"lint": "biome check .",
"lint:fix": "biome check --write .",
"lint:commands": "node scripts/lint-commands.js",
"format": "biome format --write .",
"test": "node scripts/lint-commands.js && node --test",
"shellcheck": "shellcheck install.sh",
"changeset": "changeset",
"prepare": "simple-git-hooks",
"regenerate-example": "node scripts/regenerate-example.js",
"docs:commands": "node scripts/generate-commands-doc.js",
"docs:schemas": "node scripts/generate-schemas-doc.js",
"check:org-placeholder": "node scripts/check-org-placeholder.js"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@changesets/cli": "^2.27.0",
"better-sqlite3": "^12.10.0",
"simple-git-hooks": "^2.11.0"
},
"simple-git-hooks": {
"pre-commit": "npx --no-install biome check --staged --no-errors-on-unmatched"
}
}