gulp-json-modify

1.0.2 • Public • Published

gulp-json-modify

Build Status

NPM version

Replace data in a JSON file with something else

Usage

Install

$ npm install gulp-json-modify --save

Example

// jsonModify data in multiple files
gulp.task('jsonModify', function () {
 
  return gulp.src([ './bower.json', './package.json' ])
    .pipe(tasks.jsonModify({
      key: 'version',
      value: '1.0.0'
    }))
    .pipe(gulp.dest('./'))
 
})
 
// Run the gulp tasks
gulp.task('default', function(){
  gulp.run('jsonModify')
})

Options

  • key: key to replace (required)
  • value: set to value (required)

Example:

.pipe(jsonModify({ key: 'app_id', value: '1234' })
Dot notation is supported for sub-keys
 
.pipe(jsonModify({ key: 'key.subkey', value: 'set-me-to' }))
 
/*
{
  "key": {
    "subkey": "<value>"
  }
}
*/

options.indent

Set the amount of spaces for indentation in the result JSON file.

/ht

https://github.com/stevelacy/gulp-bump

LICENSE

(MIT License)

Copyright (c) 2015 Steve Lacy me@slacy.me slacy.me

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i gulp-json-modify

Weekly Downloads

4,161

Version

1.0.2

License

MIT

Last publish

Collaborators

  • lloydwatkin