-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "kibana_api",
"version": "0.6.2",
"description": "This plugin allow you to crete visualization dynamiclly",
"main": "index.js",
"kibana": {
"version": "6.5.2"
},
"repository": {
"type": "git",
"url": "git://github.com/webiks/kibana-API.git"
},
"homepage": "https://github.com/Webiks/kibana-API",
"bugs": {
"url": "https://github.com/Webiks/kibana-API/issues"
},
"license": "Apache-2.0",
"author": "Ytzhak Lax <[email protected]>",
"contributors": [],
"scripts": {
"lint": "eslint",
"start": "plugin-helpers start",
"test": "mocha --compilers js:babel-core/register public/test",
"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": "^6.0.0",
"babel-eslint": "^10.0.2",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"eslint": "^6.2.2",
"eslint-plugin-mocha": "^6.1.0",
"mocha": "^6.2.0",
"sinon": "^7.4.1"
},
"dependencies": {
"jsonfile": "^3.0.1",
"path": "^0.12.7",
"q": "^1.5.0",
"request": "^2.83.0",
"rison": "^0.1.1"
}
}