-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.46 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
{
"name": "runtime-obligation-testops",
"version": "0.14.0",
"description": "Universal runtime-obligation-first TestOps control system for AI agents, reviewed runtime behavior completeness, staged adoption, and traceable proof.",
"license": "MIT",
"type": "module",
"bin": {
"rotops": "./dist/cli.js"
},
"files": [
"dist",
"schema",
"templates",
"README.md",
"LICENSE",
"AGENTS.md"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsx src/cli.ts",
"prepare": "npm run build",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"testops",
"testing",
"coverage",
"completeness",
"traceability",
"control-plane",
"runtime",
"qa",
"vitest",
"agents",
"ai",
"obligations",
"behaviors"
],
"repository": {
"type": "git",
"url": "https://github.com/philo-kim/runtime-obligation-testops.git"
},
"homepage": "https://github.com/philo-kim/runtime-obligation-testops",
"bugs": {
"url": "https://github.com/philo-kim/runtime-obligation-testops/issues"
},
"dependencies": {
"ajv": "^8.17.1",
"fast-glob": "^3.3.3",
"runtime-obligation-testops": "file:runtime-obligation-testops-0.14.0.tgz"
},
"devDependencies": {
"@types/node": "^22.13.10",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"vitest": "^2.1.9"
}
}