Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mismith/pilfer-package
Tiny command line utility for plucking fields from a JSON file
https://github.com/mismith/pilfer-package
Last synced: 22 days ago
JSON representation
Tiny command line utility for plucking fields from a JSON file
- Host: GitHub
- URL: https://github.com/mismith/pilfer-package
- Owner: mismith
- License: mit
- Created: 2018-12-19T05:03:12.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-19T05:25:59.000Z (about 6 years ago)
- Last Synced: 2024-08-08T17:41:19.735Z (5 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pilfer-package
Tiny command line utility for plucking fields from a JSON file
## Installation
1. `npm install --save-dev pilfer-package` or `yarn add --dev pilfer-package`
2. Add to your npm scripts, or use in the CLI directly## Usage
`pilfer-package ... `
e.g. `pilfer-package version > version.json` will create a file called `version.json` in the current directory containing:
```
{
version: "1.0.0"
}
```