This repository has been archived by the owner on May 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
64 lines (64 loc) · 1.51 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
{
"name": "strong-gateway",
"description": "StrongLoop API Gateway",
"version": "1.2.0",
"main": "server/server.js",
"keywords": [
"StrongLoop",
"LoopBack",
"oAuth 2.0",
"gateway",
"authentication",
"authorization",
"rate limiting",
"reverse proxy",
"api"
],
"scripts": {
"pretest": "jshint .",
"start": "npm i;node .",
"test": "mocha",
"preinstall": "node .sl-blip.js || exit 0"
},
"dependencies": {
"async": "^1.4.0",
"compression": "^1.5.2",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.3.5",
"cors": "^2.7.1",
"debug": "^2.2.0",
"errorhandler": "^1.4.2",
"express-session": "^1.11.3",
"http-proxy": "^1.11.1",
"jws": "^3.1.0",
"limiter": "^1.0.5",
"lodash": "^3.10.1",
"loopback": "^2.20.0",
"loopback-boot": "^2.9.0",
"loopback-component-oauth2": "^2.3.4",
"loopback-policy": "^1.0.0-beta1",
"metrics": "^0.1.9",
"passport": "^0.2.2",
"request": "^2.60.0",
"serve-favicon": "^2.3.0",
"strong-express-metrics": "^2.0.1",
"strongloop-license": "^1.4.0"
},
"optionalDependencies": {
"loopback-explorer": "^1.8.0"
},
"repository": {
"type": "git",
"url": "git://github.com/strongloop/strong-gateway.git"
},
"bugs": {
"url": "http://github.com/strongloop/strong-gateway/issues"
},
"license": "SEE LICENSE IN LICENSE.md",
"devDependencies": {
"chai": "^3.2.0",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"supertest": "^1.0.1"
}
}