forked from wtakase/kibana-own-home
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "own_home",
"version": "6.4.0",
"description": "This plugin adds multi-tenancy feature to Kibana. A user can have own personal kibana.index so that objects the user created are stored in the index. And also group shared kibana.index can be provided. A user can switch kibana.index depending on the situation by selecting on the plugin interface. kibana.index list will be generated based on username, local group definition in kibana.yml, and LDAP roles.",
"main": "index.js",
"kibana": {
"version": "6.4.0"
},
"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"
},
"devDependencies": {
"@elastic/eslint-config-kibana": "0.0.2",
"@elastic/plugin-helpers": "5.1.1",
"babel-eslint": "4.1.8",
"chai": "^3.5.0",
"eslint": "1.10.3",
"eslint-plugin-mocha": "1.1.0"
},
"dependencies": {
"ldapjs": "^1.x.x",
"yar": "^8.x.x",
"httpolyglot": "^0.1.2",
"kibi-h2o2": "https://github.com/sirensolutions/h2o2.git#5.0.0-kibi-1",
"lodash": "3.x.x"
}
}