forked from elasticfence/kibana-auth-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.43 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
{
"name": "kibana-auth-plugin",
"version": "0.1.1",
"description": "Homemade authentication for kibana",
"main": "gulpfile.js",
"homepage": "https://github.com/hmalphettes/kibana-auth-plugin",
"maintainers": [
{
"name": "Hugues Malphettes",
"email": "[email protected]"
},
{
"name": "Lorenzo Mangani",
"email": "[email protected]"
}
],
"keywords": ["kibana" ],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/hmalphettes/kibana-auth-plugin.git"
},
"scripts": {
"start": "gulp --gulpfile __gulpfile.js dev",
"build": "gulp --gulpfile __gulpfile.js build",
"package": "gulp --gulpfile __gulpfile.js package",
"test": "gulp --gulpfile __gulpfile.js test",
"release": "rm -rf node_modules && npm install [email protected] && tar cfz ./kauth-latest.tar.gz --exclude .git --exclude .gitignore --exclude kauth-latest.tar.gz ./* && ls -alF kauth-latest*"
},
"devDependencies": {
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"bluebird": "^3.1.1",
"eslint-plugin-mocha": "^1.1.0",
"gulp": "^3.9.0",
"gulp-eslint": "^1.1.1",
"gulp-gzip": "^1.2.0",
"gulp-tar": "^1.8.0",
"gulp-util": "^3.0.7",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"rimraf": "^2.5.0",
"rsync": "^0.4.0"
},
"dependencies": {
"hapi-auth-cookie": "^3.1.0"
}
}