1.0.0 • Published 5 years ago

pilfer-package v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

pilfer-package

Tiny command line utility for plucking fields from a JSON file

Installation

  1. npm install --save pilfer-package or yarn add pilfer-package
  2. Add to your npm scripts, or use in the CLI directly

Usage

pilfer-package <field1> <field2> ... <fieldN>

e.g. pilfer-package version > version.json will create a file called version.json in the current directory containing:

{
  version: "1.0.0"
}