envio-linux-x64 0.0.0-test → 0.0.0-test-npm-pipeline.2
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 +1 -0
- package/bin/envio +1 -0
- package/package.json +24 -7
- package/index.js +0 -1
package/README.md
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
# Envio CLI tool
|
package/bin/envio
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
I am a fake binary
|
package/package.json
CHANGED
@@ -1,11 +1,28 @@
|
|
1
1
|
{
|
2
2
|
"name": "envio-linux-x64",
|
3
|
-
"version": "
|
4
|
-
"description": "",
|
5
|
-
"
|
6
|
-
|
7
|
-
"
|
3
|
+
"version": "v0.0.0-test-npm-pipeline.2",
|
4
|
+
"description": "A ️latency and sync speed optimized, developer friendly blockchain data indexer.",
|
5
|
+
"repository": {
|
6
|
+
"type": "git",
|
7
|
+
"url": "git+https://github.com/enviodev/indexer.git"
|
8
8
|
},
|
9
|
-
"
|
10
|
-
|
9
|
+
"keywords": [
|
10
|
+
"blockchain",
|
11
|
+
"indexer",
|
12
|
+
"ethereum",
|
13
|
+
"data",
|
14
|
+
"dapp"
|
15
|
+
],
|
16
|
+
"author": "envio contributors <about@envio.dev>",
|
17
|
+
"license": "GPL-3.0",
|
18
|
+
"bugs": {
|
19
|
+
"url": "https://github.com/enviodev/indexer/issues"
|
20
|
+
},
|
21
|
+
"homepage": "https://github.com/enviodev/indexer#readme",
|
22
|
+
"os": [
|
23
|
+
"linux"
|
24
|
+
],
|
25
|
+
"cpu": [
|
26
|
+
"x64"
|
27
|
+
]
|
11
28
|
}
|
package/index.js
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
console.log("hello world")
|