gulp-pick-keys
v0.1.1
Published
Prompts the user to pick the properties to include in a JSON file. Useful in project generators for selectively including keys in generated files.
Downloads
16
Maintainers
Readme
gulp-pick-keys
Prompts the user to pick the properties to include in a JSON file. Useful in project generators for selectively including keys in generated files.
Install
Install with npm:
$ npm install gulp-pick-keys --save
Usage
var gulp = require('gulp');
var pick = require('gulp-pick-keys');
gulp.task('default', function() {
return gulp.src('fixtures/package.json')
.pipe(pick())
.pipe(gulp.dest('actual'));
});
Example
Contributing
This document was generated by verb-readme-generator (a verb generator), please don't edit directly. Any changes to the readme must be made in .verb.md. See Building Docs.
Pull requests and stars are always welcome. For bugs and feature requests, please create an issue. Or visit the verb-readme-generator project to submit bug reports or pull requests for the readme layout template.
Building docs
Generate readme and API documentation with verb:
$ npm install -g verb verb-readme-generator && verb
Running tests
Install dev dependencies:
$ npm install -d && npm test
Author
Brian Woodward
License
Copyright © 2016, Brian Woodward. Released under the MIT license.
This file was generated by verb, v0.9.0, on June 09, 2016.