Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "csvfmt", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"main": "index.js", | ||
@@ -5,0 +5,0 @@ "bin": "./index.js", |
@@ -8,3 +8,3 @@ # csvfmt | ||
This is a command line tool, so install it globally so it's available on your path: | ||
``` | ||
```shell | ||
npm install --global csvfmt | ||
@@ -38,2 +38,18 @@ ``` | ||
...which makes it quite handy with jq: | ||
```shell | ||
$ csvfmt samples/people.csv --headers | jq 'select(.age | tonumber < 100)' | ||
{ | ||
"name": "morris", | ||
"sex": "m", | ||
"age": "12" | ||
} | ||
{ | ||
"name": "jenna", | ||
"sex": "f", | ||
"age": "13" | ||
} | ||
``` | ||
--format lets you specify [sprintf](https://www.npmjs.com/package/sprintf-js) style formatting: | ||
@@ -55,2 +71,6 @@ | ||
c yarris | ||
``` | ||
``` | ||
## Development | ||
- `npm install -g` in this dir to install the dev version globally (symlinks!) | ||
- Bump up the version and release with `npm publish` |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6983
73