-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.17 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.17 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
{
"name": "@scantrix/cli",
"version": "1.0.1",
"description": "Static analysis and configuration-aware auditing engine for automation repositories",
"main": "dist/cli.js",
"bin": {
"scantrix": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"audit": "npm run build && node dist/cli.js",
"scan": "npm run audit",
"test": "vitest run",
"test:watch": "vitest",
"generate:favicons": "ts-node scripts/generate-favicons.ts"
},
"keywords": [
"playwright",
"cypress",
"selenium",
"test-automation",
"static-analysis",
"audit",
"ci",
"quality"
],
"author": "Scantrix",
"license": "MIT",
"engines": {
"node": ">=20"
},
"files": [
"dist/",
"docs/*.svg",
"LICENSE",
"README.md"
],
"type": "commonjs",
"dependencies": {
"fast-glob": "^3.3.3",
"markdown-it": "^14.1.0",
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/markdown-it": "^14.1.2",
"@types/minimist": "^1.2.5",
"@types/node": "^25.1.0",
"@types/sharp": "^0.31.1",
"sharp": "^0.34.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^3.0.0"
}
}