-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 876 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "a2a-agent-validator",
"version": "0.1.0",
"description": "Validates A2A Protocol Agent Cards: fetches well-known endpoint, validates card structure, classifies capabilities, and builds structured snapshots with comprehensive error reporting.",
"main": "./src/index.mjs",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules' npx jest --detectOpenHandles",
"test:coverage:src": "NODE_OPTIONS='--experimental-vm-modules' npx jest --detectOpenHandles --coverage --collectCoverageFrom='src/**/*.mjs'",
"test:file": "NODE_OPTIONS='--experimental-vm-modules' npx jest --detectOpenHandles"
},
"keywords": [
"a2a",
"agent",
"validator",
"agent-card",
"protocol"
],
"license": "MIT",
"devDependencies": {
"jest": "^30.0.5"
}
}