-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
33 lines (33 loc) · 930 Bytes
/
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
{
"name": "kibana-proxy",
"version": "0.0.0",
"description": "Server tier for (kibana)[http://kibana.org/kibana3]; Proxies the calls to Elasticsearch and insert authentication.",
"main": "app.js",
"scripts": {
"install": "[ -f kibana/index.html ] && exit 0; mkdir -p kibana; curl https://download.elasticsearch.org/kibana/kibana/kibana-3.1.2.tar.gz | tar xvzf - -C kibana --strip-components=1",
"start": "node app",
"test": ""
},
"repository": {
"type": "git",
"url": "http://github.com/hmalphettes/kibana-proxy"
},
"keywords": [
"kibana",
"elasticsearch"
],
"author": "Hugues Malphettes",
"license": "MIT",
"copyright": "Sutoiku",
"dependencies": {
"express": "3.4.8",
"passport": "*",
"passport-google-oauth": "*",
"connect-restreamer": "*"
},
"devDependencies": {
},
"bugs": {
"url": "https://github.com/hmalphettes/kibana-proxy/issues"
}
}