-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 966 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 966 Bytes
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
{
"name": "truss-lint",
"version": "0.1.2",
"private": false,
"description": "Configuration-driven architectural boundary checks",
"bin": {
"truss-lint": "dist/bin/truss.js"
},
"license": "MIT",
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc -p tsconfig.json",
"test": "node --import tsx --test tests/**/*.test.ts",
"truss:check": "tsx bin/truss.ts check",
"truss:check:json": "tsx bin/truss.ts check --format json"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^12.1.0",
"minimatch": "^10.2.5",
"yaml": "^2.8.1"
},
"devDependencies": {
"@types/node": "^22.19.17",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"keywords": [
"architecture",
"dependency-graph",
"lint",
"static-analysis",
"typescript",
"javascript",
"cli"
],
"main": "dist/src/index.js"
}