This repository was archived by the owner on May 14, 2024. It is now read-only.
forked from anvilresearch/connect
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 2.72 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 2.72 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
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
{
"name": "camfou-connect",
"description": "A modern authorization server built to authenticate your users and protect your APIs (forked from anvil-connect)",
"version": "0.0.0-development",
"repository": {
"type": "git",
"url": "https://github.com/camfou/connect.git"
},
"keywords": [
"Auth",
"Authentication",
"Authorization",
"Access Control",
"SSO",
"Single Sign-On",
"Identity",
"Signin",
"Sign-in",
"OAuth",
"OAuth 1.0",
"OAuth 2.0",
"OpenID",
"OpenID Connect",
"OIDC",
"API",
"API Key",
"JWT",
"JWS",
"Token",
"Social",
"User",
"Federated",
"Google",
"Facebook",
"Twitter",
"GitHub",
"Password",
"Active Directory",
"AD",
"LDAP"
],
"scripts": {
"start": "node server.js",
"test": "NODE_ENV=test mocha test/**/*.{js,coffee}",
"lint": "eslint -c .eslintrc .",
"test-watch": "NODE_ENV=test mocha test/unit --watch",
"cover": "nyc --reporter=lcov npm run test",
"semantic-release": "semantic-release"
},
"main": "server.js",
"license": "MIT",
"engines": {
"node": ">=12"
},
"devDependencies": {
"chai": "^4.3.4",
"coffeescript": "^2.6.0",
"coveralls": "^3.1.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"faker": "^5.5.3",
"mocha": "^9.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nock": "^13.1.3",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"redis-mock": "^0.56.3",
"semantic-release": "^19.0.2",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"supertest": "^6.1.3"
},
"dependencies": {
"@tsed/jwks": "6.70.2",
"async": "2.6.3",
"base64url": "3.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "1.19.0",
"camfou-connect-jwt": "^1.1.1",
"camfou-modinha": "^0.4.0",
"camfou-modinha-redis": "^1.4.0",
"connect-flash": "^0.1.1",
"connect-redis": "3.4.1",
"consolidate": "0.16.0",
"cookie-parser": "1.4.5",
"cors": "2.8.5",
"express": "4.17.1",
"@chaudhryjunaid/express-bunyan-logger": "1.3.5",
"express-session": "1.17.2",
"fs-extra": "10.0.0",
"glob": "7.2.0",
"hogan.js": "^3.0.2",
"html-to-text": "5.1.1",
"ioredis": "4.28.2",
"jsonwebtoken": "^8.5.1",
"ldapjs": "^1.0.2",
"lodash": "^4.17.21",
"mellt": "~1.0.0",
"nodemailer": "^6.7.2",
"passport-local": "~1.0.0",
"passport-openid": "^0.4.0",
"passport-strategy": "~1.0.0",
"pug": "^3.0.2",
"qs": "6.10.1",
"revalidator": "^0.3.1",
"semver": "7.3.5",
"superagent": "^3.5.2"
}
}