-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.37 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.37 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
{
"name": "@chittyos/ops",
"version": "1.0.0",
"description": "ChittyOS operations implementation - CI/CD, hooks, terminal ops, cross-org orchestration",
"main": "index.js",
"bin": {
"hookify": "./terminal-ops/hookify/cli.js",
"chitty-ops": "./cli/chitty-ops.js",
"chitty-org": "./cross-org/cli.js"
},
"scripts": {
"test": "node --test test/audit.test.js",
"setup-hooks": "node terminal-ops/hooks/installer.js",
"sync-org": "node cross-org/sync.js",
"audit": "node compliance/audit.js --verbose",
"audit:json": "node compliance/audit.js --output=compliance-report.json --markdown=compliance-report.md --verbose",
"audit:service": "node compliance/audit.js --verbose --service",
"remediate": "node compliance/remediate.js compliance-report.json --mode=report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chittyos/chittyops.git"
},
"keywords": [
"chittyos",
"operations",
"cicd",
"hooks",
"cross-org"
],
"author": "ChittyOS",
"license": "MIT",
"bugs": {
"url": "https://github.com/chittyos/chittyops/issues"
},
"homepage": "https://github.com/chittyos/chittyops#readme",
"dependencies": {
"@chittyfoundation/hookify": "github:chittyfoundation/chittyops#main",
"@chittyfoundation/territories": "github:chittyfoundation/chittyops#main",
"js-yaml": "^4.1.1"
}
}