-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
20 lines (20 loc) · 816 Bytes
/
Copy pathpackage.json
File metadata and controls
20 lines (20 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "semantic-linter",
"version": "1.3.4",
"description": "Semantic-Linter plugin and CLI for narrowing wide-boundary wording in LLM instruction files.",
"private": true,
"bin": {
"semantic-lint": "bin/scan.js"
},
"scripts": {
"pretest": "npm run build-lexicon:check && npm run build-rules:check",
"test": "node tests/test-scanner.js && node tests/test-new-features.js",
"test:legacy": "node tests/test-scanner.js",
"test:new": "node tests/test-new-features.js",
"scan": "node bin/scan.js",
"build-lexicon": "node scripts/build-lexicon.js",
"build-lexicon:check": "node scripts/build-lexicon.js --check",
"build-rules": "node scripts/build-rules.js CLAUDE.md AGENTS.md",
"build-rules:check": "node scripts/build-rules.js --check CLAUDE.md AGENTS.md"
}
}