compctl 0.1.0 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/LICENSE +95 -0
  2. package/README.md +1 -1
  3. package/package.json +23 -6
package/LICENSE ADDED
@@ -0,0 +1,95 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity.
18
+
19
+ "You" (or "Your") shall mean an individual or Legal Entity
20
+ exercising permissions granted by this License.
21
+
22
+ "Source" form shall mean the preferred form for making modifications,
23
+ including but not limited to software source code, documentation
24
+ source, and configuration files.
25
+
26
+ "Object" form shall mean any form resulting from mechanical
27
+ transformation or translation of a Source form.
28
+
29
+ "Work" shall mean the work of authorship made available under the
30
+ License.
31
+
32
+ "Derivative Works" shall mean any work that is based on the Work.
33
+
34
+ "Contribution" shall mean any work of authorship submitted to the
35
+ Licensor for inclusion in the Work.
36
+
37
+ "Contributor" shall mean Licensor and any Legal Entity on behalf of
38
+ whom a Contribution has been received by Licensor.
39
+
40
+ 2. Grant of Copyright License. Subject to the terms and conditions of
41
+ this License, each Contributor hereby grants to You a perpetual,
42
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
43
+ copyright license to reproduce, prepare Derivative Works of,
44
+ publicly display, publicly perform, sublicense, and distribute the
45
+ Work and such Derivative Works in Source or Object form.
46
+
47
+ 3. Grant of Patent License. Subject to the terms and conditions of
48
+ this License, each Contributor hereby grants to You a perpetual,
49
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
50
+ patent license to make, have made, use, offer to sell, sell, import,
51
+ and otherwise transfer the Work.
52
+
53
+ 4. Redistribution. You may reproduce and distribute copies of the
54
+ Work or Derivative Works thereof in any medium, with or without
55
+ modifications, and in Source or Object form, provided that You
56
+ meet the following conditions:
57
+
58
+ (a) You must give any other recipients of the Work or
59
+ Derivative Works a copy of this License; and
60
+
61
+ (b) You must cause any modified files to carry prominent notices
62
+ stating that You changed the files; and
63
+
64
+ (c) You must retain, in the Source form of any Derivative Works
65
+ that You distribute, all copyright, patent, trademark, and
66
+ attribution notices from the Source form of the Work.
67
+
68
+ 5. Submission of Contributions.
69
+
70
+ 6. Trademarks. This License does not grant permission to use the trade
71
+ names, trademarks, service marks, or product names of the Licensor.
72
+
73
+ 7. Disclaimer of Warranty. THE WORK IS PROVIDED "AS IS", WITHOUT WARRANTY
74
+ OF ANY KIND.
75
+
76
+ 8. Limitation of Liability. IN NO EVENT SHALL ANY CONTRIBUTOR BE LIABLE
77
+ FOR ANY DAMAGES ARISING FROM USE OF THE WORK.
78
+
79
+ 9. Accepting Warranty or Additional Liability.
80
+
81
+ END OF TERMS AND CONDITIONS
82
+
83
+ Copyright 2026 Avatar Consulting (LendCtl)
84
+
85
+ Licensed under the Apache License, Version 2.0 (the "License");
86
+ you may not use this file except in compliance with the License.
87
+ You may obtain a copy of the License at
88
+
89
+ http://www.apache.org/licenses/LICENSE-2.0
90
+
91
+ Unless required by applicable law or agreed to in writing, software
92
+ distributed under the License is distributed on an "AS IS" BASIS,
93
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
94
+ See the License for the specific language governing permissions and
95
+ limitations under the License.
package/README.md CHANGED
@@ -87,4 +87,4 @@ Options:
87
87
 
88
88
  ## License
89
89
 
90
- MIT © Avatar Consulting
90
+ Apache-2.0 © Avatar Consulting
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "compctl",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Lending compliance checks (TRID, ATR/QM, HMDA, ECOA) - part of the LendCtl Suite",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -12,11 +12,26 @@
12
12
  "test": "jest",
13
13
  "prepublishOnly": "npm run build && npm test"
14
14
  },
15
- "keywords": ["compliance", "lending", "trid", "hmda", "ecoa", "mortgage", "cli", "mcp"],
15
+ "keywords": [
16
+ "compliance",
17
+ "lending",
18
+ "trid",
19
+ "hmda",
20
+ "ecoa",
21
+ "mortgage",
22
+ "cli",
23
+ "mcp"
24
+ ],
16
25
  "author": "Avatar Consulting",
17
- "license": "MIT",
18
- "repository": { "type": "git", "url": "https://github.com/rsatyan/compctl" },
19
- "dependencies": { "commander": "^12.0.0", "chalk": "^5.3.0" },
26
+ "license": "Apache-2.0",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://github.com/rsatyan/compctl.git"
30
+ },
31
+ "dependencies": {
32
+ "commander": "^12.0.0",
33
+ "chalk": "^5.3.0"
34
+ },
20
35
  "devDependencies": {
21
36
  "@types/jest": "^29.5.0",
22
37
  "@types/node": "^20.0.0",
@@ -24,5 +39,7 @@
24
39
  "ts-jest": "^29.1.0",
25
40
  "typescript": "^5.3.0"
26
41
  },
27
- "engines": { "node": ">=18.0.0" }
42
+ "engines": {
43
+ "node": ">=18.0.0"
44
+ }
28
45
  }