forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.21 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "kibana",
"description": "Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elasticsearch.",
"keywords": [
"kibana",
"elasticsearch",
"logstash",
"analytics",
"visualizations",
"dashboards",
"dashboarding"
],
"private": false,
"version": "4.1.9",
"main": "src/server/app.js",
"homepage": "https://www.elastic.co/products/kibana",
"bugs": {
"url": "http://github.com/elastic/kibana/issues"
},
"license": "Apache-2.0",
"author": "Rashid Khan <[email protected]>",
"contributors": [
"Spencer Alger <[email protected]>",
"Chris Cowan <[email protected]>",
"Joe Fleming <[email protected]>",
"Lukas Olson <[email protected]>",
"Juan Thomassie <[email protected]>",
"Shelby Sturgis <[email protected]>",
"Khalah Jones-Golden <[email protected]>"
],
"scripts": {
"test": "grunt test",
"start": "node ./src/server/bin/kibana.js",
"postinstall": "bower install && grunt licenses --check-validity",
"precommit": "grunt lintStagedFiles"
},
"repository": {
"type": "git",
"url": "https://github.com/elastic/kibana.git"
},
"dependencies": {
"ansicolors": "^0.3.2",
"bluebird": "^2.0.7",
"body-parser": "^1.10.1",
"bunyan": "^1.7.1",
"commander": "^2.6.0",
"compression": "^1.3.0",
"cookie-parser": "^1.3.3",
"debug": "^2.1.1",
"elasticsearch": "^3.1.1",
"express": "^4.10.6",
"glob": "^4.3.2",
"http-auth": "^2.2.5",
"jade": "^1.8.2",
"js-yaml": "^3.2.5",
"lodash": "^2.4.1",
"request": "^2.40.0",
"requirefrom": "^0.2.0",
"semver": "^4.2.0",
"serve-favicon": "^2.2.0",
"through": "^2.3.6"
},
"devDependencies": {
"bower": "^1.4.1",
"bower-license": "^0.2.6",
"event-stream": "^3.1.5",
"expect.js": "^0.3.1",
"grunt": "^0.4.5",
"grunt-cli": "0.1.13",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-compress": "^0.9.1",
"grunt-contrib-copy": "^0.5.0",
"grunt-contrib-jade": "^0.10.0",
"grunt-contrib-jshint": "^0.11",
"grunt-contrib-less": "^0.10.0",
"grunt-contrib-requirejs": "^0.4.4",
"grunt-contrib-watch": "^0.5.3",
"grunt-esvm": "^1.0.1",
"grunt-jscs": "^1.8.0",
"grunt-mocha": "^0.4.10",
"grunt-replace": "^0.7.9",
"grunt-run": "^0.2.3",
"grunt-s3": "^0.2.0-alpha.3",
"grunt-simple-mocha": "^0.4.0",
"html-entities": "^1.1.1",
"http-proxy": "^1.8.1",
"husky": "^0.6.0",
"istanbul": "^0.2.4",
"license-checker": "^3.1.0",
"load-grunt-config": "^0.7.0",
"marked": "0.3.3",
"marked-text-renderer": "^0.1.0",
"mkdirp": "^0.5.0",
"mocha": "^2.2.5",
"npm": "^2.15.8",
"opn": "^1.0.0",
"path-browserify": "0.0.0",
"progress": "^1.1.8",
"requirejs": "^2.1.14",
"rjs-build-analysis": "0.0.3",
"simple-git": "^0.11.0",
"sinon": "^1.12.2",
"sinon-as-promised": "^2.0.3",
"supertest": "^1.1.0",
"tar": "^1.0.1"
},
"engines": {
"node": "4.4.7",
"npm": "2.15.8"
}
}