kibana/packages/kbn-interpreter/package.json
Joe Fleming f07987e663
[interpreter/loadPlugins] avoid deleting globals added by plugins (#27171) (#27851)
Plugins loaded by the `@kbn/interpreter` can sometimes setup global values while loading, like the regeneratorRuntime for instance, but the current plugin loading code is deleting every global that was added during plugin load. This changes the logic to only cleanup the `canvas` global after loading the canvas plugins.

resolves https://github.com/elastic/kibana/issues/27162
2018-12-28 15:23:35 -07:00

39 lines
1 KiB
JSON

{
"name": "@kbn/interpreter",
"version": "1.0.0",
"license": "Apache-2.0",
"scripts": {
"canvas:peg": "pegjs common/lib/grammar.peg",
"build": "node scripts/build",
"kbn:bootstrap": "node scripts/build --dev",
"kbn:watch": "node scripts/build --dev --watch"
},
"dependencies": {
"lodash": "npm:@elastic/lodash@3.10.1-kibana1",
"lodash.clone": "^4.5.0",
"scriptjs": "^2.5.8",
"socket.io-client": "^2.1.1",
"uuid": "3.0.1"
},
"devDependencies": {
"@kbn/babel-preset": "1.0.0",
"@kbn/dev-utils": "1.0.0",
"babel-cli": "^6.26.0",
"babel-core": "6.26.3",
"babel-loader": "7.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "6.20.0",
"css-loader": "1.0.0",
"copy-webpack-plugin": "^4.6.0",
"del": "^3.0.0",
"getopts": "^2.2.3",
"pegjs": "0.9.0",
"sass-loader": "^7.1.0",
"style-loader": "0.23.1",
"supports-color": "^5.5.0",
"url-loader": "1.1.2",
"webpack": "4.23.1",
"webpack-cli": "^3.1.2"
}
}