-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
38 lines (38 loc) · 993 Bytes
/
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
{
"name": "peertube-plugin-auth-oauth2",
"description": "A PeerTube server plugin that adds support for external authentication via an OAuth 2.0 provider. The callback URL path is /plugins/auth-oauth2/router/callback",
"version": "1.0.5",
"author": "Codify Global LLC",
"license": "AGPL-3.0",
"bugs": "https://github.com/codifyglobal/peertube-plugin-auth-oauth2/issues",
"directories": {
"test": "__tests__"
},
"engine": {
"peertube": ">=2.2.0"
},
"keywords": [
"peertube",
"plugin",
"auth",
"oauth2"
],
"scripts": {
"test": "jest",
"lint": "eslint main.js helpers/*.js __tests__/*.js"
},
"homepage": "https://github.com/codifyglobal/peertube-plugin-auth-oauth2",
"staticDirs": {},
"css": [],
"clientScripts": [],
"translations": {},
"library": "./main.js",
"dependencies": {
"client-oauth2": "^4.3.3",
"openid-client": "^3.15.10"
},
"devDependencies": {
"eslint": "^7.8.1",
"jest": "^26.4.2"
}
}