forked from Fidor-FZCO/express_gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
147 lines (147 loc) · 3.89 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "express-gateway",
"version": "1.16.4",
"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]>",
"Vincenzo Chianese <[email protected]>"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"engines": {
"node": ">= 8.3.0"
},
"scripts": {
"start": "node lib/index.js",
"start:dev": "cross-env LOG_LEVEL=debug node lib/index.js",
"lint": "eslint --fix .",
"pretest": "eslint .",
"test": "npm run mocha:istanbul",
"test:all": "cross-env EG_HTTP_PORT=0 EG_CONFIG_DIR=lib/config EG_DISABLE_CONFIG_WATCH=true mocha test",
"test:unit": "cross-env EG_HTTP_PORT=0 EG_CONFIG_DIR=lib/config EG_DISABLE_CONFIG_WATCH=true mocha \"./test/{,!(e2e)/**/}*.test.js\"",
"test:e2e": "mocha test/e2e",
"mocha:istanbul": "nyc --reporter=lcov npm run test:all && nyc report --report=lcov > coverage.lcov && codecov"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"bin": {
"eg": "./bin/index.js"
},
"nyc": {
"exclude": [
"logo",
"node_modules",
"coverage",
"migrations",
"test"
]
},
"types": "./index.d.ts",
"dependencies": {
"ajv": "^6.10.0",
"ajv-keywords": "^3.4.0",
"bcryptjs": "^2.4.3",
"chalk": "^2.4.2",
"chokidar": "^3.0.0",
"clone": "^2.1.2",
"color-convert": "^1.9.3",
"connect-ensure-login": "0.1.1",
"cors": "^2.8.5",
"ejs": "^2.6.1",
"express": "^4.17.1",
"express-rate-limit": "^2.14.2",
"express-session": "^1.16.1",
"find-up": "^3.0.0",
"form-urlencoded": "^3.0.0",
"http-proxy": "^1.17.0",
"ioredis": "^4.9.5",
"ioredis-mock": "^4.12.0",
"js-yaml": "^3.13.1",
"json-schema-merge-allof": "^0.6.0",
"json-schema-ref-parser": "6.1.0",
"jsonwebtoken": "^8.5.1",
"lodash.flatmap": "^4.5.0",
"minimatch": "^3.0.4",
"oauth2orize": "^1.11.0",
"parent-require": "^1.0.0",
"passport": "^0.4.0",
"passport-http": "0.3.0",
"passport-http-bearer": "1.0.1",
"passport-jwt": "^4.0.0",
"passport-local": "1.0.0",
"passport-oauth2-client-password": "0.1.2",
"proxy-agent": "^3.1.0",
"rate-limit-redis": "^1.6.0",
"semver": "^6.1.1",
"superagent": "^5.0.5",
"superagent-logger": "^1.1.0",
"superagent-prefix": "0.0.2",
"uuid": "^3.3.2",
"uuid62": "1.0.1",
"vhost": "3.0.2",
"winston": "3.2.1",
"yargs": "^13.2.4",
"yawn-yaml": "1.4.0",
"yeoman-environment": "^2.3.4",
"yeoman-generator": "^3.2.0"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/json-schema": "7.0.3",
"codecov": "^3.5.0",
"cpr": "^3.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"find-free-port": "2.0.0",
"husky": "^2.3.0",
"istanbul": "0.4.5",
"lint-staged": "^8.1.7",
"mocha": "^6.1.4",
"mocha-lcov-reporter": "1.3.0",
"nyc": "^14.1.1",
"puppeteer": "^1.17.0",
"rimraf": "^2.6.3",
"should": "^13.2.3",
"sinon": "^7.3.2",
"supertest": "^4.0.2",
"supertest-session": "^4.0.0",
"tmp": "^0.1.0",
"yeoman-test": "^1.9.1"
},
"yargs": {
"boolean-negation": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}