-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 952 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 952 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
46
{
"name": "agent-lease",
"version": "0.1.2",
"description": "Git hooks that FORCE validation before commits via lock/lease pattern. No broken code reaches CI.",
"main": "lib/lock-manager.js",
"bin": {
"agent-lease": "./bin/agent-lease.js"
},
"scripts": {
"test": "node test/e2e.js && node test/stress.js && node test/topic.js",
"prepare": "husky"
},
"keywords": [
"git",
"hooks",
"validation",
"pre-commit",
"ci",
"agent",
"lock",
"lease",
"build",
"lint"
],
"author": "kingly",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/chidev/agent-lease.git"
},
"homepage": "https://github.com/chidev/agent-lease",
"funding": "https://kinglystudio.ai",
"files": [
"bin/",
"hooks/",
"lib/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"husky": "^9.1.7"
}
}