-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.07 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.07 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "command-verify",
"version": "0.1.0",
"description": "Intelligent command verification for documentation with git diff-based cache invalidation",
"type": "module",
"main": "scripts/verify-commands.js",
"bin": {
"command-verify": "scripts/verify-commands.js"
},
"scripts": {
"verify": "node scripts/verify-commands.js",
"verify:force": "node scripts/verify-commands.js --force",
"verify:stats": "node scripts/verify-commands.js --stats",
"prerelease": "npm run verify",
"prepush": "npm run verify",
"clean:cache": "node -e \"const fs = require('fs'); const path = require('path'); function rmrf(dir) { if (fs.existsSync(dir)) { fs.readdirSync(dir).forEach(file => { const curPath = path.join(dir, file); if (fs.lstatSync(curPath).isDirectory()) { rmrf(curPath); } else { fs.unlinkSync(curPath); } }); fs.rmdirSync(dir); } }; rmrf('.cache/command-validations');\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"test:run": "vitest run"
},
"keywords": [
"documentation",
"command-verification",
"git-diff",
"cache",
"validation",
"claude-code",
"markdown",
"cli",
"automation",
"git",
"nodejs"
],
"author": {
"name": "d.o.",
"email": "contact@example.com",
"url": "https://github.com/doswa"
},
"license": "MIT",
"homepage": "https://github.com/doswa/command-verify#readme",
"bugs": {
"url": "https://github.com/doswa/command-verify/issues"
},
"dependencies": {
"glob": "^13.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/doswa/command-verify.git"
},
"files": [
"scripts/",
".claude/",
"README.md"
],
"devDependencies": {
"@eslint/js": "^9.38.0",
"@vitest/coverage-v8": "^4.0.13",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"rollup": "^4.53.3",
"vitest": "^4.0.5"
}
}