-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.83 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@rmyndharis/aimhooman",
"version": "0.6.0",
"description": "AI works. Hoomans ship. Keep AI session files and attribution out of your commits.",
"homepage": "https://github.com/rmyndharis/aimhooman#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rmyndharis/aimhooman.git"
},
"bugs": {
"url": "https://github.com/rmyndharis/aimhooman/issues"
},
"type": "module",
"bin": {
"aimhooman": "bin/aimhooman.mjs"
},
"files": [
"bin/",
"src/",
"rules/",
"hooks/",
"schemas/",
"docs/hosts.json",
"docs/ai-artifacts.gitignore",
"docs/catalog.md",
"docs/secrets.md",
"docs/policy.md",
"docs/cli-reference.md",
"docs/faq.md",
"docs/integrations.md",
"docs/design/",
"docs/logo/",
".claude-plugin/",
".codex-plugin/",
".cursor/rules/",
".clinerules/",
".windsurf/",
".kiro/",
".agents/",
".gemini/",
".github/hooks/",
".github/copilot-instructions.md",
"AGENTS.md",
"GEMINI.md",
"skills/",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"LICENSE",
"README.md",
"SECURITY.md"
],
"scripts": {
"check": "node scripts/validate.mjs",
"sync:hosts": "node scripts/sync-hosts.mjs",
"sync:ruleset": "node scripts/sync-ruleset.mjs",
"sync:catalog": "node scripts/sync-catalog.mjs",
"test": "node --import ./tests/test-env.mjs --test",
"test:coverage": "node --import ./tests/test-env.mjs --experimental-test-coverage --test-coverage-include=\"src/**\" --test-coverage-include=\"bin/**\" --test-coverage-include=\"scripts/authorize-owner-paths.mjs\" --test-coverage-include=\"scripts/github-owner-authority.mjs\" --test-coverage-include=\"scripts/package-manifest.mjs\" --test-coverage-include=\"scripts/scan-ci-history.mjs\" --test-coverage-exclude=\"tests/**\" --test-coverage-lines=85 --test-coverage-branches=75 --test-coverage-functions=90 --test-reporter=spec --test-reporter=./scripts/coverage-threshold.mjs --test-reporter-destination=stdout --test-reporter-destination=stderr --test",
"check:static": "node scripts/static-gates.mjs",
"verify": "node scripts/verify.mjs"
},
"devDependencies": {
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"knip": "5.88.1"
},
"engines": {
"node": ">=22.8.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"keywords": [
"ai-agents",
"git-hooks",
"claude-code",
"codex",
"copilot",
"developer-tools",
"pre-commit"
]
}