@betterborg/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 +11 -0
- package/package.json +14 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @betterborg/cli
|
|
2
|
+
|
|
3
|
+
Placeholder reserving this package name. It contains no code.
|
|
4
|
+
|
|
5
|
+
The first published release is `0.1.0`. Install that instead:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx --yes @betterborg/cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
See [betterborg/betterborg-cli](https://github.com/betterborg/betterborg-cli).
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@betterborg/cli",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Placeholder reserving @betterborg/cli. The first real release is 0.1.0.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/betterborg/betterborg-cli.git",
|
|
9
|
+
"directory": "npm"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/betterborg/betterborg-cli",
|
|
12
|
+
"publishConfig": { "access": "public" },
|
|
13
|
+
"files": ["README.md"]
|
|
14
|
+
}
|