forked from ruvnet/ruflo
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.47 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.47 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
{
"name": "@claude-flow/testing",
"version": "3.0.0-alpha.6",
"type": "module",
"description": "Testing module - TDD London School framework, test utilities, fixtures, and mock services for V3 Claude-Flow",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.js",
"import": "./dist/index.js"
},
"./helpers": {
"types": "./dist/helpers/index.d.js",
"import": "./dist/helpers/index.js"
},
"./fixtures": {
"types": "./dist/fixtures/index.d.js",
"import": "./dist/fixtures/index.js"
},
"./mocks": {
"types": "./dist/mocks/index.d.js",
"import": "./dist/mocks/index.js"
},
"./setup": {
"types": "./dist/setup.d.js",
"import": "./dist/setup.js"
}
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"keywords": [
"claude-flow",
"testing",
"vitest",
"tdd",
"london-school",
"mocks",
"fixtures"
],
"peerDependencies": {
"@claude-flow/memory": "^3.0.0-alpha.2",
"@claude-flow/shared": "^3.0.0-alpha.1",
"@claude-flow/swarm": "^3.0.0-alpha.1",
"vitest": ">=1.0.0"
},
"devDependencies": {
"@claude-flow/memory": "^3.0.0-alpha.2",
"@claude-flow/shared": "^3.0.0-alpha.1",
"@claude-flow/swarm": "^3.0.0-alpha.1",
"typescript": "^5.3.0",
"vitest": "^4.0.16"
},
"publishConfig": {
"access": "public",
"tag": "v3alpha"
}
}