forked from ExpressGateway/express-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.41 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "express-gateway",
"version": "1.1.1",
"description": "A microservices API gateway built on top of ExpressJS",
"homepage": "https://www.express-gateway.io",
"repository": "expressgateway/express-gateway",
"keywords": [
"microservices",
"apis",
"api gateway",
"rest",
"express",
"middleware",
"endpoints",
"policies",
"pipelines",
"nodejs gateway",
"oauth2"
],
"contributors": [
"Roman Lisagor <[email protected]>",
"Serhii Kuts <[email protected]>",
"Irfan Baqui <[email protected]>",
"Kevin Swiber <[email protected]>",
"Al Tsang <[email protected]>"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"start": "node lib/index.js",
"start-dev": "LOG_LEVEL=debug node lib/index.js",
"lint": "eslint --fix .",
"clean": "rimraf dist/",
"pretest": "eslint .",
"test": "npm run mocha-istanbul",
"test-all": "cross-env EG_CONFIG_DIR=test/config EG_DISABLE_CONFIG_WATCH=true mocha --recursive test --timeout 60000",
"test:unit": "cross-env EG_CONFIG_DIR=test/config EG_DISABLE_CONFIG_WATCH=true mocha --recursive \"./test/{,!(e2e)/**/}*.test.js\" --timeout 5000",
"test:e2e": "mocha --recursive test/e2e --timeout 60000",
"mocha-istanbul": "nyc --reporter=lcov npm run test-all && nyc report --report=lcov > coverage.lcov && codecov"
},
"bin": {
"eg": "./bin/index.js"
},
"nyc": {
"exclude": [
"logo",
"node_modules",
"coverage"
]
},
"dependencies": {
"bcrypt": "1.0.2",
"bluebird": "3.5.0",
"body-parser": "1.17.2",
"chalk": "1.1.3",
"chokidar": "1.7.0",
"color-convert": "1.9.0",
"connect-ensure-login": "0.1.1",
"cors": "2.8.3",
"ejs": "2.5.6",
"express": "4.15.2",
"express-rate-limit": "2.8.0",
"express-session": "1.15.3",
"fakeredis": "2.0.0",
"find-up": "2.1.0",
"glob": "7.1.2",
"has-flag": "2.0.0",
"http-proxy": "1.16.2",
"js-yaml": "3.8.3",
"lodash": "4.17.4",
"minimatch": "3.0.3",
"oauth2orize": "1.8.0",
"parent-require": "^1.0.0",
"passport": "0.3.2",
"passport-http": "0.3.0",
"passport-http-bearer": "1.0.1",
"passport-local": "1.0.0",
"passport-oauth2-client-password": "0.1.2",
"redis": "2.7.1",
"redis-commands": "^1.3.1",
"superagent": "3.5.2",
"swagger-ui-express": "^2.0.2",
"util.promisify": "^1.0.0",
"uuid": "^3.1.0",
"uuid-base62": "0.1.0",
"vhost": "3.0.2",
"winston": "2.3.1",
"yargs": "8.0.2",
"yeoman-environment": "2.0.0",
"yeoman-generator": "1.1.1"
},
"devDependencies": {
"chai": "3.5.0",
"codecov": "^2.2.0",
"cpr": "2.2.0",
"cross-env": "5.0.1",
"eslint": "3.19.0",
"eslint-config-standard": "10.2.1",
"eslint-plugin-import": "2.3.0",
"eslint-plugin-markdown": "1.0.0-beta.6",
"eslint-plugin-node": "4.2.2",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"istanbul": "0.4.5",
"mocha": "3.3.0",
"mocha-lcov-reporter": "1.3.0",
"mock-require": "2.0.2",
"nyc": "11.0.3",
"phantomjs-prebuilt": "^2.1.14",
"rimraf": "2.6.1",
"selenium-webdriver": "^3.5.0",
"should": "11.2.1",
"sinon": "2.1.0",
"supertest": "3.0.0",
"supertest-session": "3.0.0",
"tmp": "0.0.31",
"yeoman-test": "1.6.0"
},
"yargs": {
"boolean-negation": false
}
}