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

33
package.json Normal file
View File

@@ -0,0 +1,33 @@
{
"name": "fake-xpack",
"version": "0.0.0",
"description": "Enough to satisfy the license check",
"main": "index.js",
"kibana": {
"version": "kibana",
"templateVersion": "7.2.3"
},
"scripts": {
"lint": "eslint",
"start": "plugin-helpers start",
"test:server": "plugin-helpers test:server",
"test:browser": "plugin-helpers test:browser",
"build": "plugin-helpers build",
"postinstall": "plugin-helpers postinstall",
"gather-info": "node gather-info.js"
},
"devDependencies": {
"@elastic/eslint-config-kibana": "^0.14.0",
"@elastic/eslint-import-resolver-kibana": "^1.0.0",
"@elastic/plugin-helpers": "^8.1.1",
"babel-eslint": "^8.0.2",
"eslint": "^4.11.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jest": "^21.3.2",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "^7.0.1",
"expect.js": "^0.3.1"
}
}