ai-test-cli 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-test-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "An autonomous AI software testing engineer that dynamically generates, evaluates, and auto-fixes test suites for complex codebases.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -19,10 +19,13 @@
|
|
|
19
19
|
"dist",
|
|
20
20
|
"bin"
|
|
21
21
|
],
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=20.12.0"
|
|
24
|
+
},
|
|
22
25
|
"scripts": {
|
|
23
26
|
"build": "tsup",
|
|
24
27
|
"dev": "tsup --watch",
|
|
25
|
-
"test": "vitest run",
|
|
28
|
+
"test": "vitest run --passWithNoTests",
|
|
26
29
|
"prepublishOnly": "npm run build"
|
|
27
30
|
},
|
|
28
31
|
"keywords": [
|