forked from PGBI/kong-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "kong-dashboard",
"description": "Web UI for managing Kong gateway",
"keywords": "UI, kong, gateway",
"version": "3.3.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PGBI/kong-dashboard.git"
},
"engines": {
"node": ">= 6.0.0"
},
"dependencies": {
"basic-auth": "^2.0.0",
"chalk": "^2.1.0",
"eslint": "^4.19.1",
"jshint": "^2.9.5",
"koa": "^2.3.0",
"koa-bodyparser": "^3.2.0",
"koa-mount": "^2.0.0",
"koa-static": "^3.0.0",
"minimist": "^1.2.0",
"request": "^2.82.0",
"semver": "^5.4.1",
"yargs": "^8.0.2"
},
"bin": {
"kong-dashboard": "./bin/kong-dashboard.js"
},
"scripts": {
"prepublishOnly": "node_modules/.bin/gulp build",
"build": "node_modules/.bin/gulp build",
"start": "node ./bin/kong-dashboard start",
"test": "./tests/run.js"
},
"devDependencies": {
"angular": "^1.6.6",
"angular-animate": "^1.6.6",
"angular-route": "^1.6.6",
"angular-sanitize": "^1.6.6",
"gulp": "^3.9.1",
"gulp-concat": "^2.6.1",
"gulp-plumber": "^1.1.0",
"gulp-sass": "^3.1.0",
"gulp-uglify": "^3.0.0",
"jasmine-data-provider": "^2.2.0",
"jquery": "^3.2.1",
"materialize-css": "^0.100.2",
"ng-infinite-scroll": "^1.3.0",
"protractor": "^5.1.2"
}
}