lacunae 0.1.0

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 (2) hide show
  1. package/bin/lacunae.js +3 -0
  2. package/package.json +11 -0
package/bin/lacunae.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ console.log("lacunae — regulatory gap analysis CLI");
3
+ console.log("Coming soon. See https://github.com/terry-li-hm/lacunae");
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "lacunae",
3
+ "version": "0.1.0",
4
+ "description": "Regulatory gap analysis CLI — compare circulars against policy baselines with paragraph-level citations",
5
+ "keywords": ["regulatory", "compliance", "gap-analysis", "legaltech"],
6
+ "license": "MIT",
7
+ "repository": "https://github.com/terry-li-hm/lacunae",
8
+ "bin": {
9
+ "lacunae": "./bin/lacunae.js"
10
+ }
11
+ }