clawmate-cli 0.0.1

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,5 @@
1
+ # clawmate-cli
2
+
3
+ ## License
4
+
5
+ MIT
package/bin/index.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log('Hello from clawmate-cli!');
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "clawmate-cli",
3
+ "version": "0.0.1",
4
+ "description": "clawmate-cli is a tool for the ClawMate App",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "clawmate-cli": "bin/index.js"
8
+ },
9
+ "scripts": {
10
+ "test": "echo \"Error: no test specified\" && exit 1"
11
+ },
12
+ "keywords": [
13
+ "cli",
14
+ "clawmate-cli"
15
+ ],
16
+ "author": "",
17
+ "license": "MIT"
18
+ }