-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.18 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.18 KB
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
{
"name": "gateway",
"version": "0.3.0",
"description": "A simple application to act allow as a gateway and handle authentication.",
"main": "index.js",
"dependencies": {
"connect-redis": "4.0.3",
"cookie-parser": "1.4.4",
"express": "4.17.1",
"express-session": "1.16.2",
"http-proxy": "1.18.0",
"jsonwebtoken": "8.5.1",
"passport": "0.4.0",
"passport-jwt": "4.0.0",
"passport-oauth2": "1.5.0",
"redis": "2.8.0"
},
"devDependencies": {
"@types/connect-redis": "0.0.11",
"@types/express": "4.17.1",
"eslint": "6.5.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"jest": "24.9.0",
"sinon": "7.5.0"
},
"scripts": {
"start": "node index.js",
"test": "node_modules/jest/bin/jest.js --silent",
"eslint": "node_modules/eslint/bin/eslint.js '**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eventkit/gateway.git"
},
"keywords": [
"gateway",
"authentication"
],
"author": "jsvrcek",
"license": "MIT",
"bugs": {
"url": "https://github.com/eventkit/gateway/issues"
},
"homepage": "https://github.com/eventkit/gateway#readme"
}