@codezero-io/cordon-linux-x64 0.1.3
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/bin/cordon +0 -0
- package/package.json +22 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# cordon — Platform Binary
|
|
2
|
+
|
|
3
|
+
This package contains the pre-built `cordon` binary for a specific OS/architecture combination. It is installed automatically as an optional dependency of [`@codezero-io/cordon`](https://www.npmjs.com/package/@codezero-io/cordon).
|
|
4
|
+
|
|
5
|
+
**You should install the main package instead:**
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @codezero-io/cordon
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
See the [@codezero-io/cordon README](https://www.npmjs.com/package/@codezero-io/cordon) for full documentation.
|
package/bin/cordon
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codezero-io/cordon-linux-x64",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "cordon native binary for Linux x64",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
6
|
+
"author": "Codezero Technologies Inc.",
|
|
7
|
+
"homepage": "https://codezero.io",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/codezero-io/cordon.git"
|
|
11
|
+
},
|
|
12
|
+
"os": [
|
|
13
|
+
"linux"
|
|
14
|
+
],
|
|
15
|
+
"cpu": [
|
|
16
|
+
"x64"
|
|
17
|
+
],
|
|
18
|
+
"type": "module",
|
|
19
|
+
"files": [
|
|
20
|
+
"bin/cordon"
|
|
21
|
+
]
|
|
22
|
+
}
|