initial commit

generated from the plugin template, this does nothing but provide a plugin with the expected name
This commit is contained in:
2017-12-12 10:33:10 -07:00
commit 0b923e8376
8 changed files with 3754 additions and 0 deletions

18
gather-info.js Normal file
View File

@@ -0,0 +1,18 @@
const templatePkg = require('./package.json');
const kibanaPkg = require('../kibana/package.json');
const debugInfo = {
kibana: {
version: kibanaPkg.version,
build: kibanaPkg.build,
engines: kibanaPkg.engines,
},
plugin: {
name: templatePkg.name,
version: templatePkg.version,
kibana: templatePkg.kibana,
dependencies: templatePkg.dependencies,
},
};
console.log(debugInfo);