nebulon-escrow-cli 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.
package/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # Nebulon CLI
2
+
3
+ Local development:
4
+
5
+ ```
6
+ cd CLI
7
+ npm install
8
+ npm link
9
+ nebulon init
10
+ ```
11
+
12
+ Notes:
13
+ - This package is private for now. Do not publish to npm until you are ready.
14
+ - Config and wallets are stored under `~/.nebulon/`.
package/bin/nebulon.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ require("../src/cli");