jwalker 3.0.1 → 3.0.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 +15 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,15 +8,21 @@ Parses a file stream for JSON and pretty prints it.
|
|
|
8
8
|
Using jwalker on the command line.
|
|
9
9
|
|
|
10
10
|
````
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
11
|
+
Usage: index.js <options>
|
|
12
|
+
|
|
13
|
+
Options:
|
|
14
|
+
|
|
15
|
+
--input <input> Input file (-- for stdin).
|
|
16
|
+
(default: `--`)
|
|
17
|
+
|
|
18
|
+
--output <output> Output file (-- for stdout).
|
|
19
|
+
(default: `--`)
|
|
20
|
+
|
|
21
|
+
--spaces <spaces> Use number of spaces for indentation.
|
|
22
|
+
(default: ` `)
|
|
23
|
+
|
|
24
|
+
--passthrough Passthrough non-JSON lines.
|
|
25
|
+
(default: disabled)
|
|
20
26
|
````
|
|
21
27
|
|
|
22
28
|
# Usage (code)
|