-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.21 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
{
"name": "@wangjh2001/testspec",
"version": "0.2.10",
"author": "YuanJie",
"license": "MIT",
"private": false,
"description": "Requirement-driven test design CLI for AI-assisted QA workflows.",
"keywords": [
"cli",
"testing",
"qa",
"test-case",
"requirements",
"ai",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/mxr-vector/TestSpec"
},
"homepage": "https://mxr-vector.github.io/TestSpec/",
"bugs": "https://github.com/mxr-vector/TestSpec/issues",
"type": "module",
"bin": {
"testspec": "./dist/run.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx bin/run.ts",
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"clean": "rm -rf dist",
"prepack": "npm run build"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^15.0.0",
"fflate": "^0.8.3"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/node": "^25.9.1",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^6.0.3",
"vitest": "^4.0.0"
}
}