qa360 1.0.1 → 1.0.3
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/bin/qa360.js +11 -0
- package/dist/commands/history.d.ts.map +1 -1
- package/dist/commands/history.js +1 -1
- package/dist/commands/report.d.ts +43 -28
- package/dist/commands/report.d.ts.map +1 -1
- package/dist/commands/report.js +275 -247
- package/dist/commands/run.d.ts +31 -50
- package/dist/commands/run.d.ts.map +1 -1
- package/dist/commands/run.js +122 -278
- package/dist/commands/secrets.js +1 -1
- package/dist/commands/verify.d.ts.map +1 -1
- package/dist/commands/verify.js +29 -6
- package/dist/index.js +17 -8
- package/package.json +14 -9
package/package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qa360",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "QA360 Proof CLI - Quality as Cryptographic Proof",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"main": "dist/
|
|
7
|
-
"types": "dist/
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
8
|
"bin": {
|
|
9
|
-
"qa360": "
|
|
9
|
+
"qa360": "bin/qa360.js"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"dist",
|
|
13
|
+
"bin",
|
|
13
14
|
"README.md",
|
|
14
15
|
"LICENSE",
|
|
15
16
|
"examples"
|
|
@@ -17,23 +18,27 @@
|
|
|
17
18
|
"scripts": {
|
|
18
19
|
"build": "tsc --project tsconfig.json",
|
|
19
20
|
"build:pkg": "tsc",
|
|
20
|
-
"test": "
|
|
21
|
+
"test": "vitest run",
|
|
22
|
+
"test:coverage": "vitest run --coverage",
|
|
23
|
+
"test:watch": "vitest",
|
|
21
24
|
"dev": "tsx watch src/index.ts",
|
|
22
25
|
"clean": "rimraf dist",
|
|
23
|
-
"prepublishOnly": "
|
|
26
|
+
"prepublishOnly": "npm run build",
|
|
24
27
|
"publish:dry": "npm publish --dry-run",
|
|
25
28
|
"publish:real": "npm publish --access public --provenance"
|
|
26
29
|
},
|
|
27
30
|
"dependencies": {
|
|
28
|
-
"qa360-core": "^1.0.0",
|
|
29
31
|
"chalk": "^4.1.2",
|
|
30
32
|
"commander": "^11.0.0",
|
|
31
33
|
"inquirer": "^8.2.7",
|
|
32
|
-
"ora": "^5.4.1"
|
|
34
|
+
"ora": "^5.4.1",
|
|
35
|
+
"qa360-core": "^1.0.0"
|
|
33
36
|
},
|
|
34
37
|
"devDependencies": {
|
|
35
38
|
"@types/inquirer": "^9.0.9",
|
|
36
|
-
"
|
|
39
|
+
"@vitest/coverage-v8": "1.6.0",
|
|
40
|
+
"tsx": "^4.0.0",
|
|
41
|
+
"vitest": "1.6.0"
|
|
37
42
|
},
|
|
38
43
|
"keywords": [
|
|
39
44
|
"qa360",
|