UNPKG

kibana-123

Version:

Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic

13 lines (10 loc) 307 B
module.exports = function (grunt) { grunt.registerTask('_build:removePkgJsonDeps', function () { const pkg = grunt.file.readJSON('build/kibana/package.json'); delete pkg.dependencies; grunt.file.write( 'build/kibana/package.json', JSON.stringify(pkg, null, ' ') ); }); };