JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 36513
  • Score
    100M100P100Q144860F
  • License MIT

A gulp plugin to edit JSON object

Package Exports

  • gulp-json-editor

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-json-editor) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gulp-json-editor

gulp-json-editor is a gulp plugin to edit JSON object.

Usage

var jeditor = require("gulp-json-editor");

gulp.src("./manifest.json")
  .pipe(jeditor(function(json, true) {
    // json is normal JSON object. You can modify / add / remove any properties.
    json.version = "1.2.3";
    // must return JSON object.
    return json;
  }))
  .pipe(gulp.dest("./dest"));

Note

In case of such above situation, all of comment in source file isn't kept in destination file.

API

jeditor(editorFunction, [beautify])

editorFunction

The editorFunction must have the following signature: function (json) {}, and must return JSON object.

beautify

Pass true to beautify before output (default false).

License

MIT License