-
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.79 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.79 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": "@robotixai/specflow-cli",
"version": "0.2.0",
"description": "Specs that enforce themselves. Contract tests, journey hooks, and agent orchestration for LLM-driven development.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fall-development-rob/specflow-cli.git"
},
"main": "dist/cli.js",
"bin": {
"specflow": "bin/specflow.js"
},
"files": [
"bin/",
"dist/",
"native/",
"hooks/",
"templates/contracts/",
"agents/",
"scripts/specflow-compile.cjs",
"scripts/verify-graph.cjs",
"scripts/install.sh",
"docs/CI-INTEGRATION.md",
"CLAUDE.md",
"CLAUDE-MD-TEMPLATE.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:rust": "cargo build --release",
"build:native": "cd rust && napi build --release",
"prebuild": "rm -rf dist",
"prepublishOnly": "npm run build",
"postinstall": "echo '' && echo ' @robotixai/specflow-cli installed' && echo ' Run: specflow init .' && echo ''",
"test": "jest --no-coverage",
"test:contracts": "jest tests/contracts/ --no-coverage",
"test:hooks": "jest tests/hooks/ --no-coverage",
"test:schema": "jest tests/schema/ --no-coverage",
"test:verbose": "jest --verbose --no-coverage",
"test:compile": "jest tests/compile/ --no-coverage",
"compile:journeys": "node scripts/specflow-compile.cjs",
"verify:graph": "node scripts/verify-graph.cjs"
},
"devDependencies": {
"@types/node": "^20.19.37",
"jest": "^29.7.0",
"typescript": "^5.9.3"
},
"dependencies": {
"glob": "^10.3.10",
"js-yaml": "^4.1.0",
"minimatch": "^10.2.5",
"sql.js": "^1.14.1"
},
"engines": {
"node": ">=20.0.0"
},
"napi": {
"name": "specflow-native",
"triples": {
"defaults": true
}
}
}